:root {
  --teal-dark: #0b2a2d;
  --teal: #145c5c;
  --teal-light: #1f7a72;
  --sand: #f4ecd8;
  --sand-dark: #e5d6b0;
  --white: #ffffff;
  --gold: #c8a45c;
  --text: #1c2b2b;
  --text-muted: #4d5f5f;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(11, 42, 45, 0.12);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal-dark);
}

.logo span { color: var(--gold); }

.logo-light { color: var(--white); }
.logo-light span { color: var(--gold); }

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.main-nav a:hover { color: var(--teal-dark); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--teal-dark);
}

.btn-primary:hover { background: #d8b671; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}

.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-small { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; margin-top: 8px; }

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 140px 0 100px;
  text-align: center;
}

.hero-inner { max-width: 760px; margin: 0 auto; }

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Trust bar */
.trust-bar {
  background: var(--teal-dark);
  color: var(--white);
  padding: 32px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

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

.trust-item strong { font-size: 1rem; }
.trust-item span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--sand); }

.section-title {
  font-size: 2.1rem;
  text-align: center;
  color: var(--teal-dark);
}

.section-sub {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--text-muted);
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step { text-align: center; }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

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

.pricing-card h3 { color: var(--teal-dark); font-size: 1.3rem; }
.pricing-card-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }

.price-table { width: 100%; border-collapse: collapse; }

.price-table th, .price-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.price-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.price-table td:last-child, .price-table th:last-child {
  text-align: right;
  font-weight: 600;
}

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

.addons h3 { color: var(--teal-dark); font-size: 1.2rem; }

.addons-list { list-style: none; margin: 0 0 16px; padding: 0; }

.addons-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.addons-note { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Estimator */
.estimator {
  display: flex;
  align-items: end;
  gap: 20px;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.estimator-field { display: flex; flex-direction: column; gap: 6px; }
.estimator-field label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }

.estimator-field select {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--sand-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}

.estimator-result {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: auto;
}

.estimator-result span { font-size: 0.85rem; color: var(--text-muted); }
.estimator-result strong { font-size: 1.6rem; color: var(--teal-dark); font-family: var(--font-heading); }

/* Booking form */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-field label { font-size: 0.88rem; font-weight: 600; color: var(--text-muted); }

.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--sand-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--teal-light);
  outline-offset: 1px;
}

.form-status {
  min-height: 24px;
  font-weight: 600;
  text-align: center;
}

.form-status.success { color: var(--teal-light); }
.form-status.error { color: #b3423e; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-list details {
  border-bottom: 1px solid var(--sand-dark);
  padding: 18px 0;
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--teal-dark);
}

.faq-list p { margin-top: 12px; color: var(--text-muted); }

/* Footer */
.site-footer {
  background: var(--teal-dark);
  color: var(--white);
  padding: 56px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-tagline { color: rgba(255,255,255,0.75); margin-top: 8px; font-size: 0.95rem; }

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

.footer-email { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.footer-bottom {
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .estimator { flex-direction: column; align-items: stretch; }
  .estimator-result { margin-left: 0; }
}
