@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --navy: #071321;
  --navy2: #0d1c2e;
  --gold: #c9a45b;
  --ivory: #f4f0e7;
  --text: #e9e5dc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

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

/* =========================
   HEADER
========================= */

.topbar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
  background: linear-gradient(#06111ddd, transparent);
}

.brand {
  display: flex;
  flex-direction: column;
  letter-spacing: .28em;
}

.brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  color: var(--gold);
}

.brand small {
  font-size: 8px;
  letter-spacing: .45em;
  color: var(--gold);
  margin-top: 3px;
}

.nav-cta {
  border: 1px solid #c9a45b99;
  padding: 11px 17px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .18em;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    #06101de8 0%,
    #06101d88 48%,
    #06101d22 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  padding: 0 8vw 12vh;
}

.eyebrow {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.hero h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: .95;
}

.hero h1 {
  font-size: clamp(60px, 9vw, 118px);
  margin: 0;
  color: var(--ivory);
}

em {
  font-style: normal;
  color: var(--gold);
}

.lead {
  font-size: 19px;
  letter-spacing: .05em;
  margin: 28px 0;
}

.button {
  display: inline-block;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #081321;
  padding: 15px 24px;
  font: 500 10px Montserrat, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}

.micro {
  font-size: 9px;
  opacity: .65;
  margin-top: 14px;
}

/* =========================
   SECTIONS
========================= */

.section {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 8vw;
  overflow: hidden;
}

/* =========================
   INTRO
========================= */

.intro {
  background: var(--ivory);
  color: #122033;
  text-align: center;
}

.intro h2 {
  font-size: clamp(45px, 6vw, 78px);
  max-width: 900px;
  margin: 0 auto;
}

.intro h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  color: #92743a;
}

.intro > p:last-child {
  max-width: 720px;
  margin: 28px auto;
  line-height: 1.9;
}

.goldline {
  width: 55px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto !important;
}

/* =========================
   EXPERIENCE PRIVÉE
========================= */

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  align-items: center;
  background: var(--navy2);
}

.image-wrap {
  width: 100%;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  display: block;
  max-height: 700px;
  object-fit: cover;
}

.copy h2,
.dark h2,
.reservation h2 {
  font-size: clamp(50px, 6vw, 88px);
  margin: 0 0 30px;
}

.copy > p:not(.eyebrow) {
  line-height: 1.9;
  max-width: 560px;
}

.features {
  display: flex;
  gap: 35px;
  margin-top: 45px;
}

.features div {
  display: flex;
  flex-direction: column;
}

.features b {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: var(--gold);
}

.features span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

/* =========================
   DARK SECTION
========================= */

.dark {
  background: #040b14;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 55px;
}

.cards article {
  border-top: 1px solid #c9a45b66;
  padding-top: 20px;
}

.cards span {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: .2em;
}

.cards h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  margin: 20px 0 10px;
}

.cards p {
  font-size: 13px;
  line-height: 1.8;
  color: #aeb5bd;
}

/* =========================
   IMAGE CANAL
========================= */

.image-section {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 80vh;
  min-height: 600px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.image-section picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
}

.image-section picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    #06111dcc,
    #06111d33
  );
}

.overlay-copy {
  position: absolute;
  z-index: 2;
  left: 8vw;
  top: 50%;
  transform: translateY(-50%);
}

.overlay-copy h2 {
  font-size: clamp(60px, 8vw, 110px);
  margin: 0;
}

/* =========================
   RÉSERVATION
========================= */

.reservation {
  background: var(--ivory);
  color: #101c2a;
}

.reservation > p:not(.eyebrow):not(.legal) {
  max-width: 700px;
  line-height: 1.9;
}

.interest-form {
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.interest-form label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  border: 1px solid #bbc0c4;
  background: transparent;
  font: inherit;
  color: #101c2a;
}

.interest-form select {
  appearance: auto;
}

.interest-form textarea {
  resize: vertical;
}

.interest-form fieldset {
  grid-column: 1 / -1;
  border: 1px solid #bbc0c4;
  padding: 20px;
  margin: 0;
}

.interest-form fieldset label {
  display: block;
  margin: 10px 0;
  text-transform: none;
  letter-spacing: normal;
  font-size: 12px;
}

.interest-form fieldset input {
  display: inline-block;
  width: auto;
  margin: 0 8px 0 0;
  padding: 0;
}

.interest-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.rgpd-box {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding: 20px;
  border-top: 1px solid #c9a45b66;
  border-bottom: 1px solid #c9a45b66;
  font-size: 11px;
  line-height: 1.7;
}

.rgpd-box p {
  margin: 0 0 12px;
}

.rgpd-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 11px !important;
}

.rgpd-check input {
  width: auto !important;
  margin: 3px 0 0 !important;
}

.rgpd-check a {
  color: #92743a;
  text-decoration: underline;
}

.legal {
  font-size: 9px;
  opacity: .6;
  max-width: 720px;
  margin-top: 20px;
  line-height: 1.6;
}

/* =========================
   FOOTER
========================= */

footer {
  position: relative;
  z-index: 2;
  padding: 60px 8vw;
  border-top: 1px solid #c9a45b33;
  text-align: center;
}

footer .brand {
  align-items: center;
}

footer p {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: #bfc4ca;
}

/* =========================
   TABLETTE
========================= */

@media (max-width: 800px) {

  .topbar {
    padding: 17px 5vw;
  }

  .brand span {
    font-size: 22px;
  }

  .nav-cta {
    padding: 9px 11px;
  }

  .hero {
    height: 100svh;
    min-height: 680px;
    align-items: flex-end;
  }

  .hero-content {
    padding: 0 7vw 10vh;
  }

  .hero h1 {
    font-size: clamp(54px, 15vw, 76px);
    line-height: .92;
  }

  .lead {
    font-size: 16px;
    line-height: 1.5;
    max-width: 400px;
  }

  .section {
    padding: 85px 7vw;
  }

  .intro h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .intro h3 {
    font-size: 28px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .copy h2,
  .dark h2,
  .reservation h2 {
    font-size: clamp(48px, 13vw, 68px);
  }

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

  .interest-form {
    grid-template-columns: 1fr;
  }

  .interest-form fieldset,
  .interest-form button,
  .interest-form .rgpd-box {
    grid-column: auto;
  }

  .interest-form fieldset,
  .rgpd-box {
    grid-column: 1 / -1;
  }

  .image-section {
    height: 72vh;
    min-height: 520px;
  }

  .overlay-copy {
    left: 7vw;
    right: 7vw;
  }

  .overlay-copy h2 {
    font-size: clamp(52px, 14vw, 78px);
  }

  .features {
    gap: 22px;
    flex-wrap: wrap;
  }
}

/* =========================
   PETIT MOBILE
========================= */

@media (max-width: 480px) {

  .topbar {
    padding: 15px 5vw;
  }

  .brand span {
    font-size: 20px;
  }

  .brand small {
    font-size: 7px;
  }

  .nav-cta {
    font-size: 8px;
    padding: 8px 10px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 0 6vw 8vh;
  }

  .hero h1 {
    font-size: 55px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: .25em;
    margin-bottom: 17px;
  }

  .lead {
    font-size: 15px;
    margin: 22px 0;
  }

  .button {
    padding: 14px 18px;
    font-size: 9px;
  }

  .section {
    padding: 70px 6vw;
  }

  .intro h2 {
    font-size: 43px;
  }

  .intro h3 {
    font-size: 25px;
  }

  .copy h2,
  .dark h2,
  .reservation h2 {
    font-size: 48px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .image-section {
    height: 65vh;
    min-height: 480px;
  }

  .overlay-copy h2 {
    font-size: 54px;
  }

  .features {
    gap: 18px;
  }

  .features b {
    font-size: 32px;
  }

  .features span {
    font-size: 8px;
  }

  .rgpd-box {
    padding: 15px;
  }
}.experience-interior {
  background: var(--navy);
  padding: 90px 7vw;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.experience-interior img {
  display: block;
  width: min(100%, 900px);
  height: auto;
  border-radius: 2px;
}

@media (max-width: 800px) {
  .experience-interior {
    padding: 55px 0;
  }

  .experience-interior img {
    width: 100%;
    border-radius: 0;
  }
}.skipper-section {
  background: var(--navy);
  padding: 90px 7vw;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.skipper-section img {
  display: block;
  width: min(100%, 900px);
  height: auto;
  border-radius: 2px;
}

@media (max-width: 800px) {
  .skipper-section {
    padding: 55px 0;
  }

  .skipper-section img {
    width: 100%;
    border-radius: 0;
  }

  header {
    position: absolute;
  }
}