:root {
  color-scheme: light;
  --olive-900: #1f221b;
  --olive-800: #2f3329;
  --olive-700: #3b4032;
  --sage-100: #f5f2e8;
  --sage-200: #e6e0cf;
  --gold-300: #d7c6a1;
  --gold-400: #c3a66a;
  --accent: #f0d9a4;
  --white: #ffffff;
  --shadow: 0 24px 45px rgba(15, 18, 12, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--sage-100);
  color: var(--olive-900);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--olive-900);
  color: var(--sage-100);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-block img {
  width: 72px;
  height: auto;
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-tagline {
  color: var(--gold-300);
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--sage-100);
}

.nav-links a:hover {
  color: var(--accent);
}

.header-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: var(--gold-400);
  color: var(--olive-900);
  box-shadow: 0 10px 24px rgba(195, 166, 106, 0.3);
}

.secondary-button {
  background: var(--olive-800);
  color: var(--sage-100);
  border: 1px solid var(--gold-300);
}

.ghost-button {
  border: 1px solid rgba(245, 242, 232, 0.5);
  color: var(--sage-100);
  background: transparent;
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.primary-button.full,
.secondary-button.full {
  width: 100%;
}

.hero {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, #2d3128 0%, #1f221b 100%);
  color: var(--sage-100);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 16px 0;
}

.hero-copy p {
  max-width: 520px;
  margin-bottom: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 16px;
}

.trust-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.hero-card {
  background: var(--sage-100);
  color: var(--olive-900);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: none;
  margin-bottom: 24px;
}

.hero-card li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.hero-card li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--gold-400);
  font-weight: 700;
}

.about {
  padding: 70px 0;
  background: var(--sage-100);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.about-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.value-strip {
  padding: 60px 0;
  text-align: center;
  background: var(--sage-200);
}

.value-strip h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.packages {
  padding: 80px 0;
  background: var(--sage-100);
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.package-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.package-card.featured {
  border: 2px solid var(--gold-400);
  transform: translateY(-10px);
}

.package-header h3 {
  font-size: 1.5rem;
}

.package-note {
  color: var(--gold-400);
  font-weight: 600;
}

.package-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.package-card li::before {
  content: ">";
  color: var(--gold-400);
  margin-right: 8px;
}

.pricing p,
.addons p {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.pricing span,
.addons span {
  font-weight: 700;
}

.time {
  font-weight: 600;
  color: var(--olive-700);
}

.testimonials {
  padding: 80px 0;
  background: var(--olive-800);
  color: var(--sage-100);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 20px;
}

.testimonial-card h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--accent);
}

.testimonial-card span {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--gold-300);
}

.booking {
  padding: 80px 0;
  background: var(--sage-200);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.booking-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.booking-list li::before {
  content: ">";
  margin-right: 8px;
  color: var(--gold-400);
  font-weight: 700;
}

.booking-card {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-form-card {
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin: 16px 0 24px;
}

.contact-details a {
  color: var(--olive-900);
  font-weight: 600;
}

.fine-print {
  font-size: 0.9rem;
  color: var(--olive-700);
  margin-bottom: 16px;
}

.site-footer {
  background: var(--olive-900);
  color: var(--sage-100);
  text-align: center;
  padding: 24px 0;
}

.order-section {
  padding: 70px 0 90px;
  background: var(--sage-100);
}

.order-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}

.order-items {
  display: grid;
  gap: 20px;
}

.order-category {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.order-category h3 {
  margin-bottom: 14px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.order-item:last-child {
  border-bottom: none;
}

.addon-note {
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--olive-700);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.item-sub {
  color: var(--olive-700);
  font-size: 0.9rem;
}

.item-price {
  font-weight: 700;
  color: var(--olive-900);
}

.item-counter {
  display: flex;
  gap: 8px;
  align-items: center;
}

.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: transparent;
  color: var(--olive-900);
  cursor: pointer;
}

.counter-input {
  width: 36px;
  height: 30px;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--olive-900);
}

.order-summary {
  background: var(--white);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.summary-line.total {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 12px;
  font-weight: 700;
}

.checkout-btn {
  width: 100%;
  background: var(--gold-400);
  color: var(--olive-900);
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.modal {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  position: relative;
}

.close {
  position: absolute;
  right: 16px;
  top: 16px;
  color: #666;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--white);
  color: var(--olive-900);
}

#payment-errors {
  color: #b54835;
  margin-top: 10px;
  font-size: 0.9rem;
}

.membership-page {
  padding: 70px 0 90px;
  background: var(--sage-100);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.membership-card {
  background: var(--white);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.membership-card.highlight {
  border: 2px solid var(--gold-400);
}

.membership-card.selected {
  border: 2px solid var(--olive-800);
}

.membership-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.membership-card li::before {
  content: ">";
  color: var(--gold-400);
  margin-right: 8px;
}

.member-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.member-options button {
  border: 1px solid var(--gold-300);
  background: var(--sage-200);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.member-options button.active {
  background: var(--gold-400);
  color: var(--olive-900);
}

.success {
  padding: 100px 0;
  background: var(--sage-100);
  text-align: center;
}

@media (max-width: 900px) {
  .order-container {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: static;
  }

  .nav-links {
    width: 100%;
  }
}
