:root {
  --bg: #f5efe4;
  --bg-soft: #efe4d1;
  --surface: rgba(255, 250, 242, 0.74);
  --surface-strong: #fff9f0;
  --text: #1f2a1f;
  --muted: #556255;
  --line: rgba(31, 42, 31, 0.1);
  --forest: #31513d;
  --forest-deep: #20392b;
  --sand: #d5b57a;
  --shadow: 0 24px 60px rgba(40, 47, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(213, 181, 122, 0.22), transparent 28%),
    linear-gradient(180deg, #f8f1e7 0%, #f3ecdf 35%, #ebe1d0 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(49, 81, 61, 0.08), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 30%);
}

.page-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
}

.hero,
.highlights,
.experience,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 249, 240, 0.92), rgba(250, 242, 230, 0.84));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 81, 61, 0.2), transparent 70%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.4rem;
  align-items: end;
}

.brand,
.nav-link,
.button {
  text-decoration: none;
}

.brand {
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.nav-link {
  color: var(--forest);
  font-weight: 600;
}

.topbar-button {
  min-height: 2.9rem;
}

.hero-content {
  padding: 5rem 0 4rem;
  width: min(720px, 100%);
}

.hero-visual {
  position: relative;
  padding: 1.1rem 0 1.1rem 1.1rem;
}

.hero-photo {
  margin: 0;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(32, 57, 43, 0.12);
  box-shadow: 0 28px 50px rgba(32, 57, 43, 0.2);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: min(19rem, calc(100% - 2.5rem));
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 249, 240, 0.92);
  border: 1px solid rgba(32, 57, 43, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(32, 57, 43, 0.16);
}

.hero-note p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.eyebrow,
.section-label,
.card-label {
  margin: 0 0 1rem;
  color: var(--forest);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  margin: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.9rem;
}

.experience-copy h2 {
  font-size: clamp(2.5rem, 4.1vw, 4.5rem);
  max-width: 10ch;
}

.intro,
.card p,
.experience-copy p,
.footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.intro {
  margin: 1.5rem 0 0;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--forest-deep);
  color: #fff;
  box-shadow: 0 14px 30px rgba(32, 57, 43, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--forest-deep);
  border: 1px solid rgba(32, 57, 43, 0.12);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--forest-deep);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card,
.experience,
.footer {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.5rem;
  border-radius: 28px;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(49, 81, 61, 0.22);
  box-shadow: 0 28px 62px rgba(40, 47, 35, 0.16);
}

.card h2 {
  max-width: 11ch;
}

.accent-card {
  background: linear-gradient(180deg, rgba(49, 81, 61, 0.92), rgba(32, 57, 43, 0.96));
}

.accent-card,
.accent-card p,
.accent-card .card-label,
.accent-card h2 {
  color: #f5efe4;
}

.wellness-card {
  background:
    radial-gradient(circle at top, rgba(213, 181, 122, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(255, 249, 240, 0.95), rgba(240, 233, 220, 0.9));
}

.wellness-visual {
  margin-top: 1.2rem;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.78);
  border: 1px solid rgba(32, 57, 43, 0.08);
}

.wellness-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.map-card {
  margin-top: 1.15rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 32px rgba(14, 27, 20, 0.24);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 250px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 30px;
  margin-top: 1rem;
}

.experience-link {
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.experience-link:hover,
.experience-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(49, 81, 61, 0.22);
  box-shadow: 0 28px 62px rgba(40, 47, 35, 0.16);
}

.experience-link-text {
  margin-top: 1.1rem;
}

.footer {
  margin-top: 1rem;
  padding: 1.3rem 1.5rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer a {
  color: var(--forest-deep);
  font-weight: 700;
}

.gallery-page .page-shell {
  padding-bottom: 3rem;
}

.pricing-page .page-shell {
  padding-bottom: 3rem;
}

.contact-page .page-shell,
.references-page .page-shell {
  padding-bottom: 3rem;
}

.gallery-hero {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(49, 81, 61, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 249, 240, 0.95), rgba(242, 234, 220, 0.92));
  box-shadow: var(--shadow);
}

.gallery-intro {
  padding: 4.5rem 0 3rem;
  width: min(760px, 100%);
}

.gallery-main {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.reservation-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-placeholder-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  font-weight: 700;
}

.contact-map-section {
  margin-top: 1rem;
}

.contact-map-card iframe {
  min-height: 380px;
}

.references-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.reference-story-card {
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.84);
  box-shadow: var(--shadow);
}

.reference-story-card-accent {
  background: linear-gradient(180deg, rgba(49, 81, 61, 0.95), rgba(32, 57, 43, 0.98));
}

.reference-story-card-accent,
.reference-story-card-accent .card-label,
.reference-story-card-accent h2,
.reference-story-card-accent p {
  color: #f5efe4;
}

.reference-actions {
  margin-top: 1.25rem;
}

.references-gallery {
  margin-top: 0;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.gallery-image-beach {
  object-position: center 62%;
}

.gallery-item-wide {
  grid-column: 1 / -1;
}

.gallery-item-wide img {
  aspect-ratio: 16 / 9;
}

.gallery-item figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pricing-card {
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.84);
  box-shadow: var(--shadow);
}

.pricing-card-accent {
  background: linear-gradient(180deg, rgba(49, 81, 61, 0.95), rgba(32, 57, 43, 0.98));
}

.pricing-card-accent,
.pricing-card-accent .card-label,
.pricing-card-accent .price-row span,
.pricing-card-accent .price-row strong,
.pricing-card-accent .pricing-note {
  color: #f5efe4;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(32, 57, 43, 0.1);
}

.pricing-card-accent .price-row {
  border-bottom-color: rgba(255, 249, 240, 0.15);
}

.price-row span {
  color: var(--muted);
  font-weight: 600;
}

.price-row strong {
  color: var(--forest-deep);
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  text-align: right;
}

.pricing-note {
  margin: 1rem 0 0;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 840px) {
  .hero-grid,
  .highlights,
  .experience,
  .references-layout,
  .gallery-grid,
  .pricing-grid,
  .contact-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 4rem 0 1.2rem;
  }

  .hero-visual {
    padding: 0;
  }

  .hero-photo img {
    min-height: 22rem;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 0.9rem;
  }

  .footer {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 1rem, 1120px);
    padding-top: 0.5rem;
  }

  .hero,
  .card,
  .experience,
  .footer {
    border-radius: 22px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }
}
