:root {
  --navy: #123456;
  --ink: #253243;
  --paper: #faf8f3;
  --linen: #efe4d4;
  --terracotta: #d9793d;
  --delft: #2d5e87;
  --brass: #b99357;
  --olive: #7a8061;
  --white: #fffdf8;
  --line: rgba(18, 52, 86, 0.15);
  --shadow: 0 26px 70px rgba(18, 52, 86, 0.15);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gutter: clamp(18px, 5vw, 70px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}
h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.94;
}
h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.02;
}
h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
  line-height: 1.22;
}
p {
  color: rgba(37, 50, 67, 0.78);
  line-height: 1.75;
}
.lede {
  max-width: 710px;
  font-size: 1.08rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.button, .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--navy);
  border-radius: 3px;
  color: #fff;
  background: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.button:hover, .header-cta:hover {
  transform: translateY(-1px);
  border-color: var(--terracotta);
  background: var(--terracotta);
}
.button--ghost {
  color: var(--navy);
  background: transparent;
}
.button--ghost:hover { color: #fff; }
.button--glass {
  min-height: 52px;
  padding: 0 30px;
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(18, 52, 86, 0.16);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
}
.button--glass:hover {
  border-color: #fff;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
}
.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--brass);
  color: var(--delft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(16px);
}
.brand img { width: 154px; height: auto; }
.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--terracotta);
  transition: transform 180ms ease;
}
.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-toggle { display: none; }
.header-cta { justify-self: end; }

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero picture, .hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero img {
  object-fit: cover;
  object-position: center center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 28, 47, 0.22));
}
.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(940px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: 80px var(--gutter);
  text-align: center;
}
.hero h1 {
  max-width: none;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(3.7rem, 7.2vw, 7.4rem);
  font-weight: 400;
  line-height: 0.94;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.38);
}
.hero p { color: #fff; }
.hero .eyebrow { color: #f1d59c; }
.hero__kicker {
  margin: 0;
  font-size: clamp(0.88rem, 1.25vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.hero .button--ghost, .visit-panel .button--ghost {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-band span {
  padding: 22px var(--gutter);
  color: var(--navy);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: 105px var(--gutter);
}
.split--reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
}
.split--reverse .split__media { order: 2; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
}
#boutique .split__media {
  justify-self: center;
  width: min(100%, 560px);
}
#boutique .split__media img {
  aspect-ratio: 3 / 2;
}
#terrace .split__media iframe {
  aspect-ratio: 3 / 2;
  filter: saturate(0.9);
}
.split__copy {
  max-width: 660px;
}
.royal {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 50px;
  padding: 96px var(--gutter);
  color: #fff;
  background: var(--navy);
}
.royal h2, .royal h3, .royal p { color: #fff; }
.royal .eyebrow { color: #f1d59c; }
.royal--heritage {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(18, 52, 86, 0.96), rgba(18, 52, 86, 0.86)),
    radial-gradient(circle at 85% 12%, rgba(185, 147, 87, 0.22), transparent 32%);
}
.royal--heritage .royal__copy {
  max-width: 720px;
}
.royal-logo-card {
  display: grid;
  gap: 22px;
}
.royal-logo-card > img {
  width: min(520px, 100%);
  height: auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.proof-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}
.proof-grid span {
  display: block;
  margin-bottom: 60px;
  color: #f1d59c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section {
  padding: 105px var(--gutter);
}
.section__intro {
  max-width: 760px;
  margin-bottom: 42px;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.collection-card {
  display: grid;
  grid-template-rows: 280px 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.collection-card picture,
.collection-card img {
  width: 100%;
  height: 100%;
}
.collection-card img {
  object-fit: cover;
}
.collection-card div {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 150px;
  padding: 26px 24px 28px;
  background: #fff;
}
.collection-card p {
  margin: 0;
  color: var(--delft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.collection-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.5vw, 1.42rem);
  line-height: 1.26;
}
.partner-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: 72px var(--gutter);
  background: var(--white);
}
.partner-section__copy {
  max-width: 650px;
}
.partner-logo {
  display: inline-flex;
  width: 188px;
  margin-top: 12px;
  padding: 15px 18px;
  background: var(--navy);
}
.partner-logo img {
  width: 100%;
  height: auto;
}
.partner-section__media {
  display: grid;
  place-items: center;
}
.partner-section__media picture {
  display: grid;
  place-items: center;
}
.partner-section__media img {
  width: min(100%, 620px);
  max-height: 620px;
  object-fit: cover;
  object-position: center 30%;
}

.ocean-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: 100px var(--gutter);
  background: var(--white);
}
.ocean-section__copy {
  max-width: 650px;
}
.ocean-section__media {
  display: block;
}
.ocean-section__media picture {
  display: block;
}
.ocean-section__media img {
  width: 100%;
  height: clamp(360px, 42vw, 580px);
  object-fit: cover;
}

.gallery-section {
  background: var(--linen);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(190px, 23vw, 330px);
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}
.gallery-button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.gallery-button:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: -3px;
}
.gallery-grid__featured {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid picture,
.gallery-grid img {
  width: 100%;
  height: 100%;
}
.gallery-grid img {
  object-fit: cover;
  transition: transform 500ms ease;
}
.gallery-grid figure:hover img {
  transform: scale(1.035);
}
.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(54px, 7vw, 80px) clamp(54px, 8vw, 110px);
  border: 0;
  color: #fff;
  background: rgba(7, 18, 30, 0.96);
}
.gallery-lightbox::backdrop { background: rgba(7, 18, 30, 0.86); }
.gallery-lightbox[open] {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.gallery-lightbox__figure {
  grid-column: 2;
  display: grid;
  min-width: 0;
  height: 100%;
  margin: 0;
  place-items: center;
}
.gallery-lightbox__figure img {
  min-height: 0;
  max-width: 100%;
  max-height: calc(100dvh - 150px);
  object-fit: contain;
}
.gallery-lightbox__close,
.gallery-lightbox__arrow {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__arrow:hover { background: rgba(255, 255, 255, 0.22); }
.gallery-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}
.gallery-lightbox__arrow {
  width: 48px;
  height: 64px;
  font-size: 3rem;
  line-height: 1;
}
.gallery-lightbox__arrow--previous { grid-column: 1; }
.gallery-lightbox__arrow--next { grid-column: 3; }
.gallery-lightbox__count {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}
body.gallery-open { overflow: hidden; }

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 96px var(--gutter);
  background: var(--paper);
}
.reviews-section__intro {
  max-width: 760px;
}
.google-review-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.google-wordmark {
  display: inline-block;
  margin-bottom: 26px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.google-wordmark span:nth-child(1) { color: #4285f4; }
.google-wordmark span:nth-child(2) { color: #ea4335; }
.google-wordmark span:nth-child(3) { color: #fbbc04; }
.google-wordmark span:nth-child(4) { color: #4285f4; }
.google-wordmark span:nth-child(5) { color: #34a853; }
.google-wordmark span:nth-child(6) { color: #ea4335; }
.review-score {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.review-score strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 500;
  line-height: 0.9;
}
.review-stars {
  color: #fbbc04;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: 0.08em;
}
.review-star--half {
  color: transparent;
  background: linear-gradient(90deg, #fbbc04 50%, rgba(37, 50, 67, 0.2) 50%);
  background-clip: text;
  -webkit-background-clip: text;
}
.visit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 86px var(--gutter);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #204f78);
}
.visit-panel h2, .visit-panel p { color: #fff; }
.visit-panel .eyebrow { color: #f1d59c; }
.visit-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.visit-panel--detailed {
  grid-template-columns: minmax(0, 920px);
}
.visit-panel address {
  margin: 24px 0;
  color: #fff;
  font-style: normal;
  line-height: 1.75;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
  padding: 76px var(--gutter) 92px;
  background: var(--linen);
}
.page-hero img,
.page-hero iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  object-fit: cover;
}
.page-hero iframe {
  min-height: 420px;
  filter: saturate(0.9);
}
.contact-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 90px var(--gutter);
}
.contact-grid article, .faq-grid article {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}
.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 86px var(--gutter) 110px;
}
.legal-page h1 {
  color: var(--navy);
  font-size: clamp(2.7rem, 6vw, 5rem);
}
.legal-page section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.legal-page a { color: var(--delft); text-decoration: underline; }
.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 14px;
  padding: var(--gutter);
}

.site-footer {
  position: relative;
  color: #fff;
  background: #071d32;
}
.footer__main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 1fr));
  gap: 32px;
  padding: 64px var(--gutter);
}
.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.site-footer h2 {
  margin-bottom: 15px;
  color: #f1d59c;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-footer p {
  color: #fff;
}
.site-footer a, .footer-button {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.82);
}
.footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}
.compact-footer .footer__bottom { border-top: 0; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 1040px) {
  .collection-grid, .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .royal, .page-hero, .reviews-section {
    grid-template-columns: 1fr;
  }
  .footer__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: auto auto;
  }
  .brand img { width: 132px; }
  .header-cta { display: none; }
  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 12px;
    border: 1px solid var(--line);
    background: transparent;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
  }
  .nav {
    grid-column: 1 / -1;
    display: none;
    justify-self: stretch;
    gap: 0;
    padding-top: 8px;
  }
  body.nav-open .nav { display: grid; }
  .nav a {
    padding: 15px 0;
    border-top: 1px solid var(--line);
  }
  .hero {
    min-height: 76vh;
  }
  .hero::after {
    background: linear-gradient(180deg, transparent 38%, rgba(8, 28, 47, 0.32));
  }
  .hero__content {
    padding: 62px var(--gutter);
  }
  .hero h1 {
    font-size: clamp(3.6rem, 16vw, 5.2rem);
  }
  .hero__kicker {
    max-width: 330px;
    font-size: 0.82rem;
  }
  .intro-band, .split, .split--reverse, .partner-section, .ocean-section, .visit-panel, .contact-grid, .faq-grid {
    grid-template-columns: 1fr;
  }
  .split, .section, .royal, .partner-section, .ocean-section, .contact-grid, .faq-grid, .reviews-section {
    padding-block: 64px;
  }
  .split--reverse .split__media { order: 0; }
  .collection-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-auto-rows: 260px;
  }
  .gallery-grid__featured {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-lightbox {
    padding: 58px 12px 22px;
  }
  .gallery-lightbox[open] {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 4px;
  }
  .gallery-lightbox__arrow {
    width: 44px;
    height: 54px;
  }
  .partner-section__media img {
    max-height: 380px;
  }
  .ocean-section__media img {
    height: 280px;
  }
  .collection-card {
    grid-template-rows: 260px 1fr;
  }
  .visit-panel {
    align-items: start;
  }
  .footer__main, .footer__bottom {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    display: grid;
  }
}
.analytics-consent{position:fixed;z-index:10000;left:1rem;right:1rem;bottom:1rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;max-width:64rem;margin:auto;padding:1rem 1.25rem;background:#fff;color:#333;border:1px solid rgba(0,0,0,.16);border-radius:.5rem;box-shadow:0 12px 35px rgba(0,0,0,.2)}
.analytics-consent p{margin:0;max-width:40rem}
.analytics-consent div{display:flex;flex-wrap:wrap;gap:.5rem}
.analytics-consent button{font:inherit;padding:.65rem .85rem;border:1px solid currentColor;border-radius:999px;background:#fff;color:#333;cursor:pointer}
.analytics-consent button:last-child{background:#333;color:#fff}
@media(max-width:700px){.analytics-consent{align-items:stretch;flex-direction:column}.analytics-consent div{display:grid}}
