:root {
  --color-primary: #d97a3f;
  --color-primary-dark: #b85f2b;
  --color-bg: #fffaf5;
  --color-bg-alt: #fbeee0;
  --color-text: #3a2e26;
  --color-text-light: #6b5a4d;
  --radius: 14px;
  --max-width: 1000px;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.25; margin-top: 0; }
h2 { font-size: 1.8rem; margin-bottom: 24px; text-align: center; }

a { color: var(--color-primary-dark); }

.site-header {
  background: #fff;
  border-bottom: 1px solid #f0e2d3;
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--color-text);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
}

.nav-cta {
  background: var(--color-primary);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,46,38,0.55), rgba(58,46,38,0.75));
}

.hero h1 {
  font-size: 2.3rem;
  max-width: 700px;
  margin: 0 auto 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  color: #f5ece2;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); }

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.badge {
  background: var(--color-bg-alt);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

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

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

.card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.card p { color: var(--color-text-light); margin: 0; }

.pricing-note {
  text-align: center;
  color: var(--color-text-light);
  margin-top: -10px;
  margin-bottom: 30px;
}

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

.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.price-card.featured {
  border: 2px solid var(--color-primary);
}

.price-card h3 { font-size: 1rem; color: var(--color-text-light); margin-bottom: 8px; }
.price { font-size: 1.8rem; font-weight: 700; color: var(--color-primary-dark); margin: 6px 0; }

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

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 30px auto 0;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row-full { grid-column: 1 / -1; }

.form-row label { font-size: 0.9rem; font-weight: 600; }

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border: 1px solid #e3d3c3;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  grid-column: 1 / -1;
  font-weight: 600;
  min-height: 20px;
}

.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }

.site-footer {
  background: #3a2e26;
  color: #f0e2d3;
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
}

.site-footer a { color: #f0e2d3; }

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .card, .price-card, .gallery-item, .btn-primary {
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 600px) {
  .booking-form { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .hero { padding: 90px 0 70px; }
}
