:root {
  --navy: #061622;
  --navy-2: #0b2230;
  --ink: #132331;
  --muted: #5f6870;
  --ivory: #f8f3e9;
  --ivory-2: #fffaf0;
  --sand: #e7d8c0;
  --brass: #c99b5d;
  --brass-2: #e3bc7c;
  --sea: #8aa6a6;
  --sea-glass: #8aa6a6;
  --deep-navy: #04111b;
  --charcoal-green: #071a18;
  --muted-text: #5f6870;
  --line: rgba(201, 155, 93, 0.32);
  --shadow: 0 26px 70px rgba(5, 18, 28, 0.22);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--ivory-2);
  font-size: clamp(4.2rem, 7.2vw, 7.2rem);
}

h2 {
  color: var(--ink);
  font-size: clamp(2.15rem, 3.6vw, 3.8rem);
}

h3 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

.section-dark {
  color: var(--ivory-2);
  background: var(--navy);
}

.section-ivory {
  background:
    radial-gradient(circle at 4% 14%, rgba(201, 155, 93, 0.11), transparent 24rem),
    linear-gradient(90deg, var(--ivory-2), var(--ivory));
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px clamp(40px, 4.7vw, 72px);
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 20px;
  padding-bottom: 20px;
  background: rgba(5, 18, 28, 0.88);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(160px, 16vw, 230px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: var(--ivory-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brass-2);
  opacity: 1;
}

.nav-cta {
  padding: 16px 28px;
  border: 1px solid var(--brass);
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 3px;
  color: var(--ivory-2);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 150px clamp(40px, 4.7vw, 72px) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 16, 26, 0.72) 0%, rgba(4, 16, 26, 0.34) 48%, rgba(4, 16, 26, 0.18) 100%),
    url("assets/hero.jpg") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 47% 60%, rgba(227, 188, 124, 0.5), transparent 13rem),
    linear-gradient(180deg, rgba(3, 12, 19, 0.28), rgba(3, 12, 19, 0.06) 44%, rgba(3, 12, 19, 0.92));
}

.hero-inner {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 800px;
  padding-bottom: 88px;
}

.eyebrow,
.section-kicker {
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 32px;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(1.08rem, 1.5vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #10202b;
  background: linear-gradient(135deg, var(--brass-2), var(--brass));
}

.button-ghost {
  color: var(--ivory-2);
  border-color: rgba(255, 250, 240, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.hero-badges {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-self: end;
  gap: 16px;
  width: calc(100% + clamp(80px, 9.4vw, 144px));
  margin-left: calc(clamp(40px, 4.7vw, 72px) * -1);
  padding: 20px clamp(40px, 4.7vw, 72px);
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(4, 18, 28, 0.8);
  backdrop-filter: blur(14px);
}

.hero-badges span,
.spec-grid span,
.safety-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--brass-2);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.icon-guests::before {
  inset: 11px 3px 3px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 4px 4px;
}

.icon-guests::after {
  top: 3px;
  left: 8px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: 8px 3px 0 -1px var(--navy), 8px 3px 0 1px currentColor;
}

.icon-lock::before {
  inset: 12px 5px 4px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-lock::after {
  top: 3px;
  left: 8px;
  width: 10px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.icon-water::before {
  top: 7px;
  left: 2px;
  width: 24px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewY(-9deg);
}

.icon-water::after {
  top: 14px;
  left: 3px;
  width: 22px;
  border-top: 2px solid currentColor;
}

.icon-sail::before {
  left: 7px;
  top: 3px;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-left: 13px solid currentColor;
}

.icon-sail::after {
  left: 10px;
  top: 7px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-left: 8px solid var(--navy);
}

.icon-compass::before,
.icon-star::before {
  inset: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-compass::after {
  top: 8px;
  left: 12px;
  width: 4px;
  height: 12px;
  background: currentColor;
  transform: rotate(35deg);
}

.icon-timber::before {
  inset: 5px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.icon-timber::after {
  inset: 10px 7px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.icon-shield::before {
  top: 4px;
  left: 5px;
  width: 18px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 9px 9px 12px 12px;
}

.icon-shield::after {
  top: 9px;
  left: 13px;
  height: 10px;
  border-left: 2px solid currentColor;
}

.icon-star::after {
  inset: 9px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.intro {
  padding: 60px clamp(40px, 4.7vw, 72px) 40px;
  text-align: center;
}

.intro .section-kicker,
.experiences .section-kicker {
  position: relative;
  display: inline-block;
  margin-bottom: 26px;
}

.intro .section-kicker::after,
.experiences .section-kicker::after,
.yacht-copy .section-kicker::after,
.safety-panel .section-kicker::after,
.form-wrap .section-kicker::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--brass);
}

.intro h2 {
  margin-bottom: 18px;
}

.intro p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.05rem;
}

.experiences {
  padding: 18px clamp(40px, 4.7vw, 72px) 48px;
  text-align: center;
}

.experiences h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 34px;
  color: #34424b;
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.experience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 238px;
  padding: 130px 16px 20px;
  overflow: hidden;
  border-radius: 10px;
  color: var(--ivory-2);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 28, 0.02), rgba(5, 18, 28, 0.26) 42%, rgba(5, 18, 28, 0.95));
}

.experience-card > * {
  position: relative;
  z-index: 1;
}

.experience-card h3 {
  margin-bottom: 16px;
}

.experience-card p {
  margin-bottom: 16px;
  color: rgba(255, 250, 240, 0.9);
  font-size: 0.72rem;
  line-height: 1.55;
}

.experience-card a {
  width: fit-content;
  color: var(--ivory-2);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.experience-card a::after {
  content: ">";
  margin-left: 12px;
  color: var(--brass-2);
}

.image-blue-hour {
  background-image: url("assets/card-blue-hour.jpg");
}

.image-proposal {
  background-image: url("assets/card-proposal.jpg");
}

.image-family {
  background-image: url("assets/card-family.jpg");
}

.image-executive {
  background-image: url("assets/card-executive.jpg");
}

.image-photo {
  background-image: url("assets/card-photo.jpg");
}

.hospitality {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  padding: 72px clamp(40px, 4.7vw, 72px);
  border-top: 1px solid rgba(201, 155, 93, 0.14);
}

.hospitality-copy .section-kicker {
  display: inline-block;
  margin-bottom: 24px;
}

.hospitality-copy .section-kicker::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin: 12px 0 0;
  background: var(--brass);
}

.hospitality-copy h2 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 3.8vw, 3.8rem);
}

.hospitality-copy p {
  max-width: 700px;
  color: #34424b;
}

.hospitality-copy .button-row {
  margin-top: 28px;
}

.supporting-line {
  margin-top: 18px;
  color: #6e5d45;
  font-size: 0.92rem;
}

.hospitality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hospitality-grid article {
  min-height: 210px;
  padding: 28px 24px;
  border: 1px solid rgba(201, 155, 93, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.66);
  box-shadow: 0 16px 44px rgba(5, 18, 28, 0.08);
}

.hospitality-grid .icon {
  margin-bottom: 20px;
}

.hospitality-grid h3 {
  color: var(--ink);
}

.hospitality-grid p {
  margin-bottom: 0;
  color: #42515b;
  font-size: 0.9rem;
}

.yacht {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: clamp(44px, 5vw, 72px);
  align-items: center;
  padding: 0 clamp(40px, 4.7vw, 72px) 46px;
}

.yacht-media {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.yacht-media img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
}

.video-link {
  position: absolute;
  left: 26px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-link span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ivory-2);
}

.video-link span::before {
  content: "";
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--navy);
}

.yacht-copy .section-kicker {
  display: inline-block;
  margin-bottom: 24px;
}

.yacht-copy .section-kicker::after,
.safety-panel .section-kicker::after,
.form-wrap .section-kicker::after {
  margin-right: 0;
  margin-left: 0;
}

.yacht-copy h2 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 3.7vw, 3.6rem);
}

.yacht-copy p {
  max-width: 650px;
  color: #34424b;
}

.fleet-card {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid rgba(201, 155, 93, 0.26);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.66);
  box-shadow: 0 20px 50px rgba(5, 18, 28, 0.08);
}

.fleet-card h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.fleet-card p {
  max-width: none;
}

.fleet-label,
.fleet-note {
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet-note {
  margin: 22px 0 0;
  color: #6e5d45;
  letter-spacing: 0.07em;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 30px;
  margin-top: 34px;
}

.spec-grid span {
  align-items: flex-start;
  color: #34424b;
  line-height: 1.35;
}

.designs {
  padding: 64px clamp(40px, 4.7vw, 72px) 74px;
  text-align: center;
}

.designs .section-kicker {
  display: inline-block;
  margin-bottom: 24px;
}

.designs .section-kicker::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--brass);
}

.designs h2 {
  margin-bottom: 20px;
}

.designs > p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: #34424b;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  text-align: left;
}

.design-grid article {
  padding: 28px 24px;
  border: 1px solid rgba(201, 155, 93, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.62);
  box-shadow: 0 16px 44px rgba(5, 18, 28, 0.08);
}

.design-grid .icon {
  margin-bottom: 20px;
}

.design-grid h3 {
  color: var(--ink);
}

.design-grid p {
  margin-bottom: 0;
  color: #42515b;
  font-size: 0.9rem;
}

.extension-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: center;
  padding: 68px clamp(40px, 4.7vw, 72px);
  border-top: 1px solid rgba(201, 155, 93, 0.14);
}

.goods {
  background:
    radial-gradient(circle at 86% 20%, rgba(138, 166, 166, 0.16), transparent 22rem),
    linear-gradient(90deg, var(--ivory), var(--ivory-2));
}

.extension-copy .section-kicker {
  display: inline-block;
  margin-bottom: 24px;
}

.extension-copy .section-kicker::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  margin: 12px 0 0;
  background: var(--brass);
}

.extension-copy h2 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 3.6vw, 3.65rem);
}

.extension-copy p {
  max-width: 690px;
  color: #34424b;
}

.extension-copy .button {
  margin-top: 14px;
}

.extension-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.extension-grid article {
  min-height: 190px;
  padding: 26px 24px;
  border: 1px solid rgba(201, 155, 93, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.66);
  box-shadow: 0 16px 44px rgba(5, 18, 28, 0.08);
}

.extension-grid article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.extension-grid .icon {
  margin-bottom: 18px;
}

.extension-grid h3 {
  color: var(--ink);
}

.extension-grid p {
  margin-bottom: 0;
  color: #42515b;
  font-size: 0.9rem;
}

.spec-grid .icon-sail::after,
.safety-list .icon-sail::after {
  border-left-color: var(--ivory);
}

.private {
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
  padding: 50px clamp(40px, 4.7vw, 72px);
  background:
    radial-gradient(circle at 16% 38%, rgba(138, 166, 166, 0.18), transparent 24rem),
    linear-gradient(110deg, #07141d, #092031 66%, #061622);
}

.private-lead {
  padding-right: clamp(18px, 4vw, 56px);
  border-right: 1px solid rgba(255, 250, 240, 0.14);
}

.private h2,
.form-wrap h2 {
  color: var(--ivory-2);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.private-lead p {
  margin-bottom: 30px;
  color: rgba(255, 250, 240, 0.74);
}

.private-points {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.private-points article {
  min-width: 0;
}

.private-points .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
}

.private-points h3 {
  margin-bottom: 10px;
}

.private-points p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.75);
  font-size: 0.86rem;
  line-height: 1.45;
}

.planning {
  display: grid;
  grid-template-columns: 35.5% 64.5%;
}

.safety-panel {
  padding: 48px clamp(40px, 4.7vw, 72px);
  background: var(--ivory-2);
}

.safety-panel h2 {
  max-width: 460px;
  margin-bottom: 26px;
  font-size: clamp(2.05rem, 3.4vw, 3.2rem);
}

.safety-panel p {
  max-width: 420px;
  color: #42515b;
}

.safety-list {
  display: grid;
  gap: 14px;
  max-width: 410px;
  padding: 18px 0 0;
  margin: 0;
  list-style: none;
}

.safety-list li {
  color: #42515b;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.safety-list .icon {
  width: 22px;
  height: 22px;
}

.enquiry-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 322px;
  padding: 38px clamp(40px, 4.7vw, 72px);
  color: var(--ivory-2);
  background:
    linear-gradient(90deg, rgba(6, 22, 34, 0.88), rgba(6, 22, 34, 0.58)),
    url("assets/enquiry-bg.jpg") right center / cover;
}

.form-wrap {
  width: min(720px, 100%);
  text-align: center;
}

.form-wrap .section-kicker {
  display: inline-block;
  margin-bottom: 18px;
}

.form-wrap .section-kicker::after {
  margin-right: auto;
  margin-left: auto;
}

.form-wrap p {
  max-width: 520px;
  margin: 0 auto 26px;
  color: rgba(255, 250, 240, 0.84);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
  text-align: left;
}

label {
  display: grid;
  gap: 0;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 31px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 250, 240, 0.42);
  border-radius: 3px;
  color: var(--ivory-2);
  background: rgba(3, 12, 19, 0.28);
  outline: 0;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 250, 240, 0.62);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brass-2);
  box-shadow: 0 0 0 3px rgba(201, 155, 93, 0.18);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ivory-2) 50%),
    linear-gradient(135deg, var(--ivory-2) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

option {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.7fr 1fr;
  gap: 34px;
  align-items: start;
  padding: 34px clamp(40px, 4.7vw, 72px);
  background: linear-gradient(90deg, #07141d, #0a2130);
}

.site-footer p,
.site-footer a {
  margin: 0 0 8px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.82rem;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.footer-seal {
  width: 74px;
  opacity: 0.7;
  justify-self: center;
}

.copyright {
  justify-self: end;
}

.goods-page {
  background: var(--ivory-2);
}

.goods-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(28px, 5vw, 72px);
  background: linear-gradient(90deg, #061622, #082337);
  box-shadow: 0 10px 34px rgba(4, 17, 27, 0.18);
}

.goods-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--ivory-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.goods-nav a:first-child,
.goods-nav a:hover {
  color: var(--brass-2);
}

.goods-nav a:first-child::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin: 7px auto 0;
  background: var(--brass);
}

.goods-bag {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 155, 93, 0.5);
  border-radius: 3px;
}

.goods-bag img {
  width: 27px;
  height: auto;
}

.goods-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  min-height: 640px;
  background:
    radial-gradient(circle at 12% 14%, rgba(201, 155, 93, 0.11), transparent 24rem),
    linear-gradient(90deg, var(--ivory-2), var(--ivory));
}

.goods-hero-copy {
  align-self: center;
  padding: 72px clamp(28px, 5vw, 72px);
}

.goods-monogram {
  display: none;
}

.goods-hero h1 {
  color: var(--ink);
  font-size: clamp(3.7rem, 6vw, 6.4rem);
}

.goods-hero p {
  max-width: 480px;
  margin-bottom: 30px;
  color: #34424b;
  font-size: 1.14rem;
}

.goods-hero-image {
  min-height: 540px;
  overflow: hidden;
}

.goods-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.goods-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 28px clamp(28px, 5vw, 72px);
  border-top: 1px solid rgba(201, 155, 93, 0.16);
  border-bottom: 1px solid rgba(201, 155, 93, 0.16);
  background: var(--ivory-2);
}

.goods-values article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 18px;
  padding: 10px 24px;
  border-right: 1px solid rgba(201, 155, 93, 0.3);
}

.goods-values article:last-child {
  border-right: 0;
}

.goods-values img {
  grid-row: span 2;
  align-self: center;
  width: 42px;
  max-height: 48px;
  object-fit: contain;
}

.goods-values h3 {
  margin-bottom: 0;
  color: var(--ink);
}

.goods-values p {
  margin-bottom: 0;
  color: #42515b;
  font-size: 0.9rem;
}

.goods-collections {
  padding: 48px clamp(28px, 5vw, 72px) 70px;
  text-align: center;
}

.goods-collections .section-kicker {
  display: inline-block;
  margin-bottom: 34px;
}

.goods-collections .section-kicker::after {
  content: "";
  display: block;
  width: 78px;
  height: 1px;
  margin: 12px auto 0;
  background: var(--brass);
}

.goods-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.goods-category-grid article {
  text-align: center;
}

.goods-category-grid img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  margin-bottom: 18px;
}

.goods-category-grid h3 {
  color: var(--ink);
}

.goods-category-grid p {
  max-width: 240px;
  margin-right: auto;
  margin-bottom: 14px;
  margin-left: auto;
  color: #42515b;
}

.goods-category-grid a {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.goods-category-grid a::after {
  content: ">";
  margin-left: 8px;
}

.goods-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ivory-2);
}

.goods-story-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.goods-story-copy {
  position: relative;
  align-self: center;
  padding: 70px clamp(28px, 5vw, 72px);
  overflow: hidden;
}

.goods-story-copy .section-kicker {
  display: inline-block;
  margin-bottom: 18px;
}

.goods-story-copy h2 {
  max-width: 520px;
  margin-bottom: 24px;
}

.goods-story-copy p {
  max-width: 500px;
  color: #34424b;
}

.sail-watermark {
  position: absolute;
  right: 44px;
  bottom: 34px;
  width: 130px;
  opacity: 0.12;
}

.goods-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 36px;
  align-items: center;
  padding: 34px clamp(28px, 5vw, 72px);
  background: linear-gradient(90deg, #061622, #082337);
}

.goods-signup h2 {
  color: var(--ivory-2);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.goods-signup form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.goods-signup input {
  min-height: 52px;
}

.goods-signup button {
  border-radius: 0 4px 4px 0;
}

.goods-signup p {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.88rem;
}

.goods-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.5fr;
  gap: 48px;
  align-items: start;
  padding: 48px clamp(28px, 5vw, 72px);
  background: var(--ivory-2);
}

.goods-footer-brand {
  display: block;
  width: 220px;
  padding: 12px;
  margin-bottom: 14px;
  background: var(--navy);
}

.goods-footer p,
.goods-footer a {
  color: #34424b;
  font-size: 0.9rem;
}

.goods-footer nav {
  display: grid;
  gap: 8px;
}

.goods-footer h3 {
  color: var(--ink);
}

.goods-footer-seal {
  width: 128px;
  justify-self: end;
}

.goods-legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(28px, 5vw, 72px);
  background: #061622;
  color: rgba(255, 250, 240, 0.75);
  font-size: 0.82rem;
}

@media (max-width: 760px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hospitality,
  .extension-section,
  .private,
  .planning,
  .design-grid {
    grid-template-columns: 1fr;
  }

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

  .private-lead {
    max-width: 680px;
    padding-right: 0;
    padding-bottom: 40px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  }

  .private-points {
    grid-template-columns: repeat(7, minmax(130px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 24px;
  }

  .brand {
    width: clamp(142px, 38vw, 190px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 10px);
    right: 24px;
    display: grid;
    min-width: min(320px, calc(100vw - 48px));
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(255, 250, 240, 0.16);
    border-radius: 8px;
    background: rgba(5, 18, 28, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding-top: 140px;
  }

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

  .yacht {
    grid-template-columns: 1fr;
    padding-top: 16px;
  }

  .designs {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .goods-header,
  .goods-nav {
    flex-wrap: wrap;
  }

  .goods-hero,
  .goods-story,
  .goods-signup,
  .goods-footer {
    grid-template-columns: 1fr;
  }

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

  .goods-values article {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 155, 93, 0.22);
  }

  .copyright {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.2rem);
  }

  .hero {
    min-height: 100svh;
    padding-right: 20px;
    padding-left: 20px;
    background-position: 58% center;
  }

  .hero-inner {
    padding-bottom: 78px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-badges {
    grid-template-columns: 1fr;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 20px;
  }

  .intro,
  .experiences,
  .hospitality,
  .extension-section,
  .yacht,
  .private,
  .safety-panel,
  .enquiry-panel,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .intro {
    padding-top: 64px;
  }

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

  .experience-card {
    min-height: 340px;
  }

  .spec-grid,
  .hospitality-grid,
  .extension-grid,
  .design-grid,
  .form-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .goods-header {
    align-items: flex-start;
  }

  .goods-nav {
    width: 100%;
    gap: 12px 18px;
    font-size: 0.7rem;
  }

  .goods-bag {
    display: none;
  }

  .goods-hero-copy,
  .goods-story-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .goods-hero-image {
    min-height: 420px;
  }

  .goods-values,
  .goods-category-grid,
  .goods-signup form,
  .goods-legal {
    grid-template-columns: 1fr;
  }

  .goods-signup form,
  .goods-legal {
    display: grid;
  }

  .goods-footer-seal {
    justify-self: start;
  }

  .private-points {
    grid-template-columns: 1fr;
    overflow: visible;
    text-align: left;
  }

  .private-points article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0 18px;
  }

  .private-points .icon {
    grid-row: span 2;
    margin-bottom: 0;
  }
}
