*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; }
::selection { background: rgba(134,33,37,0.18); color: var(--ink); }

:root {
  
  --bg:        #F8F5EF;
  --bg-warm:   #F2EDE2;
  --surface:   #EDE6D6;
  --surface-lt:#E7E0CF;
  --surface-2: #DDD6C3;

  
  --teal:      #862125;
  --teal-lt:   #A02830;
  --teal-dim:  rgba(134,33,37,0.10);
  --teal-b:    rgba(134,33,37,0.22);

  
  --ink:       #1A1A18;
  --ink-2:     #5E5850;
  --ink-dim:   rgba(26,26,24,0.06);
  --ink-b:     rgba(26,26,24,0.09);

  
  --ff-display:'Spectral', Georgia, serif;
  --ff-body:   'Instrument Sans', system-ui, sans-serif;

  
  --nav-h:     68px;
  --max-w:     1280px;
  --ease:      0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:  0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal-b); }

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: overlay;
}

.page-wrap { animation: pgIn 0.45s ease both; }
@keyframes pgIn { from { opacity:0 } to { opacity:1 } }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.wrap--sm { max-width: 880px; }
.wrap--wide { max-width: 1500px; }
@media (max-width:768px) { .wrap { padding: 0 24px; } }

.label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
}
.label--dim { color: var(--ink-2); }

.d-xl {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.87;
  color: var(--ink);
}
.d-lg {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.92;
  color: var(--ink);
}
.d-md {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
}
.d-sm {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}
.body-lg {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink-2);
}
.body-sm { font-size: 13.5px; font-weight: 400; line-height: 1.72; color: var(--ink-2); }
.accent { color: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: var(--ease);
  white-space: nowrap;
}
.btn-copper { padding: 14px 36px; background: var(--teal); color: var(--bg); }
.btn-copper:hover { background: var(--teal-lt); }
.btn-outline { padding: 13px 34px; border: 1px solid var(--teal-b); color: var(--ink); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-ghost {
  padding: 0;
  color: var(--ink-2);
  position: relative;
  letter-spacing: 0.18em;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.btn-ghost:hover { color: var(--teal); }
.btn-ghost:hover::after { transform: scaleX(1); }

.rule { width: 36px; height: 1px; background: var(--teal); }
.rule-h { width: 100%; height: 1px; background: var(--ink-b); }
.rule-copper-h { width: 100%; height: 1px; background: var(--teal-b); }

.sec-num {
  font-family: var(--ff-display);
  font-size: 9rem;
  font-weight: 400;
  color: rgba(134,33,37,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.vis { opacity:1; transform:translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }
.rd5 { transition-delay: 0.40s; }
.rd6 { transition-delay: 0.48s; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(248,245,239,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--ink-b);
  box-shadow: 0 1px 32px rgba(26,26,24,0.06);
}
.hd-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 48px;
}
@media (max-width:768px) { .hd-wrap { padding: 0 24px; } }

.logo { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  font-size: 8.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}

.main-nav { display: flex; align-items: center; gap: 8px; }
@media (max-width:900px) { .main-nav { display: none; } }
.main-nav a {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 14px;
  transition: color 0.3s;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--teal);
  margin-top: 3px;
}
.main-nav .nav-cta {
  margin-left: 20px;
  padding: 9px 22px;
  border: 1px solid var(--teal-b);
  color: var(--teal);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: var(--ease);
}
.main-nav .nav-cta:hover { background: var(--teal); color: var(--bg); }
.main-nav .nav-cta.active::after { display: none; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  position: relative;
  z-index: 103;
}
@media (max-width:900px) { .burger { display: flex; } }
.burger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mob-menu {
  position: fixed;
  inset: 0;
  background: #16201F;
  z-index: 102;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 36px;
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
}
.mob-menu.open { transform: translateX(0); }
.mob-menu a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg);
  padding: 13px 0;
  border-bottom: 1px solid rgba(248,245,239,0.10);
  transition: color 0.3s, padding-left 0.3s;
  letter-spacing: -0.01em;
}
.mob-menu a:hover { color: var(--teal-lt); padding-left: 8px; }
.mob-menu a:last-child { color: var(--teal-lt); border-bottom: none; }
.mob-menu a.active { font-weight: 900; color: var(--bg); }

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--ink-b);
  padding: 64px 0 40px;
}
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width:768px) { .ft-grid { grid-template-columns: 1fr; gap: 32px; } }
.ft-logo-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.ft-logo-sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.ft-desc { font-size: 13.5px; color: var(--ink-2); line-height: 1.72; max-width: 300px; }
.ft-col-title { font-size: 9.5px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-links a { font-size: 13.5px; color: var(--ink-2); transition: color 0.3s; }
.ft-links a:hover { color: var(--ink); }
.ft-bottom { padding-top: 28px; border-top: 1px solid var(--ink-b); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-copy { font-size: 11.5px; color: var(--ink-2); opacity: 0.55; }
.ft-ig { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--ink-2); transition: color 0.3s; }
.ft-ig:hover { color: var(--teal); }

.pg-hero {
  padding: calc(var(--nav-h) + 88px) 0 80px;
  border-bottom: 1px solid var(--ink-b);
  position: relative;
  overflow: hidden;
}
.pg-hero .label { margin-bottom: 22px; }
.pg-hero .d-lg { max-width: 760px; }
.pg-hero-sub { font-size: 15px; color: var(--ink-2); margin-top: 20px; max-width: 580px; line-height: 1.8; }
.pg-hero-num {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(calc(-50% + 28px));
  width: clamp(9rem, 20vw, 18rem);
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 44fr 56fr;
  border-bottom: 1px solid var(--ink-b);
}
@media (max-width:900px) { .hero { grid-template-columns: 1fr; } }

.hero-panel {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 68px;
  min-height: 100vh;
  border-right: 1px solid var(--ink-b);
  position: relative;
}
@media (max-width:900px) {
  .hero-panel { min-height: 0; padding: calc(var(--nav-h) + 48px) 24px 48px; border-right: none; border-bottom: 1px solid var(--ink-b); justify-content: center; }
}
.hero-origin {
  position: absolute;
  top: calc(var(--nav-h) + 28px);
  left: 56px;
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.7s var(--ease-out) 0.15s both;
}
.hero-origin::before { content: ''; display: block; width: 20px; height: 1px; background: var(--teal); }
@media (max-width:900px) { .hero-origin { left: 24px; } }

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(5.8rem, 10.5vw, 9.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.875;
  color: var(--ink);
  position: absolute;
  top: calc(50% - 110px);
  left: 56px;
  transform: translateY(-50%);
}
.hero-title .ln1 { display: block; animation: titleReveal 1.1s cubic-bezier(0.16,1,0.3,1) 0.3s both; }
.hero-title .ln2 { display: block; color: var(--teal); animation: titleReveal 1.1s cubic-bezier(0.16,1,0.3,1) 0.46s both; text-align: center; }
@media (max-width:900px) { .hero-title { position: static; transform: none; left: auto; top: auto; width: auto; text-align: center; align-self: center; margin-top: 36px; margin-bottom: 24px; } }
@keyframes titleReveal { from { opacity:0; transform:translateY(44px) } to { opacity:1; transform:translateY(0) } }

.hero-model {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-2);
  margin-bottom: 48px;
  animation: fadeUp 0.8s var(--ease-out) 0.65s both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(14px) } to { opacity:1; transform:translateY(0) } }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.8s var(--ease-out) 0.82s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--ink-b);
  animation: fadeUp 0.8s var(--ease-out) 1.0s both;
}
.h-stat-v {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.h-stat-l {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-top: 5px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
@media (max-width:900px) { .hero-photo { height: 65vw; min-height: 280px; } }
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.04);
  animation: zoomIn 2s cubic-bezier(0.25,0.46,0.45,0.94) 0.2s both;
}
@keyframes zoomIn { from { transform:scale(1.1) } to { transform:scale(1.04) } }
.hero-caption {
  position: absolute;
  bottom: 28px;
  right: 20px;
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.50);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-sect {
  padding: 110px 0;
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
@media (max-width:900px) { .about-inner { grid-template-columns: 1fr; gap: 48px; } }

.about-text .label { margin-bottom: 22px; }
.about-text .d-md { margin-bottom: 28px; }
.about-text .body-lg { margin-bottom: 20px; }
.about-text .body-lg + .body-lg { margin-top: -4px; }
.about-text .btn { margin-top: 36px; }

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 340px 200px;
  gap: 8px;
}
@media (max-width:560px) { .about-photos { grid-template-rows: 220px 140px; } }
.about-photos img { width: 100%; height: 100%; object-fit: cover; }
.about-photos img:first-child { grid-column: 1 / -1; }

.feats-sect {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--ink-b);
  border-bottom: 1px solid var(--ink-b);
}
.feats-hd { margin-bottom: 64px; }
.feats-hd .label { margin-bottom: 18px; }
.feat-row {
  display: grid;
  grid-template-columns: 72px 1fr 2fr;
  gap: 32px 48px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--ink-b);
}
.feat-row:last-child { border-bottom: none; }
@media (max-width:768px) { .feat-row { grid-template-columns: 48px 1fr; } .feat-row .feat-desc { grid-column: 2; } }
@media (max-width:480px) { .feat-row { grid-template-columns: 1fr; gap: 12px; } }
.feat-n {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-b);
  line-height: 1;
  padding-top: 3px;
}
.feat-title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.feat-desc { font-size: 14px; color: var(--ink-2); line-height: 1.78; }

.gal-teaser { padding: 120px 0; }
.gal-teaser-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.gal-strip {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr;
  grid-template-rows: 460px;
  gap: 8px;
}
@media (max-width:900px) {
  .gal-strip { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-strip-item:nth-child(3) { display: none; }
}
@media (max-width:560px) { .gal-strip { grid-template-columns: 1fr; } }
.gal-strip-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gal-strip-side .gal-strip-item { flex: 1; }
.gal-strip-item { position: relative; overflow: hidden; }
.gal-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94); }
.gal-strip-item:hover img { transform: scale(1.05); }
.gal-strip-over {
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,0);
  transition: background 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gal-strip-item:hover .gal-strip-over { background: rgba(26,26,24,0.30); }
.gal-view-all {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.gal-strip-item:hover .gal-view-all { opacity: 1; transform: scale(1); }

.rate-callout {
  padding: 110px 0;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--ink-b);
  border-bottom: 1px solid var(--ink-b);
}
.rate-callout .label { margin-bottom: 28px; }
.rate-num {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.rate-sub { font-size: 14px; color: var(--ink-2); margin-bottom: 48px; }
.rate-callout .rule-copper-h { max-width: 100px; margin: 0 auto 48px; }
.rate-callout .btn { margin: 0 auto; }

.cta-strip {
  padding: 90px 0;
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width:768px) { .cta-strip-inner { grid-template-columns: 1fr; gap: 32px; } }
.cta-strip .d-md { margin-bottom: 28px; }
.cta-strip .body-lg { margin-bottom: 36px; }

.yacht-story { padding: 100px 0; }
.yacht-story-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: start;
}
@media (max-width:900px) { .yacht-story-inner { grid-template-columns: 1fr; gap: 48px; } }
.yacht-story-text .label { margin-bottom: 20px; }
.yacht-story-text .d-md { margin-bottom: 28px; }
.yacht-story-text p { font-size: 15px; color: var(--ink-2); line-height: 1.85; margin-bottom: 18px; }
.yacht-story-text p.lead {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}
.yacht-aside img { width: 100%; height: 520px; object-fit: cover; margin-bottom: 8px; }
.yacht-aside img:last-child { height: 260px; }

.charter-feats { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--ink-b); }
.charter-feats .feats-hd { margin-bottom: 48px; }

.tech-specs-sect { padding: 100px 0; border-top: 1px solid var(--ink-b); }
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
@media (max-width:768px) { .specs-grid { grid-template-columns: 1fr; } }
.specs-card {
  border: 1px solid var(--ink-b);
  padding: 40px;
}
@media (max-width:480px) { .specs-card { padding: 28px 20px; } }
.specs-card-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink-b);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,26,24,0.05);
  font-size: 13.5px;
}
.spec-row:last-child { border-bottom: none; }
.spec-k { color: var(--ink-2); flex-shrink: 0; }
.spec-v { color: var(--ink); font-weight: 400; text-align: right; }
.inc-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.inc-item { display: flex; gap: 12px; font-size: 14px; color: var(--ink-2); align-items: flex-start; }
.inc-item::before { content: '—'; color: var(--teal); flex-shrink: 0; }

.gal-page { padding: 80px 0 120px; }
.masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 8px;
}

.gal-section { margin: 56px 0 20px; }
.gal-section:first-child { margin-top: 0; }
.gal-section-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.01em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--teal-b);
}

@media (max-width:768px) { .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; } }
@media (max-width:480px) { .masonry { grid-template-columns: 1fr; grid-auto-rows: 260px; } }
.masonry-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-over {
  position: absolute;
  inset: 0;
  background: rgba(26,26,24,0);
  transition: background 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.masonry-item:hover .masonry-over { background: rgba(26,26,24,0.35); }
.masonry-zoom {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.3s, transform 0.3s;
}
.masonry-item:hover .masonry-zoom { opacity: 1; transform: scale(1); }

.lb {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15,12,10,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lb.open { opacity: 1; pointer-events: auto; }
.lb-img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
.lb-close {
  position: absolute;
  top: 24px; right: 32px;
  color: rgba(248,245,239,0.6);
  font-size: 22px;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  z-index: 301;
}
.lb-close:hover { opacity: 1; color: var(--teal-lt); }
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(248,245,239,0.6);
  font-size: 20px;
  padding: 24px 20px;
  opacity: 0.55;
  transition: opacity 0.2s, color 0.2s;
  z-index: 301;
}
.lb-btn:hover { opacity: 1; color: #fff; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-count {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(248,245,239,0.5);
}
.lb-caption {
  position: absolute;
  bottom: 24px; right: 48px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,245,239,0.4);
}

.rates-sect { padding: 80px 0 120px; }
.rates-intro { max-width: 640px; margin-bottom: 72px; }
.rates-intro .body-lg { margin-top: 20px; }
.rates-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
@media (max-width:900px) { .rates-main { grid-template-columns: 1fr; } }
.rcard {
  border: 1px solid var(--ink-b);
  padding: 44px;
}
@media (max-width:480px) { .rcard { padding: 28px 20px; } }
.rcard:hover { border-color: var(--teal-b); transition: border-color 0.3s; }
.rcard-label { margin-bottom: 24px; }
.rcard-title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ink-b);
}
.price-block { padding: 32px 0 28px; border-bottom: 1px solid var(--ink-b); margin-bottom: 28px; }
.price-from { font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.price-amount {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-period { font-size: 13px; color: var(--ink-2); margin-top: 8px; }
.price-note { font-size: 12px; color: var(--ink-2); margin-top: 16px; line-height: 1.65; }
.rates-note-box {
  background: var(--surface);
  border-left: 3px solid var(--teal);
  padding: 28px 32px;
  margin-top: 48px;
}
.rates-note-box p { font-size: 14px; color: var(--ink-2); line-height: 1.75; }
.rates-note-box p + p { margin-top: 12px; }

.dates-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink-b);
  max-width: 640px;
  margin: 0 auto;
}
.date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-b);
}
.date-range {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.date-rate {
  font-size: 0.85rem;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.date-disc { color: var(--teal); font-weight: 500; }
.disc-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 2px 7px;
  border-radius: 2px;
}
.date-row-booked { opacity: 0.45; }
.date-row-booked .date-range { text-decoration: line-through; }
.booked-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.avail-loading {
  padding: 32px;
  text-align: center;
  color: var(--ink-2);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}
.avail-note {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.7;
  margin-top: 4px;
}

.contact-sect { padding: 80px 0 120px; }
.contact-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
@media (max-width:900px) { .contact-inner { grid-template-columns: 1fr; gap: 48px; } }
.cinfo .label { margin-bottom: 20px; }
.cinfo .d-md { margin-bottom: 24px; }
.cinfo .body-lg { margin-bottom: 36px; }
.cdetail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.cdetail-icon { width: 36px; height: 36px; border: 1px solid var(--teal-b); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.cdetail-label { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 4px; }
.cdetail-value { font-size: 14px; color: var(--ink); }

.cform { display: flex; flex-direction: column; gap: 18px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width:560px) { .frow { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: 7px; }
.flbl { font-size: 9px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--teal); }
.fi, .fsel, .fta {
  background: transparent;
  border: 1px solid var(--ink-b);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.fi:focus, .fsel:focus, .fta:focus { border-color: var(--teal); }
.fi::placeholder, .fta::placeholder { color: var(--ink-2); opacity: 0.55; }
.fsel { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23862125' stroke-width='1.3' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
.fsel option { background: var(--surface); }
.fta { resize: vertical; min-height: 108px; }
.fsubrow { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 4px; }
.fnote { font-size: 12px; color: var(--ink-2); opacity: 0.6; }
.fsuccess {
  padding: 40px;
  border: 1px solid var(--teal-b);
  text-align: center;
  display: none;
}
.fsuccess.show { display: block; }
.fsuccess-icon { font-family: var(--ff-display); font-size: 2.5rem; color: var(--teal); margin-bottom: 16px; }
.fsuccess-title { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 600; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; }
.fsuccess p { font-size: 14px; color: var(--ink-2); line-height: 1.75; }

/* ─── LIFESTYLE SECTION ─── */
.lifestyle-sect { padding: 80px 0 100px; }
.lifestyle-hd { margin-bottom: 40px; }
.lifestyle-hd .label { display: block; margin-bottom: 14px; }

.lifestyle-hero-wrap {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  margin-bottom: 6px;
  cursor: pointer;
}
.lifestyle-hero-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.7s ease;
}
.lifestyle-hero-wrap:hover img { transform: scale(1.03); }

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 6px;
}
.lifestyle-cell {
  aspect-ratio: 3/2;
  overflow: hidden;
  cursor: pointer;
}
.lifestyle-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.lifestyle-cell:hover img { transform: scale(1.04); }

@media (max-width: 600px) {
  .lifestyle-hero-wrap { aspect-ratio: 4/3; }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-cell:last-child { display: none; }
}

/* ─── YACHT VIDEO ─── */
.yacht-video-sect {
  padding: 80px 0 100px;
  background: var(--surface);
}
.yacht-video-inner { text-align: center; }
.yacht-video-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(26,26,24,0.18);
}
.yacht-video { width: 100%; display: block; background: #000; }

/* ─── LEAD CAPTURE MODAL ─── */
.lc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,24,0.72);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lc-overlay.open { opacity: 1; visibility: visible; }
.lc-box {
  background: var(--bg);
  padding: 48px 44px;
  max-width: 440px;
  width: calc(100% - 48px);
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.lc-overlay.open .lc-box { transform: translateY(0); }
.lc-close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.2rem;
  color: var(--ink-2);
  background: none; border: none; cursor: pointer; line-height: 1;
}
.lc-close:hover { color: var(--ink); }
.lc-label { font-family: var(--ff-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; display: block; }
.lc-title { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.15; }
.lc-sub { font-size: 0.88rem; color: var(--ink-2); line-height: 1.65; margin-bottom: 28px; }
.lc-field { margin-bottom: 14px; }
.lc-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--ink-b);
  background: transparent;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.lc-field input:focus { border-color: var(--teal); }
.lc-field input::placeholder { color: var(--ink-2); opacity: 0.55; }
.lc-submit {
  width: 100%;
  margin-top: 6px;
  padding: 14px;
  background: var(--teal);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.lc-submit:hover { background: var(--teal-lt); }
.lc-err { font-size: 0.78rem; color: var(--teal); margin-top: 10px; display: none; }
.lc-err.show { display: block; }
@media (max-width: 600px) { .lc-box { padding: 36px 28px; } }

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.2s ease;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(134,33,37,0.35);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--teal-lt); }
@media (max-width: 600px) {
  .scroll-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--surface);
  border-top: 1px solid var(--ink-b);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(26,26,24,0.06);
}
.cookie-banner p {
  margin: 0;
  flex: 1;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.cookie-banner p a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 8px 22px;
  font-size: 11px;
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--teal-lt); }
.cookie-decline {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--ink-b);
  padding: 8px 22px;
  font-size: 11px;
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-decline:hover { border-color: var(--ink); color: var(--ink); }
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 20px; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* ─── FOOTER PRIVACY LINK ─── */
.ft-privacy {
  font-size: 11.5px;
  color: var(--ink-2);
  opacity: 0.55;
  transition: opacity 0.2s;
  margin-left: 16px;
}
.ft-privacy:hover { opacity: 0.9; }

/* ─── PRIVACY POLICY PAGE ─── */
.privacy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}
.privacy-page h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.privacy-page .pp-date {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 40px;
  display: block;
}
.privacy-page h2 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 12px;
}
.privacy-page p, .privacy-page li {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.privacy-page ul { padding-left: 20px; margin-bottom: 12px; }
.privacy-page a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.privacy-page .rule { height: 1px; background: var(--ink-b); margin: 48px 0; }
