:root {
  --ry-navy-deep: #071827;
  --ry-navy: #0B2435;
  --ry-off-white: #F7F3EA;
  --ry-sand: #D8C3A5;
  --ry-gold: #C8A96A;
  --ry-text-dark: #101820;
  --ry-header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--ry-header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #101820;
  background: #F7F3EA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: #071827;
  letter-spacing: 0.005em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

h4 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 1.2em;
}

::selection {
  background: #C8A96A;
  color: #071827;
}

:focus-visible {
  outline: 2px solid #C8A96A;
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.container--narrow {
  max-width: 860px;
}
.container--wide {
  max-width: 1480px;
}

.section {
  padding-block: clamp(64px, 9vw, 140px);
}
.section--tight {
  padding-block: clamp(48px, 6vw, 90px);
}
.section--navy {
  background: #071827;
  color: #F7F3EA;
}
.section--soft {
  background: #FFFFFF;
}
.section--sand {
  background: rgb(234.5023255814, 223.4651162791, 207.6976744186);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: #F7F3EA;
}

.eyebrow {
  display: inline-block;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C8A96A;
  margin-bottom: 1.1rem;
}

.section--navy .eyebrow {
  color: #D8BC82;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head p {
  color: #8FA3B0;
  font-size: 1.08rem;
}

.section--navy .section-head p {
  color: rgba(247, 243, 234, 0.72);
}

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgb(46.6, 69.9, 93.2);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  .hero__media img,
  .hero__media picture,
  .hero__media .ry-img-placeholder,
  .hero__media-motion {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero__inner > .container > .hero__intro > .eyebrow,
  .hero__inner > .container > .hero__intro > .hero__title,
  .hero__inner > .container > .hero__intro > .hero__subtitle,
  .hero__inner > .container > .hero__bottom > .hero__actions,
  .hero__inner > .container > .hero__bottom > .hero__specs,
  .hero__inner > .container > .eyebrow,
  .hero__inner > .container > .hero__title,
  .hero__inner > .container > .hero__subtitle,
  .hero__inner > .container > .hero__actions,
  .hero__inner > .container > .hero__specs,
  .hero__layout > .hero__intro > .eyebrow,
  .hero__layout > .hero__intro > .hero__title,
  .hero__layout > .hero__intro > .hero__subtitle,
  .hero__layout > .hero__bottom > .hero__actions,
  .hero__layout > .hero__bottom > .hero__specs,
  .hero__layout > .eyebrow,
  .hero__layout > .hero__title,
  .hero__layout > .hero__subtitle,
  .hero__layout > .hero__actions,
  .hero__layout > .hero__specs {
    opacity: 1;
    animation: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 2em;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1;
  text-align: center;
}
.btn--gold {
  background: #C8A96A;
  color: #071827;
}
.btn--gold:hover {
  background: #D8BC82;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(7, 24, 39, 0.14);
}
.btn--navy {
  background: #071827;
  color: #F7F3EA;
}
.btn--navy:hover {
  background: #0B2435;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(7, 24, 39, 0.14);
}
.btn--ghost {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
  border-color: currentColor;
}
.btn--outline-gold {
  background: transparent;
  color: #C8A96A;
  border-color: #C8A96A;
}
.btn--outline-gold .ry-icon {
  stroke: currentColor;
}
.btn--outline-gold:hover {
  background: #C8A96A;
  color: #071827;
}
.btn--block {
  width: 100%;
}
.btn--lg {
  padding: 1.1em 2.4em;
  font-size: 0.86rem;
}

.section--navy .btn--ghost {
  color: #F7F3EA;
  border-color: rgba(247, 243, 234, 0.5);
}

.section--navy .btn--ghost:hover {
  background: rgba(247, 243, 234, 0.18);
  color: #F7F3EA;
  border-color: rgba(247, 243, 234, 0.9);
}

.hero .btn--ghost:hover {
  background: rgba(247, 243, 234, 0.18);
  color: #F7F3EA;
  border-color: rgba(247, 243, 234, 0.9);
}

.ry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ry-img-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(11, 36, 53, 0.92), rgba(7, 24, 39, 0.96)), repeating-linear-gradient(45deg, rgba(200, 169, 106, 0.05) 0 2px, transparent 2px 22px);
  color: rgba(247, 243, 234, 0.6);
  overflow: hidden;
}
.ry-img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(200, 169, 106, 0.18), transparent 55%);
}
.ry-img-placeholder__label {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.04em;
  padding: 1rem 1.4rem;
  text-align: center;
  max-width: 80%;
}

.hero__media .ry-img-placeholder__label,
.cta__media .ry-img-placeholder__label,
.single-yacht__hero .hero__media .ry-img-placeholder__label {
  display: none;
}

.media {
  position: relative;
  overflow: hidden;
  background: #0B2435;
  border-radius: 8px;
}
.media--ratio-43 {
  aspect-ratio: 4/3;
}
.media--ratio-32 {
  aspect-ratio: 3/2;
}
.media--ratio-169 {
  aspect-ratio: 16/9;
}
.media--ratio-11 {
  aspect-ratio: 1/1;
}
.media img, .media .ry-img-placeholder {
  position: absolute;
  inset: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding-block: 22px;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: #F7F3EA;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.site-header__brand-name {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.site-header__brand-sub {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-top: 4px;
  color: #C8A96A;
}
.site-header__brand img {
  max-height: 54px;
  width: auto;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.site-header .nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}
.site-header .nav-menu a {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(247, 243, 234, 0.9);
  position: relative;
  padding-block: 6px;
}
.site-header .nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #C8A96A;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header .nav-menu a:hover, .site-header .nav-menu a:focus {
  color: #D8BC82;
}
.site-header .nav-menu a:hover::after {
  width: 100%;
}
.site-header .nav-menu .current-menu-item > a,
.site-header .nav-menu .current_page_item > a {
  color: #C8A96A;
}
.site-header .nav-menu .current-menu-item > a::after,
.site-header .nav-menu .current_page_item > a::after {
  width: 100%;
}
.site-header__cta {
  display: inline-flex;
}
.site-header__toggle {
  display: none;
}
.site-header.is-solid {
  background: rgba(7, 24, 39, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  padding-block: 14px;
}

body:not(.is-front-page) .site-header {
  background: rgba(7, 24, 39, 0.96);
  backdrop-filter: blur(12px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid rgba(247, 243, 234, 0.4);
  border-radius: 4px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: #F7F3EA;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: #071827;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: 110px clamp(24px, 8vw, 60px) 48px;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: clamp(24px, 8vw, 60px);
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(247, 243, 234, 0.35);
  border-radius: 4px;
  background: transparent;
  color: #F7F3EA;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu__close:hover {
  background: rgba(247, 243, 234, 0.08);
  border-color: rgba(200, 169, 106, 0.6);
  color: #D8BC82;
}
.mobile-menu__nav a {
  display: block;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: #F7F3EA;
  padding-block: 14px;
  border-bottom: 1px solid rgba(247, 243, 234, 0.08);
}
.mobile-menu__nav a:hover {
  color: #C8A96A;
  padding-left: 8px;
}
.mobile-menu__footer {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: rgba(247, 243, 234, 0.75);
  font-size: 0.95rem;
}
.mobile-menu__footer a {
  color: #D8BC82;
}
.mobile-menu__cta {
  margin-top: 10px;
}

body.menu-open {
  overflow: hidden;
}

@keyframes hero-bg-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hero-bg-drift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.14) translate3d(-4%, -3%, 0);
  }
}
@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #F7F3EA;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__media-motion {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  animation: hero-bg-drift 18s ease-in-out infinite alternate;
  will-change: transform;
  backface-visibility: hidden;
}
.hero__media-motion img, .hero__media-motion picture, .hero__media-motion .ry-img-placeholder, .hero__media img, .hero__media picture, .hero__media .ry-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__media-motion picture, .hero__media picture {
  width: 100%;
  height: 100%;
}
.hero__media-motion img, .hero__media-motion .ry-img-placeholder {
  opacity: 0;
  animation: hero-bg-enter 1s ease-out forwards;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 24, 39, 0.55) 0%, rgba(7, 24, 39, 0.25) 35%, rgba(7, 24, 39, 0.85) 100%), linear-gradient(90deg, rgba(7, 24, 39, 0.6), transparent 60%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(120px, 16vh, 200px) clamp(56px, 8vh, 96px);
}
.hero__inner > .container > .hero__intro > .eyebrow,
.hero__inner > .container > .hero__intro > .hero__title,
.hero__inner > .container > .hero__intro > .hero__subtitle,
.hero__inner > .container > .hero__bottom > .hero__actions,
.hero__inner > .container > .hero__bottom > .hero__specs,
.hero__inner > .container > .eyebrow,
.hero__inner > .container > .hero__title,
.hero__inner > .container > .hero__subtitle,
.hero__inner > .container > .hero__actions,
.hero__inner > .container > .hero__specs,
.hero__inner .hero__layout > .hero__intro > .eyebrow,
.hero__inner .hero__layout > .hero__intro > .hero__title,
.hero__inner .hero__layout > .hero__intro > .hero__subtitle,
.hero__inner .hero__layout > .hero__bottom > .hero__actions,
.hero__inner .hero__layout > .hero__bottom > .hero__specs,
.hero__inner .hero__layout > .eyebrow,
.hero__inner .hero__layout > .hero__title,
.hero__inner .hero__layout > .hero__subtitle,
.hero__inner .hero__layout > .hero__actions,
.hero__inner .hero__layout > .hero__specs {
  opacity: 0;
  animation: hero-copy-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__inner > .container > .hero__intro > .eyebrow,
.hero__inner > .container > .eyebrow,
.hero__inner .hero__layout > .hero__intro > .eyebrow,
.hero__inner .hero__layout > .eyebrow {
  animation-delay: 0.35s;
}
.hero__inner > .container > .hero__intro > .hero__title,
.hero__inner > .container > .hero__title,
.hero__inner .hero__layout > .hero__intro > .hero__title,
.hero__inner .hero__layout > .hero__title {
  animation-delay: 0.5s;
}
.hero__inner > .container > .hero__intro > .hero__subtitle,
.hero__inner > .container > .hero__subtitle,
.hero__inner .hero__layout > .hero__intro > .hero__subtitle,
.hero__inner .hero__layout > .hero__subtitle {
  animation-delay: 0.65s;
}
.hero__inner > .container > .hero__bottom > .hero__actions,
.hero__inner > .container > .hero__actions,
.hero__inner .hero__layout > .hero__bottom > .hero__actions,
.hero__inner .hero__layout > .hero__actions {
  animation-delay: 0.8s;
}
.hero__inner > .container > .hero__bottom > .hero__specs,
.hero__inner > .container > .hero__specs,
.hero__inner .hero__layout > .hero__bottom > .hero__specs,
.hero__inner .hero__layout > .hero__specs {
  animation-delay: 0.95s;
}
.hero__layout {
  display: block;
}
.hero__intro, .hero__bottom {
  display: block;
}
.hero__title {
  color: #F7F3EA;
  max-width: 16ch;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  font-weight: 600;
  margin-bottom: 0.4em;
}
.hero__subtitle {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(247, 243, 234, 0.86);
  margin-bottom: 2em;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(40px, 6vh, 72px);
}
.hero__bottom .hero__actions {
  margin-bottom: clamp(40px, 6vh, 72px);
}
.hero__bottom .hero__specs {
  padding-top: 28px;
  border-top: 1px solid rgba(247, 243, 234, 0.2);
}
.hero__specs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
}
.hero__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 90px;
}
.hero__spec span:first-child {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D8BC82;
}
.hero__spec span:last-child {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: #F7F3EA;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(247, 243, 234, 0.5);
  border-radius: 14px;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: #D8BC82;
  border-radius: 2px;
  animation: scrollCue 1.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 0;
  }
}
.featured {
  background: #071827;
  color: #F7F3EA;
  position: relative;
}
.featured__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.featured__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.featured__gallery .media:first-child {
  grid-column: 1/-1;
  aspect-ratio: 16/10;
}
.featured__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #C8A96A;
  color: #071827;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.featured__title {
  color: #F7F3EA;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
.featured__subtitle {
  color: #D8BC82;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}
.featured__desc {
  color: rgba(247, 243, 234, 0.82);
  max-width: 52ch;
}
.featured__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
  margin: 28px 0;
  padding: 26px 0;
  border-block: 1px solid rgba(247, 243, 234, 0.14);
}
.featured__spec span:first-child {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D8BC82;
  margin-bottom: 4px;
}
.featured__spec span:last-child {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}
.featured__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}
.featured__price span:first-child {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.7);
}
.featured__price span:last-child {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  color: #D8BC82;
}
.featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag {
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  padding: 6px 13px;
  border: 1px solid rgba(7, 24, 39, 0.18);
  border-radius: 100px;
  color: #0B2435;
  background: rgba(7, 24, 39, 0.03);
}

.section--navy .tag, .featured .tag {
  color: rgba(247, 243, 234, 0.9);
  border-color: rgba(247, 243, 234, 0.25);
  background: rgba(247, 243, 234, 0.05);
}

.spec-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
}

.spec-list h4 {
  color: inherit;
  margin-bottom: 0.8em;
}
.spec-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: rgba(247, 243, 234, 0.82);
}
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border: 1px solid #C8A96A;
  transform: rotate(45deg);
}

.section--soft .spec-list li, .single-yacht .spec-list li {
  color: rgb(41.5, 62.25, 83);
}

.section--soft .spec-list li::before {
  border-color: #C8A96A;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: clamp(22px, 3vw, 36px);
}

.yacht-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(7, 24, 39, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  height: 100%;
}
.yacht-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(7, 24, 39, 0.14);
}
.yacht-card__media {
  position: relative;
  aspect-ratio: 3/2;
}
.yacht-card__flag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #C8A96A;
  color: #071827;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}
.yacht-card__price-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(7, 24, 39, 0.85);
  backdrop-filter: blur(4px);
  color: #F7F3EA;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
}
.yacht-card__price-badge span {
  color: #D8BC82;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}
.yacht-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 24px 28px;
}
.yacht-card__type {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A96A;
  margin-bottom: 8px;
}
.yacht-card__name {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.yacht-card__loc {
  color: #8FA3B0;
  font-size: 0.92rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.yacht-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 0;
  margin-bottom: 16px;
  border-block: 1px solid rgba(7, 24, 39, 0.08);
  font-size: 0.86rem;
}
.yacht-card__specs span {
  display: flex;
  flex-direction: column;
}
.yacht-card__specs span b {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #071827;
}
.yacht-card__specs span small {
  color: #8FA3B0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.yacht-card__tags {
  margin-bottom: 22px;
}
.yacht-card__actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.yacht-card__actions .btn {
  flex: 1;
  padding-inline: 1rem;
}
.yacht-card--flagship {
  grid-column: 1/-1;
  flex-direction: row;
}
.yacht-card--flagship .yacht-card__media {
  flex: 0 0 52%;
  aspect-ratio: auto;
  min-height: 380px;
}
.yacht-card--flagship .yacht-card__body {
  padding: clamp(28px, 3vw, 48px);
  justify-content: center;
}
.yacht-card--flagship .yacht-card__name {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.exp-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
  color: #F7F3EA;
  display: flex;
  align-items: flex-end;
}
.exp-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.exp-card__media img, .exp-card__media .ry-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 24, 39, 0.92));
}
.exp-card__body {
  position: relative;
  z-index: 2;
  padding: 26px 24px;
}
.exp-card__title {
  color: #F7F3EA;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.exp-card__copy {
  color: rgba(247, 243, 234, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.exp-card:hover .exp-card__media img, .exp-card:hover .exp-card__media .ry-img-placeholder {
  transform: scale(1.06);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  counter-reset: step;
}

.step__num {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 3rem;
  color: #C8A96A;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.step__title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.step__copy {
  color: #8FA3B0;
  font-size: 0.95rem;
  margin: 0;
}

.section--navy .step__copy {
  color: rgba(247, 243, 234, 0.72);
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.catering-card {
  background: #FFFFFF;
  border: 1px solid rgba(7, 24, 39, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(7, 24, 39, 0.08);
  display: flex;
  flex-direction: column;
}
.catering-card__media {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: #0B2435;
}
.catering-card__media .ry-img-placeholder {
  min-height: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.catering-card:hover .catering-card__media .ry-img-placeholder {
  transform: scale(1.04);
}
.catering-card__body {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.catering-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.catering-card__title {
  font-size: 1.5rem;
  margin: 0;
}
.catering-card__price {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  color: #C8A96A;
  white-space: nowrap;
}
.catering-card__note {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: #8FA3B0;
  margin-bottom: 18px;
}
.catering-card__section {
  margin-bottom: 16px;
}
.catering-card__section h5 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A96A;
  margin: 0 0 8px;
}
.catering-card__section li {
  color: rgb(41.5, 62.25, 83);
  font-size: 0.94rem;
  padding: 3px 0;
}

.notes-box {
  background: rgba(7, 24, 39, 0.04);
  border-left: 3px solid #C8A96A;
  border-radius: 4px;
  padding: 28px 30px;
}
.notes-box li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: rgb(33, 49.5, 66);
}
.notes-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  background: #C8A96A;
  transform: rotate(45deg);
}

.section--navy .notes-box {
  background: rgba(247, 243, 234, 0.05);
}

.section--navy .notes-box li {
  color: rgba(247, 243, 234, 0.85);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(7, 24, 39, 0.08);
}
.price-table caption {
  text-align: left;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  color: #071827;
  padding: 4px 0 16px;
  caption-side: top;
}
.price-table tr {
  border-bottom: 1px solid rgba(7, 24, 39, 0.07);
}
.price-table tr:last-child {
  border-bottom: none;
}
.price-table td {
  padding: 15px 22px;
  font-size: 0.98rem;
}
.price-table td:first-child {
  color: #0B2435;
}
.price-table td:last-child {
  text-align: right;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  color: #C8A96A;
  white-space: nowrap;
  font-weight: 600;
}
.price-table tr:nth-child(even) {
  background: rgba(7, 24, 39, 0.02);
}

.price-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.inquiry {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(7, 24, 39, 0.14);
  padding: clamp(28px, 4vw, 52px);
}
.inquiry--on-navy {
  background: #FFFFFF;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field--full {
  grid-column: 1/-1;
}
.form-field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0B2435;
}
.form-field .req {
  color: #C8A96A;
}
.form-field input, .form-field select, .form-field textarea {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  padding: 13px 15px;
  border: 1px solid rgba(7, 24, 39, 0.18);
  border-radius: 4px;
  background: #F7F3EA;
  color: #101820;
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: #C8A96A;
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.18);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8A96A' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.form-alert--success {
  background: rgba(46, 125, 82, 0.12);
  border: 1px solid rgba(46, 125, 82, 0.4);
  color: #1c5a39;
}
.form-alert--error {
  background: rgba(179, 38, 30, 0.1);
  border: 1px solid rgba(179, 38, 30, 0.4);
  color: #8a1f19;
}

.inquiry-form-shell {
  position: relative;
}

.inquiry-form-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 36px);
  margin: 0;
  border: none;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(7, 24, 39, 0.88) 0%, rgba(11, 36, 53, 0.82) 55%, rgba(7, 24, 39, 0.9) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: inquiry-overlay-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.inquiry-form-overlay[hidden] {
  display: none !important;
}
.inquiry-form-overlay__panel {
  width: min(100%, 420px);
  text-align: center;
  padding: clamp(28px, 5vw, 40px) clamp(24px, 4vw, 36px);
  border-radius: 8px;
  background: linear-gradient(160deg, #F7F3EA 0%, rgb(234.5023255814, 223.4651162791, 207.6976744186) 100%);
  border: 1px solid rgba(200, 169, 106, 0.45);
  box-shadow: 0 24px 60px rgba(7, 24, 39, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: inquiry-panel-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}
.inquiry-form-overlay__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #C8A96A;
  background: rgba(200, 169, 106, 0.14);
  box-shadow: 0 0 0 8px rgba(200, 169, 106, 0.08);
}
.inquiry-form-overlay__eyebrow {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #071827;
  letter-spacing: 0.01em;
}
.inquiry-form-overlay__message {
  margin: 0 0 26px;
  font-size: 1rem;
  line-height: 1.65;
  color: #8FA3B0;
}
.inquiry-form-overlay__dismiss {
  min-width: 220px;
}

.inquiry-form-shell.is-success .inquiry-form {
  pointer-events: none;
  user-select: none;
}

@keyframes inquiry-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes inquiry-panel-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.form-note {
  font-size: 0.82rem;
  color: #8FA3B0;
  margin-top: 16px;
}

.faq {
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid rgba(7, 24, 39, 0.12);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: #071827;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item__q:hover {
  color: #C8A96A;
}
.faq-item__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: #C8A96A;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item__icon::before {
  left: 0;
  top: 11px;
  width: 24px;
  height: 2px;
}
.faq-item__icon::after {
  left: 11px;
  top: 0;
  width: 2px;
  height: 24px;
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item__a p {
  padding-bottom: 24px;
  color: rgb(46.6, 69.9, 93.2);
  margin: 0;
}
.faq-item.is-open .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-item.is-open .faq-item__q {
  color: #C8A96A;
}

.section--navy .faq-item {
  border-color: rgba(247, 243, 234, 0.15);
}

.section--navy .faq-item__q {
  color: #F7F3EA;
}

.section--navy .faq-item__a p {
  color: rgba(247, 243, 234, 0.78);
}

.cta {
  position: relative;
  background: #071827;
  color: #F7F3EA;
  text-align: center;
  overflow: hidden;
}
.cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.32;
}
.cta__media img, .cta__media .ry-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 24, 39, 0.7), rgba(7, 24, 39, 0.92));
}
.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-inline: auto;
}
.cta__title {
  color: #F7F3EA;
}
.cta__sub {
  color: rgba(247, 243, 234, 0.82);
  font-size: 1.15rem;
  margin-bottom: 2em;
}
.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-grid .media {
  aspect-ratio: 4/3;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-grid__link {
  display: block;
  width: 100%;
  height: 100%;
}

.lightbox-open {
  overflow: hidden;
}

.ry-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.ry-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 39, 0.88);
}
.ry-lightbox__img {
  position: relative;
  z-index: 2;
  max-width: min(92vw, 1500px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(7, 24, 39, 0.28);
}
.ry-lightbox__close, .ry-lightbox__nav {
  position: absolute;
  z-index: 3;
  border: none;
  background: rgba(7, 24, 39, 0.75);
  color: #F7F3EA;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ry-lightbox__close:hover, .ry-lightbox__nav:hover {
  background: rgba(200, 169, 106, 0.95);
  transform: scale(1.04);
}
.ry-lightbox__close {
  top: 20px;
  right: 20px;
  font-size: 34px;
}
.ry-lightbox__nav--prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.ry-lightbox__nav--next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.ry-lightbox[hidden] {
  display: none !important;
}

.single-yacht__hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  color: #F7F3EA;
  overflow: hidden;
}
.single-yacht__hero .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.single-yacht__hero .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 24, 39, 0.4), rgba(7, 24, 39, 0.9));
}
.single-yacht__hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 120px 56px;
}
.single-yacht__hero-title {
  color: #F7F3EA;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 0.2em;
}
.single-yacht__hero-sub {
  color: #D8BC82;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

.facts-bar {
  background: #0B2435;
  color: #F7F3EA;
  position: sticky;
  top: var(--ry-header-h);
  z-index: 40;
}
.facts-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 36px;
  padding-block: 18px;
  align-items: center;
}
.facts-bar__item {
  display: flex;
  flex-direction: column;
}
.facts-bar__item small {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D8BC82;
}
.facts-bar__item b {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.05rem;
}
.facts-bar__cta {
  margin-left: auto;
}

.yacht-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.yacht-sidebar {
  position: sticky;
  top: calc(var(--ry-header-h) + 80px);
}

.yacht-block {
  margin-bottom: clamp(40px, 5vw, 72px);
}

.yacht-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.8em;
}

.page-hero {
  background: #071827;
  color: #F7F3EA;
  padding-block: clamp(130px, 18vh, 200px) clamp(48px, 8vh, 90px);
  position: relative;
  text-align: center;
}
.page-hero__title {
  color: #F7F3EA;
}
.page-hero__lead {
  color: rgba(247, 243, 234, 0.8);
  max-width: 60ch;
  margin: 0.6em auto 0;
  font-size: 1.15rem;
}

.prose h2 {
  margin-top: 1.6em;
}
.prose h3 {
  margin-top: 1.4em;
}
.prose a {
  color: rgb(171.35, 135.7, 63.25);
  text-decoration: underline;
}
.prose ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}
.prose li {
  margin-bottom: 0.4em;
}

.site-footer {
  background: #071827;
  color: rgba(247, 243, 234, 0.75);
  padding-top: clamp(56px, 7vw, 96px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.site-footer__brand-name {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  color: #F7F3EA;
  margin-bottom: 16px;
}
.site-footer__blurb {
  font-size: 0.96rem;
  max-width: 38ch;
  line-height: 1.7;
}
.site-footer__col h4 {
  color: #F7F3EA;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer__col a, .site-footer__col li {
  font-size: 0.95rem;
  padding-block: 5px;
  display: block;
}
.site-footer__col a:hover {
  color: #D8BC82;
}
.site-footer__contact a {
  color: #D8BC82;
}
.site-footer__contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.site-footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 6px 0 18px;
}
.site-footer__bottom {
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  padding-block: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(247, 243, 234, 0.55);
}
.site-footer__bottom a:hover {
  color: #D8BC82;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #071827;
  border: 1px solid rgba(200, 169, 106, 0.55);
  color: #D8BC82;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  background: rgba(200, 169, 106, 0.1);
  border-color: #D8BC82;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 88;
  display: none;
  background: rgba(7, 24, 39, 0.97);
  backdrop-filter: blur(8px);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(200, 169, 106, 0.3);
  gap: 12px;
}
.sticky-cta .btn {
  flex: 1;
}
.sticky-cta__call {
  flex: 0 0 auto;
  width: 52px;
  padding: 0;
}

.page-header {
  margin-bottom: 40px;
}

.page-header__title {
  margin-bottom: 0.3em;
}

.post-list__item {
  padding-block: 28px;
  border-bottom: 1px solid rgba(7, 24, 39, 0.1);
}

.pagination {
  margin-top: 48px;
  display: flex;
  gap: 8px;
}

.pagination .page-numbers {
  padding: 8px 14px;
  border: 1px solid rgba(7, 24, 39, 0.15);
  border-radius: 4px;
}

.pagination .current {
  background: #071827;
  color: #F7F3EA;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: #C8A96A;
  color: #071827;
  padding: 12px 18px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}

.contact-details__list {
  display: grid;
  gap: 18px;
}
.contact-details__list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(7, 24, 39, 0.08);
}
.contact-details__list .contact-details__label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A96A;
}
.contact-details__list a {
  color: #071827;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}
.contact-details__list a:hover {
  color: #C8A96A;
}
.contact-details__list span:not(.contact-details__label) {
  font-size: 1.02rem;
  color: rgb(36.4, 54.6, 72.8);
}

.contact-details__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.contact-details__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(7, 24, 39, 0.16);
  color: #C8A96A;
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-details__link:hover .contact-details__link-icon {
  background: rgba(200, 169, 106, 0.08);
  border-color: rgba(200, 169, 106, 0.65);
  color: rgb(189, 151.8, 76.2);
}

.contact-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ry-icon {
  display: block;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #D8BC82;
  font-size: 0.95rem;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.social-link:hover {
  color: #F7F3EA;
}
.social-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(200, 169, 106, 0.45);
  color: #D8BC82;
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.social-link:hover .social-link__icon {
  transform: scale(1.04);
  background: rgba(200, 169, 106, 0.1);
  border-color: #D8BC82;
  color: #F7F3EA;
}

.section--navy .contact-details__list li {
  border-color: rgba(247, 243, 234, 0.12);
}

.section--navy .contact-details__list a {
  color: #F7F3EA;
}

.section--navy .contact-details__list span:not(.contact-details__label) {
  color: rgba(247, 243, 234, 0.8);
}

.section--navy .contact-details__link-icon {
  border-color: rgba(247, 243, 234, 0.28);
  color: #D8BC82;
}

.section--navy .contact-details__link:hover .contact-details__link-icon {
  background: rgba(200, 169, 106, 0.12);
  border-color: rgba(200, 169, 106, 0.75);
}

.form-field input.has-error,
.form-field select.has-error,
.form-field textarea.has-error {
  border-color: #b3261e;
  box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.14);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.inquiry-section {
  background: rgb(236.0441860465, 225.8372093023, 211.2558139535);
}

.fleet-filters {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(7, 24, 39, 0.08);
  padding: 22px 24px;
  margin-bottom: 36px;
}
.fleet-filters__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 16px;
  align-items: end;
}
.fleet-filters__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fleet-filters__field label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0B2435;
  font-weight: 600;
}
.fleet-filters__field select {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  padding: 11px 36px 11px 13px;
  border: 1px solid rgba(7, 24, 39, 0.18);
  border-radius: 4px;
  background: #F7F3EA;
  color: #101820;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8A96A' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.fleet-filters__field select:focus {
  outline: none;
  border-color: #C8A96A;
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.18);
}
.fleet-filters__reset {
  background: transparent;
  border: 1px solid rgba(7, 24, 39, 0.2);
  border-radius: 4px;
  padding: 11px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0B2435;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.fleet-filters__reset:hover {
  background: #071827;
  color: #F7F3EA;
  border-color: #071827;
}
.fleet-filters__meta {
  margin: 16px 0 0;
  font-size: 0.86rem;
  color: #8FA3B0;
}

@media (max-width: 1024px) {
  .fleet-filters__row {
    grid-template-columns: 1fr 1fr;
  }
  .fleet-filters__reset {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  .fleet-filters__row {
    grid-template-columns: 1fr;
  }
}
.yacht-sidebar .form-grid {
  grid-template-columns: 1fr;
}

.yacht-sidebar .inquiry {
  padding: 28px 26px;
}

.inquiry--plain {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

@media (max-width: 1280px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1024px) {
  .featured__grid {
    grid-template-columns: 1fr;
  }
  .featured__gallery {
    order: 2;
  }
  .yacht-layout {
    grid-template-columns: 1fr;
  }
  .yacht-sidebar {
    position: static;
  }
  .yacht-card--flagship {
    flex-direction: column;
  }
  .yacht-card--flagship .yacht-card__media {
    flex-basis: auto;
    aspect-ratio: 16/9;
    min-height: 0;
  }
  .price-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .site-header__nav .nav-menu,
  .site-header__cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .spec-lists {
    grid-template-columns: 1fr;
  }
  .featured__specs {
    grid-template-columns: 1fr 1fr;
  }
  .sticky-cta {
    display: flex;
  }
  .whatsapp-float {
    bottom: 84px;
  }
  .facts-bar {
    display: none;
  }
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: 100svh;
  }
  .hero__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-block: calc(var(--ry-header-h) + 20px) 88px;
  }
  .hero__layout {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    min-height: calc(100svh - var(--ry-header-h) - 108px);
  }
  .hero__intro {
    padding-top: 4px;
  }
  .hero__title {
    max-width: none;
    font-size: clamp(2.35rem, 10vw, 3rem);
  }
  .hero__subtitle {
    margin-bottom: 0;
    max-width: 34ch;
  }
  .hero__bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: auto;
  }
  .hero__bottom .hero__specs {
    display: none;
  }
  .hero__bottom .hero__actions {
    order: 2;
    margin-bottom: 0;
  }
  .hero__media-motion {
    inset: 0;
    width: 100%;
    height: 100%;
    animation: none;
  }
  .hero__media img {
    object-position: center center;
  }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(7, 24, 39, 0.82) 0%, rgba(7, 24, 39, 0.18) 28%, rgba(7, 24, 39, 0.12) 52%, rgba(7, 24, 39, 0.82) 100%);
  }
}
@media (max-width: 480px) {
  .container {
    padding-inline: 18px;
  }
  .hero__actions .btn, .cta__actions .btn {
    width: 100%;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .yacht-card__actions {
    flex-direction: column;
  }
}
@media print {
  .site-header, .site-footer, .whatsapp-float, .sticky-cta, .scroll-cue, .inquiry {
    display: none !important;
  }
}
