:root {
  --white: #ffffff;
  --beige: #f2e9dc;
  --beige-light: #faf6ef;
  --green: #8ca897;
  --green-dark: #6b8a76;
  --gold: #c9a86a;
  --gold-light: #e3cb9a;
  --text: #3a3a35;
  --text-light: #6b6b63;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(58, 58, 53, 0.08);
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, 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;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--text);
  margin: 0 0 0.5em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(107, 138, 118, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(107, 138, 118, 0.4);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid rgba(58, 58, 53, 0.06);
  z-index: 500;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.logo-icon {
  border-radius: 50%;
}

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

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

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

.btn-nav {
  padding: 10px 20px;
  font-size: 0.9rem;
}

@media (min-width: 800px) {
  .main-nav {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--beige-light) 0%, var(--beige) 100%);
  padding: 96px 0 100px;
  text-align: center;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(140, 168, 151, 0.25) 0, transparent 40%),
    radial-gradient(circle at 88% 15%, rgba(201, 168, 106, 0.2) 0, transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(140, 168, 151, 0.2) 0, transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-light);
  margin: 0 0 36px;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  text-align: center;
}

.section-lead {
  text-align: center;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Service cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid rgba(140, 168, 151, 0.18);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(58, 58, 53, 0.1);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--beige-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.card > p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(58, 58, 53, 0.08);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
}

.price-list li span:last-child {
  font-weight: 700;
  color: var(--gold);
}

/* Pricing table */
.pricing {
  background: var(--beige-light);
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.price-table th,
.price-table td {
  text-align: left;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(58, 58, 53, 0.08);
  font-size: 0.98rem;
}

.price-table th {
  background: var(--green-dark);
  color: var(--white);
  font-weight: 600;
}

.price-table td:last-child {
  font-weight: 700;
  color: var(--gold-light);
  color: #b5893f;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-note {
  text-align: center;
  margin-top: 22px;
  color: var(--text-light);
}

.price-note strong {
  color: var(--green-dark);
}

/* Info checklist */
.info-section {
  text-align: center;
}

.check-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}

@media (min-width: 640px) {
  .check-list {
    grid-template-columns: 1fr 1fr;
  }
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--beige-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-weight: 500;
}

.check {
  color: var(--white);
  background: var(--green-dark);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Booking form */
.booking {
  background: var(--beige-light);
}

.booking-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  border: 1px solid rgba(140, 168, 151, 0.18);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.form-row label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(58, 58, 53, 0.15);
  background: var(--beige-light);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(140, 168, 151, 0.25);
  background: var(--white);
}

.form-row textarea {
  resize: vertical;
  min-height: 90px;
}

.booking-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

.booking-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 16px 0 0;
}

@media (max-width: 480px) {
  .booking-form {
    padding: 32px 22px;
  }
}

/* Why section */
.why {
  background: linear-gradient(180deg, var(--white) 0%, var(--beige-light) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: center;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-item {
  padding: 20px;
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.why-item p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin: 0;
}

/* Disclaimer */
.disclaimer {
  padding: 40px 0;
  background: var(--green-dark);
}

.disclaimer p {
  text-align: center;
  color: var(--white);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Footer */
.site-footer {
  background: var(--text);
  padding: 40px 0;
}

.footer-inner {
  text-align: center;
}

.footer-name {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.15rem;
  margin: 0 0 4px;
}

.footer-location {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  z-index: 600;
  transition: transform 0.15s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn, .card, .whatsapp-float {
    transition: none;
  }
}
