:root {
  --navy: #0d3247;
  --navy-deep: #081f2c;
  --navy-mid: #16445c;
  --silver: #7a8084;
  --silver-soft: #c5c9cc;
  --line: rgba(13, 50, 71, 0.1);
  --porcelain: #f5f6f7;
  --mist: #eef1f3;
  --sand: #d9ddd8;
  --ink: #12232c;
  --white: #ffffff;
  --radius: 22px;
  --nav-h: 84px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: Outfit, sans-serif;
  color: var(--ink);
  background: var(--porcelain);
  line-height: 1.6;
  font-weight: 400;
}

body.is-loading,
body.is-menu-open,
body.site-inactive {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font-family: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 10000;
  background: var(--white);
  padding: 8px 14px;
}

.skip:focus {
  left: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-solid {
  background: var(--navy);
  color: var(--white);
}

.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(13, 50, 71, 0.22);
}

.btn-light {
  background: var(--white);
  color: var(--navy-deep);
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: rgba(13, 50, 71, 0.04);
}

.btn--small {
  padding: 10px 18px;
  margin-top: 14px;
}

.btn:focus-visible,
.nav__links a:focus-visible,
.nav__toggle:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--navy-mid);
  outline-offset: 3px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-mid);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.chip::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy-mid);
}

.chip--dark,
.chip--on-sand {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.chip--on-sand {
  background: rgba(13, 50, 71, 0.08);
  color: var(--navy);
}

.oval {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  padding: 0 0.28em 0.08em;
  border: 1.5px solid var(--silver-soft);
  border-radius: 50% 45% 50% 45%;
  white-space: nowrap;
}

.oval--light {
  color: var(--white);
  border-color: var(--silver-soft);
}

h1,
h2,
h3 {
  font-family: Outfit, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--navy-deep);
  line-height: 1.12;
}

/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  width: min(260px, 72vw);
  height: auto;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 16px;
}

/* SITE GATE */
.site-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 31, 44, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.site-gate__card {
  width: min(100%, 440px);
  padding: 40px 32px 36px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--silver-soft);
  box-shadow: 0 28px 64px rgba(8, 31, 44, 0.28);
}

.site-gate__logo {
  width: min(240px, 72vw);
  height: auto;
  margin: 0 auto 28px;
}

.site-gate__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 4.5vw, 1.85rem);
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.site-gate__desc {
  font-size: 15px;
  font-weight: 300;
  color: #4c5b62;
  line-height: 1.55;
  max-width: 36ch;
  margin: 0 auto;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 18px 0;
}

.nav__bar {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 16px 12px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(13, 50, 71, 0.08);
}

.nav__brand img {
  width: 158px;
  height: auto;
}

.nav__links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b656b;
}

.nav__links a.is-active,
.nav__links a:hover {
  color: var(--navy);
}

.nav__links a.is-active {
  text-decoration: underline;
  text-underline-offset: 7px;
  text-decoration-thickness: 1.5px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
}

/* HERO */
.hero {
  max-width: 1240px;
  margin: 18px auto 0;
  padding: 0 18px 24px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.hero__copy,
.about__copy,
.about__media,
.hero__media {
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  max-width: 12ch;
  margin-bottom: 20px;
}

.word-swap {
  display: block;
  position: relative;
  height: 1.2em;
  margin-top: 6px;
}

.word-swap__word {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  padding: 0 0.2em 0.06em;
  border: 1.5px solid var(--silver-soft);
  border-radius: 50% 45% 50% 45%;
}

.word-swap__word.is-active {
  opacity: 1;
  transform: translateY(0);
}

.hero__copy {
  padding: 56px 28px 48px 36px;
}

.lead {
  max-width: min(42ch, 100%);
  color: #4c5b62;
  font-weight: 300;
  font-size: 17px;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__media {
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--mist);
}

.hero__media picture,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 55% center;
}

/* ABOUT */
.about {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about__media {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--mist);
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}

.about h2,
.featured h2,
.why h2,
.areas h2,
.team h2,
.booking h2,
.faq h2 {
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  margin-bottom: 18px;
}

.about p,
.card p,
.team__bio p,
.faq details p,
.accordion details p {
  color: #4c5b62;
  font-weight: 300;
}

.checks {
  list-style: none;
  margin: 22px 0 28px;
  display: grid;
  gap: 12px;
}

.checks li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-size: 15px;
}

.checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%230d3247' stroke-width='1.8' d='M2.5 8.2 6.2 12 13.5 4'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* FEATURED */
.featured,
.areas,
.faq {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 18px 80px;
}

.section-intro {
  text-align: center;
  margin-bottom: 36px;
}

.section-intro h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  box-shadow: 0 10px 40px rgba(13, 50, 71, 0.05);
  border: 1px solid rgba(13, 50, 71, 0.05);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  margin-bottom: 18px;
}

.card__icon svg {
  width: 30px;
  height: 30px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card ul {
  list-style: none;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: #6b757b;
  font-size: 14px;
  display: grid;
  gap: 8px;
}

.card ul li::before {
  content: '· ';
  color: var(--navy);
  font-weight: 700;
}

/* WHY */
.why {
  max-width: 1240px;
  margin: 0 auto 48px;
  padding: 56px 40px;
  border-radius: 32px;
  background: var(--navy-deep);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.why h2 {
  color: var(--white);
  max-width: 12ch;
}

.accordion details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.accordion summary,
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 36px 18px 0;
  font-weight: 500;
  position: relative;
}

.accordion summary::-webkit-details-marker,
.faq summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after,
.faq summary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}

details[open] > summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.accordion details p,
.faq details p {
  padding: 0 8px 18px 0;
  max-width: 62ch;
}

.accordion details p {
  color: #c5d0d5;
}

/* AREAS */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.area {
  position: relative;
  display: block;
  min-height: 340px;
  height: 42vh;
  max-height: 420px;
  border-radius: 22px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.area picture,
.area img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.area img {
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.area:nth-child(1) img { object-position: 50% 45%; }
.area:nth-child(2) img { object-position: 50% 40%; }
.area:nth-child(3) img { object-position: 50% 35%; }
.area:nth-child(4) img { object-position: center; }

.area::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 31, 44, 0.7) 0%, rgba(8, 31, 44, 0.08) 48%, transparent 100%);
  z-index: 1;
}

.area__label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.area:hover img {
  transform: scale(1.06);
}

.area:hover {
  transform: translateY(-4px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* TEAM */
.team {
  margin: 0 18px 72px;
  padding: 64px 18px 72px;
  border-radius: 32px;
  background: var(--mist);
}

.team .section-intro h2 {
  color: var(--navy-deep);
}

.team__card {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(13, 50, 71, 0.12);
}

.team__photo {
  min-height: 460px;
}

.team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}

.team__bio {
  padding: 36px 36px 36px 8px;
}

.team__bio h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.creds {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 26px;
}

.creds li {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--navy);
}

/* BOOKING */
.booking {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px 80px;
}

.booking__panel {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  padding: 40px;
  border-radius: 32px;
  background: var(--navy-deep);
  color: var(--white);
}

.booking h2 {
  color: var(--white);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 22px 0 24px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-list__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--white);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-list__icon svg {
  width: 20px;
  height: 20px;
}

.contact-list strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.contact-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-box {
  position: relative;
  width: 100%;
  min-height: 220px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
}

.booking__map {
  min-height: 320px;
}

.booking__copy .btn--large {
  width: 100%;
  max-width: 360px;
  margin-top: 8px;
  padding: 16px 28px;
}

.map-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 48px;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

/* FOOTER */
footer {
  background: var(--porcelain);
  padding: 48px 32px 28px;
  color: #4c5b62;
}

.footer__grid {
  max-width: 1240px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer__logo {
  width: 170px;
  height: auto;
  margin-bottom: 10px;
}

.footer__tag {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 16px;
}

footer strong {
  display: block;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.footer__grid a {
  display: block;
  margin-top: 6px;
}

.footer__grid a:hover {
  color: var(--navy);
}

.footer__copy {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--left { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal--left.is-visible,
.reveal--right.is-visible { transform: none; }

.cards .reveal--stagger:nth-child(1),
.areas__grid .reveal--stagger:nth-child(1) { transition-delay: 0.05s; }
.cards .reveal--stagger:nth-child(2),
.areas__grid .reveal--stagger:nth-child(2) { transition-delay: 0.12s; }
.cards .reveal--stagger:nth-child(3),
.areas__grid .reveal--stagger:nth-child(3) { transition-delay: 0.19s; }
.areas__grid .reveal--stagger:nth-child(4) { transition-delay: 0.26s; }

@media (max-width: 980px) {
  .hero,
  .about,
  .why,
  .team__card,
  .booking__panel,
  .faq__grid,
  .footer__grid,
  .cards {
    grid-template-columns: 1fr;
  }

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

  .area {
    height: 260px;
    min-height: 240px;
    max-height: none;
  }

  .hero {
    padding-top: 8px;
  }

  .hero__copy {
    padding: 24px 4px 8px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.7rem, 7.2vw, 2.25rem);
  }

  .hero__media {
    min-height: 380px;
    max-height: 520px;
    order: -1;
  }

  .about__media {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .why,
  .booking__panel,
  .team {
    padding: 32px 20px;
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 24px;
  }

  .team__bio {
    padding: 8px 22px 28px;
  }

  .team__photo {
    min-height: 380px;
  }

  .nav__links {
    position: fixed;
    inset: 90px 14px auto;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(13, 50, 71, 0.16);
  }

  body.is-menu-open .nav__links {
    display: flex;
  }

  .nav__links a {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav .btn-solid {
    display: none;
  }

}

@media (max-width: 640px) {
  .nav {
    padding: 10px 10px 0;
  }

  .nav__brand img {
    width: 132px;
  }

  .hero__media {
    min-height: 280px;
    height: 48vh;
    max-height: 380px;
    border-radius: 20px;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    line-height: 1.18;
  }

  .lead {
    font-size: 15.5px;
  }

  .cta-row .btn {
    width: 100%;
  }

  .featured,
  .areas,
  .faq,
  .about {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .word-swap__word,
  .btn,
  .area {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
