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

:root {
  --cream: #f8efe7;
  --cream-light: #fdf7f1;
  --coral: #e56b4c;
  --coral-soft: #f2b19f;
  --blue: #46656d;
  --blue-dark: #36535b;
  --text: #4f4a48;
  --line: rgba(68, 89, 95, .10);
  --shadow: 0 18px 60px rgba(64, 49, 42, .10);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, var(--cream-light), var(--cream));
  color: var(--blue-dark);
  font-family: Montserrat, Arial, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  height: 86px;
  background: rgba(253, 247, 241, .95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.logo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 700;
}
.nav a {
  position: relative;
  padding: 14px 0;
  color: var(--blue);
}
.nav a.active,
.nav a:hover {
  color: var(--coral);
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54px;
  height: 10px;
  transform: translateX(-50%);
  background: url("assets/wave-coral.svg") center / contain no-repeat;
}
.book-pill {
  padding: 14px 22px !important;
  border-radius: 999px;
  background: var(--coral);
  color: white !important;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-water {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.06), rgba(255,255,255,.28)),
    url("assets/hero-water.png") center top / cover repeat-y;
}
.hero::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -1px;
  height: 78px;
  background: var(--cream);
  clip-path: polygon(0 54%, 7% 74%, 16% 50%, 24% 74%, 33% 50%, 42% 74%, 51% 50%, 60% 73%, 69% 50%, 78% 73%, 87% 49%, 95% 72%, 100% 57%, 100% 100%, 0 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 70px 24px 114px;
  max-width: 950px;
}
.hero-logo {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
h1, h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--blue);
}
h1 {
  font-size: clamp(68px, 10vw, 112px);
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: .92;
}
.script-line {
  margin: 10px 0 8px;
  font-family: Sacramento, cursive;
  font-size: clamp(40px, 5vw, 66px);
  color: var(--coral);
  line-height: 1;
}
.wave-divider {
  width: 76px;
  margin: 8px auto 18px;
}
.hero-copy {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--text);
  font-size: 23px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: 12px;
}
.button.coral {
  background: var(--coral);
  color: white;
}

.split-section,
.hats-section,
.newsletter,
.footer-top {
  width: min(1200px, calc(100% - 44px));
  margin: 0 auto;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255,255,255,.9);
}
.text-panel {
  text-align: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .36em;
  font-weight: 700;
}
h2 {
  font-size: clamp(56px, 6vw, 84px);
  line-height: .95;
}
.icon-shell {
  width: 58px;
  margin: 0 auto 18px;
}
.icon-palm {
  width: 36px;
  margin: 0 auto 18px;
}
.wave-small {
  width: 66px;
  margin: 16px auto 18px;
}
.description {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.3;
}
.image-panel {
  border-radius: 26px;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.image-panel img {
  width: 100%;
  height: auto;
}
.private-section {
  position: relative;
}
.palm-outline {
  position: absolute;
  right: -8px;
  bottom: -10px;
  width: min(240px, 25vw);
  opacity: .42;
  pointer-events: none;
}

.hats-section {
  padding: 24px 0 40px;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}
.section-title img {
  width: 72px;
}
.section-title p {
  margin: 0;
  color: var(--coral);
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .38em;
  font-weight: 700;
}
.hat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  align-items: end;
}
.hat-card img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.newsletter {
  margin-top: 12px;
  margin-bottom: 20px;
  padding: 20px 26px;
  background: linear-gradient(90deg, #f4b9a6, #f1aa96);
  color: white;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.newsletter-shell {
  width: 66px;
  opacity: .9;
}
.newsletter p {
  margin: 0;
  font-family: Sacramento, cursive;
  font-size: 36px;
}
.newsletter form {
  display: flex;
  gap: 0;
  width: min(430px, 100%);
}
.newsletter input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 0;
  border-radius: 999px 0 0 999px;
  padding: 0 20px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.newsletter button {
  height: 46px;
  border: 0;
  margin-left: -20px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--coral);
  color: white;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
}

.footer-top {
  padding: 34px 0 42px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  align-items: start;
  gap: 34px;
}
.brand-block img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-title {
  margin: 14px 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  color: var(--blue);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand-block p,
.contact-block p,
.contact-block a {
  color: var(--blue-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
}
.contact-block h3,
.links-block h3 {
  margin: 0 0 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 14px;
}
.contact-block a {
  display: block;
  margin-bottom: 10px;
}
.link-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
.link-columns a {
  text-transform: uppercase;
  color: var(--blue);
  font-size: 13px;
  letter-spacing: .12em;
}
.footer-palm {
  width: 150px;
  opacity: .55;
}
.copyright {
  min-height: 54px;
  display: grid;
  place-items: center;
  background: var(--blue-dark);
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}
.copyright span { margin: 0 14px; }

@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 4px;
    background: var(--cream-light);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px; }
  .split-section,
  .footer-top,
  .newsletter {
    grid-template-columns: 1fr;
  }
  .hat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .newsletter {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 720px) {
  .site-header { padding: 0 18px; }
  h1 { font-size: clamp(46px, 15vw, 78px); letter-spacing: .06em; }
  .hero { min-height: 500px; }
  .hero-content { padding-bottom: 104px; }
  .split-section,
  .hats-section,
  .newsletter,
  .footer-top {
    width: calc(100% - 24px);
  }
  .description,
  .brand-block p,
  .contact-block p,
  .contact-block a {
    font-size: 21px;
  }
  .section-title {
    gap: 8px;
  }
  .section-title img {
    width: 42px;
  }
  .section-title p {
    font-size: 12px;
    letter-spacing: .2em;
  }
  .hat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter p {
    font-size: 26px;
  }
  .newsletter form {
    width: 100%;
  }
  .link-columns {
    grid-template-columns: 1fr;
  }
}
