:root {
  --cream: #fbf3ed;
  --cream-light: #fffaf6;
  --sand: #ead4c6;
  --blush: #c98278;
  --blush-light: #e2aaa0;
  --terracotta: #b86f62;
  --olive: #4f513c;
  --olive-dark: #333622;
  --charcoal: #33312b;
  --muted: #756f66;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(80, 61, 47, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(226, 170, 160, 0.28), transparent 34rem),
    linear-gradient(180deg, var(--cream-light), var(--cream));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 246, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 111, 98, 0.14);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
}

.brand-script {
  font-family: "Parisienne", cursive;
  color: var(--blush);
  font-size: 1.5rem;
  margin-left: 4px;
}

.brand-main {
  font-family: "Cormorant Garamond", serif;
  color: var(--olive-dark);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--olive);
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--olive-dark);
  margin: 5px 0;
  transition: 180ms ease;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}

.hero-content {
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  color: var(--olive-dark);
  font-size: clamp(4rem, 8vw, 7.6rem);
  line-height: 0.85;
  letter-spacing: -0.065em;
  margin-bottom: 28px;
}

h1 span {
  display: block;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--olive-dark);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

h3 {
  color: var(--olive-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.hero-copy,
.section-heading p,
.about-card p,
.booking-content p,
.service-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 580px;
  font-size: 1.05rem;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--olive-dark);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(51, 54, 34, 0.22);
}

.btn-primary:hover {
  background: var(--olive);
}

.btn-secondary {
  color: var(--olive-dark);
  border: 1px solid rgba(79, 81, 60, 0.22);
  background: rgba(255, 255, 255, 0.55);
}

.hero-art {
  min-height: 530px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(234, 212, 198, 0.26)),
    var(--cream);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.sun-arch {
  position: absolute;
  width: 290px;
  height: 260px;
  border: 4px solid var(--blush-light);
  border-bottom: none;
  border-radius: 190px 190px 0 0;
  left: 100px;
  top: 62px;
  opacity: 0.8;
}

.palm {
  position: absolute;
}

.palm-left {
  left: 80px;
  top: 134px;
}

.trunk {
  width: 12px;
  height: 170px;
  background: linear-gradient(90deg, #4c4c35, #77734d);
  border-radius: 999px;
  transform: rotate(-8deg);
  transform-origin: bottom;
  margin-left: 70px;
  margin-top: 62px;
}

.palm span {
  position: absolute;
  width: 112px;
  height: 25px;
  background: var(--olive);
  border-radius: 100% 0 100% 0;
  transform-origin: left center;
  top: 55px;
  left: 72px;
}

.palm span:nth-child(2) {
  transform: rotate(-15deg);
}

.palm span:nth-child(3) {
  transform: rotate(-50deg);
}

.palm span:nth-child(4) {
  transform: rotate(-90deg);
}

.palm span:nth-child(5) {
  transform: rotate(-130deg);
}

.palm span:nth-child(6) {
  transform: rotate(-170deg);
}

.cabana {
  position: absolute;
  left: 250px;
  top: 190px;
  width: 250px;
  height: 220px;
}

.roof {
  width: 250px;
  height: 92px;
  background: linear-gradient(180deg, #caa064, #af7c47);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: relative;
}

.roof::after {
  content: "";
  position: absolute;
  inset: 52px 22px 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(78, 55, 32, 0.25) 0 2px,
    transparent 2px 23px
  );
}

.frame {
  position: absolute;
  left: 34px;
  top: 88px;
  width: 182px;
  height: 126px;
  border-left: 8px solid #8a643d;
  border-right: 8px solid #8a643d;
  border-bottom: 8px solid #8a643d;
  background: rgba(255, 247, 241, 0.7);
}

.curtain {
  position: absolute;
  top: 0;
  width: 64px;
  height: 112px;
  background: rgba(226, 170, 160, 0.42);
  filter: blur(0.2px);
}

.curtain-left {
  left: 0;
  clip-path: polygon(0 0, 100% 0, 42% 100%, 0 100%);
}

.curtain-right {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 58% 100%);
}

.lounger {
  position: absolute;
  left: 54px;
  bottom: 28px;
  width: 80px;
  height: 26px;
  background: var(--blush-light);
  border-radius: 18px 18px 6px 6px;
}

.plant {
  position: absolute;
  right: 88px;
  bottom: 110px;
  width: 42px;
  height: 74px;
  background: var(--olive);
  clip-path: polygon(
    44% 100%,
    42% 35%,
    0 10%,
    42% 28%,
    24% 0,
    50% 26%,
    76% 0,
    58% 30%,
    100% 12%,
    60% 38%,
    58% 100%
  );
}

.plant::after {
  content: "";
  position: absolute;
  left: 6px;
  bottom: -22px;
  width: 50px;
  height: 36px;
  background: #c79564;
  border-radius: 3px 3px 12px 12px;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.contact-card,
.about-card,
.booking-card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(184, 111, 98, 0.14);
  box-shadow: 0 20px 45px rgba(80, 61, 47, 0.08);
}

.services-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.service-card {
  border-radius: var(--radius-md);
  padding: 28px;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(184, 111, 98, 0.14);
  box-shadow: 0 20px 45px rgba(80, 61, 47, 0.08);
}

.service-card-featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(234, 212, 198, 0.38));
}

.service-card-label {
  margin: 0 0 12px;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-card p {
  margin-bottom: 0;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.services-faq {
  margin-top: 18px;
}

.faq-card {
  display: block;
  grid-column: 1 / -1;
}

.faq-card details {
  padding: 16px 0;
  border-top: 1px solid rgba(184, 111, 98, 0.14);
}

.faq-card details:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--olive-dark);
}

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

.faq-card summary::after {
  content: "+";
  float: right;
  color: var(--terracotta);
}

.faq-card details[open] summary::after {
  content: "−";
}

.faq-card p {
  margin: 10px 0 0;
}

.about-card {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 38px;
  align-items: center;
}

.about-highlight {
  min-height: 230px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(rgba(51, 54, 34, 0.68), rgba(51, 54, 34, 0.68)),
    radial-gradient(circle at top, var(--blush-light), var(--olive));
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.about-highlight span {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 8px;
}

.about-highlight strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  line-height: 0.95;
}

.booking-card {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 36px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(234, 212, 198, 0.42));
}

.booking-button {
  margin-top: 12px;
}

.booking-note {
  font-size: 0.86rem;
  margin-top: 16px;
}

.booking-panel {
  background: var(--olive-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
}

.booking-panel h3 {
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.booking-panel ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.booking-panel li {
  margin: 14px 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

a.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(80, 61, 47, 0.13);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--olive-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  font-size: 1.35rem;
}

.contact-card strong {
  display: block;
  color: var(--olive-dark);
  margin-bottom: 4px;
}

.contact-card p {
  margin: 0;
}

.footer {
  padding: 36px 16px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(184, 111, 98, 0.14);
}

.footer span {
  color: var(--olive-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 48px;
  }

  .hero-art {
    order: -1;
    min-height: 430px;
  }

  .contact-grid,
  .about-card,
  .booking-card {
    grid-template-columns: 1fr;
  }

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

  .service-card-featured,
  .faq-card {
    grid-column: auto;
  }

  .about-highlight {
    min-height: 180px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    background: var(--cream-light);
    border: 1px solid rgba(184, 111, 98, 0.16);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brand-main {
    font-size: 1.65rem;
  }

  .section {
    padding: 68px 0;
  }

  .hero-art {
    min-height: 360px;
  }

  .sun-arch {
    left: 38px;
    top: 44px;
    width: 230px;
    height: 210px;
  }

  .palm-left {
    left: 28px;
    top: 104px;
    transform: scale(0.78);
    transform-origin: left top;
  }

  .cabana {
    left: 148px;
    top: 154px;
    transform: scale(0.72);
    transform-origin: left top;
  }

  .plant {
    right: 46px;
    bottom: 82px;
    transform: scale(0.8);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-card {
    padding: 22px;
  }

  .service-card h3 {
    font-size: 1.18rem;
  }

  .faq-card details {
    padding: 14px 0;
  }
}
