:root {
  --bg: #f4ede0;
  --bg-soft: #efe3cf;
  --panel: rgba(255, 249, 238, 0.78);
  --panel-strong: rgba(252, 246, 236, 0.96);
  --forest: #1f2915;
  --forest-soft: #304020;
  --gold: #bb8a2b;
  --gold-soft: #d7b168;
  --text: #27311d;
  --muted: #5e6754;
  --line: rgba(31, 41, 21, 0.12);
  --shadow: 0 24px 60px rgba(31, 41, 21, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 177, 104, 0.26), transparent 24%),
    radial-gradient(circle at right 20%, rgba(31, 41, 21, 0.08), transparent 18%),
    linear-gradient(180deg, #f7f1e5 0%, #f3ead9 45%, #ecdfc7 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  top: 8rem;
  right: -6rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 138, 43, 0.2), transparent 65%);
}

.page-shell::after {
  bottom: 14rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 41, 21, 0.1), transparent 66%);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 237, 224, 0.72);
  border-bottom: 1px solid rgba(31, 41, 21, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy span,
.site-footer strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  margin-top: 0.15rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--forest);
}

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

.nav-cta {
  background: var(--forest);
  color: #f8f3e8;
}

.nav-cta:hover,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(31, 41, 21, 0.16);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(31, 41, 21, 0.08);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--forest);
  border-radius: 999px;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid,
.signature-grid,
.journey-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.78rem;
}

.hero h1,
.section-heading h2,
.signature-panel h2,
.journey-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  max-width: 10ch;
}

.hero-text,
.section-heading p,
.signature-panel p,
.contact-copy p,
.journey-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

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

.btn-primary {
  background: var(--forest);
  color: #f9f5ed;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.45);
  color: var(--forest);
  border: 1px solid rgba(31, 41, 21, 0.14);
}

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

.hero-highlights article,
.metrics article,
.experience-card,
.signature-panel,
.signature-list article,
.timeline article,
.testimonial-grid article,
.contact-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-highlights article {
  padding: 1.1rem;
  border-radius: var(--radius-md);
}

.hero-highlights strong,
.metrics strong,
.experience-card h3,
.stay-card h3,
.timeline h3 {
  display: block;
  margin-bottom: 0.45rem;
}

.hero-highlights span,
.metrics p,
.experience-card p,
.signature-list p,
.timeline p,
.testimonial-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: min(100%, 500px);
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(240, 228, 205, 0.86)),
    rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 32px 80px rgba(31, 41, 21, 0.18);
}

.floating-card {
  animation: drift 6s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.seal {
  padding: 0.8rem;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.7), rgba(215, 177, 104, 0.22)),
    var(--panel-strong);
}

.seal img {
  width: 100%;
}

.card-meta {
  padding: 1.25rem 0.5rem 0.25rem;
}

.card-meta p {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.card-meta h2 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
}

.card-meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.card-meta li::before {
  content: "•";
  color: var(--gold);
  margin-right: 0.45rem;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-badge {
  position: absolute;
  min-width: 170px;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(248, 242, 232, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.orbit-badge:first-child {
  top: 12%;
  left: -2%;
}

.orbit-badge:last-child {
  bottom: 12%;
  right: -1%;
}

.orbit-badge span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.orbit-badge strong {
  font-size: 1rem;
}

.section {
  padding: 2rem 0 5rem;
}

.metrics {
  padding: 1rem 0 2rem;
}

.metrics-grid,
.card-grid,
.signature-list,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}

.metrics-grid {
  grid-template-columns: repeat(3, 1fr);
}

.metrics article {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
}

.metrics span,
.card-number,
.timeline span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 620px;
}

.section-heading h2 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.experience-card,
.testimonial-grid article,
.timeline article,
.signature-panel,
.signature-list article,
.contact-card {
  border-radius: var(--radius-lg);
}

.experience-card {
  padding: 1.4rem;
}

.experience-card h3,
.timeline h3 {
  font-size: 1.3rem;
  margin: 0.55rem 0;
}

.experience-card a,
.inline-link {
  color: var(--forest);
  font-weight: 800;
}

.package-page {
  padding-bottom: 3rem;
}

.package-hero {
  padding: 4rem 0 2rem;
}

.package-hero-grid,
.package-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.package-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.package-mini-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.package-mini-facts span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 249, 238, 0.82);
  border: 1px solid rgba(31, 41, 21, 0.08);
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 700;
}

.package-price-banner,
.package-summary-card,
.detail-card,
.booking-meta > div {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.package-price-banner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0 0;
}

.package-price-banner.single-price,
.package-price-banner.package-on-request {
  grid-template-columns: 1fr;
  max-width: 320px;
}

.package-price-banner span,
.booking-meta span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.package-price-banner p,
.package-price-banner strong,
.booking-meta strong {
  margin: 0;
  color: var(--forest);
}

.package-price-banner p {
  font-size: 1.2rem;
}

.package-price-banner strong {
  font-size: 2rem;
}

.price-focus {
  padding: 0.5rem 0;
}

.package-summary-card,
.detail-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.package-summary-card img {
  width: min(100%, 240px);
  margin-bottom: 1rem;
}

.package-summary-card h2,
.detail-card h2,
.booking-heading h2 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.package-summary-card ul,
.detail-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.package-gallery-section {
  padding-top: 0;
}

.package-gallery {
  display: grid;
  gap: 1rem;
}

.carousel-stage {
  position: relative;
  padding: 0 4rem;
}

.carousel-viewport {
  min-width: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 249, 238, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  display: block;
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 520ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide figcaption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  margin: 0;
  padding: 0.95rem 1rem 1rem;
  color: #fff7eb;
  line-height: 1.6;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(31, 41, 21, 0.14), rgba(31, 41, 21, 0.84));
  backdrop-filter: blur(12px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 41, 21, 0.94);
  color: #f7efe0;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(31, 41, 21, 0.18);
}

.carousel-arrow.prev {
  left: 1rem;
}

.carousel-arrow.next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(31, 41, 21, 0.18);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--forest);
}

.carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
}

.thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  display: block;
}

.thumb.is-active {
  border-color: var(--gold);
}

.detail-stack {
  display: grid;
  gap: 1rem;
}

.booking-shell {
  position: sticky;
  top: 7rem;
}

.booking-panel {
  padding: 1.5rem;
}

.booking-heading p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.booking-form select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--text);
}

.booking-form select:focus {
  outline: 2px solid rgba(187, 138, 43, 0.3);
  border-color: rgba(187, 138, 43, 0.5);
}

.booking-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.3rem;
}

.booking-meta > div {
  border-radius: 18px;
  padding: 1rem;
}

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

.info-item {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(31, 41, 21, 0.08);
}

.info-item span,
.booking-note {
  color: var(--muted);
}

.info-item span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
}

.accent-card {
  background: linear-gradient(180deg, rgba(39, 49, 29, 0.94), rgba(51, 63, 35, 0.92));
  color: #f8f1e3;
}

.accent-card p,
.accent-card .detail-list,
.accent-card .note-copy {
  color: rgba(248, 241, 227, 0.82);
}

.note-copy {
  margin-bottom: 0;
  font-weight: 600;
}

.booking-note {
  margin: 0 0 1.1rem;
  line-height: 1.6;
}

.booking-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  font-weight: 700;
}

.booking-status[data-state="success"] {
  color: #1f6c37;
}

.booking-status[data-state="error"] {
  color: #9f2c2c;
}

.price-block {
  margin: 1rem 0 1.1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(31, 41, 21, 0.08);
}

.price-label {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.price-block p {
  margin: 0;
  color: var(--forest);
  font-size: 1.15rem;
}

.price-block s {
  color: var(--muted);
  margin-right: 0.45rem;
}

.price-block strong {
  font-size: 1.45rem;
}

.signature-panel,
.signature-list article,
.stay-card,
.timeline article,
.testimonial-grid article {
  padding: 1.5rem;
}

.signature-list {
  grid-template-columns: 1fr;
}

.journey-grid {
  align-items: start;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
  align-items: start;
}

.contact-card {
  padding: 1.5rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-card label {
  display: grid;
  gap: 0.5rem;
  font-weight: 700;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--text);
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: 2px solid rgba(187, 138, 43, 0.3);
  border-color: rgba(187, 138, 43, 0.5);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(31, 41, 21, 0.1);
  padding-top: 1.5rem;
}

.site-footer p,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .hero-grid,
  .package-hero-grid,
  .package-layout,
  .signature-grid,
  .journey-grid,
  .contact-grid,
  .card-grid,
  .testimonial-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .carousel-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(249, 244, 234, 0.95);
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 41, 21, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.2rem 0;
  }

  .nav-cta {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-grid,
  .package-hero-grid,
  .package-layout,
  .signature-grid,
  .journey-grid,
  .contact-grid,
  .card-grid,
  .testimonial-grid,
  .metrics-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .orbit-badge:first-child,
  .orbit-badge:last-child {
    position: static;
    margin-top: 1rem;
  }

  .hero-orbit {
    position: static;
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .hero h1,
  .package-copy h1,
  .section-heading h2,
  .signature-panel h2,
  .journey-copy h2,
  .contact-copy h2 {
    max-width: none;
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .brand-copy small {
    display: none;
  }

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

  .booking-shell {
    position: static;
  }

  .booking-meta,
  .package-price-banner,
  .info-grid,
  .carousel-thumbs {
    grid-template-columns: 1fr;
  }

  .carousel-stage {
    padding: 0;
  }

  .carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
    top: 44%;
  }

  .carousel-viewport {
    aspect-ratio: 4 / 5;
  }

  .carousel-slide figcaption {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.92rem;
  }

  .carousel-thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 118px;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
  }

  .thumb img {
    height: 74px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
