:root {
  --teal-900: #0d3b3e;
  --teal-700: #14555f;
  --teal-500: #1d7580;
  --gold: #c9a24b;
  --cream: #faf7f2;
  --ink: #22282a;
  --ink-soft: #55605f;
  --border: #e4ddd0;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(13, 59, 62, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--teal-900); line-height: 1.2; margin: 0 0 0.5em; }
h1 { font-size: 2.5rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--teal-700); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Nav */
header.site-header {
  background: var(--teal-900);
  padding: 16px 0;
}
header.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { color: #fff; font-family: Georgia, serif; font-size: 1.5rem; font-weight: bold; text-decoration: none; letter-spacing: 0.5px; }
nav a { color: #d9e8e8; text-decoration: none; margin-left: 22px; font-size: 0.95rem; }
nav a:hover, nav a.active { color: var(--gold); }
nav a.btn-nav { background: var(--gold); color: var(--teal-900); padding: 8px 16px; border-radius: 999px; font-weight: 600; margin-left: 22px; }

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; border-radius: 999px; font-weight: 600; text-decoration: none; font-size: 1rem; cursor: pointer; border: none; }
.btn-primary { background: var(--gold); color: var(--teal-900); }
.btn-primary:hover { background: #b88f3c; }
.btn-secondary { background: transparent; color: var(--teal-900); border: 1.5px solid var(--teal-900); }
.btn-secondary:hover { background: var(--teal-900); color: #fff; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--teal-900), var(--teal-700)); color: #fff; padding: 80px 0 70px; text-align: center; }
.hero h1 { color: #fff; }
.hero p.lead { color: #d9e8e8; font-size: 1.2rem; max-width: 620px; margin: 0 auto 32px; }
.hero .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Trust bar */
.trust-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-bar .wrap { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Sections */
section { padding: 64px 0; }
section.alt { background: #fff; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: center; padding: 24px; }
.step .num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--teal-900); color: var(--gold); font-family: Georgia, serif; font-weight: bold; margin-bottom: 14px; }

/* Pricing cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--gold); position: relative; }
.price-card.featured::before { content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--teal-900); font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 999px; }
.price-card .price { font-family: Georgia, serif; font-size: 2rem; color: var(--teal-900); margin: 10px 0 4px; }
.price-card .price span { font-size: 0.95rem; color: var(--ink-soft); font-weight: normal; }
.price-card ul { padding-left: 18px; margin: 16px 0 24px; color: var(--ink-soft); flex-grow: 1; }
.price-card ul li { margin-bottom: 6px; }
.note-box { background: #fff; border: 1px dashed var(--border); border-radius: var(--radius); padding: 20px 24px; margin-top: 28px; }
.note-box strong { color: var(--teal-900); }

/* Forms */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; max-width: 640px; margin: 0 auto; }
label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; color: var(--teal-900); }
input, select, textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: 6px;
  font-size: 1rem; margin-bottom: 18px; font-family: inherit; background: #fdfcfa;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
fieldset { border: none; padding: 0; margin: 0 0 18px; }
.tier-options { display: grid; gap: 10px; margin-bottom: 18px; }
.tier-options label {
  display: flex; align-items: center; gap: 10px; font-weight: normal; color: var(--ink);
  border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; cursor: pointer; margin: 0;
}
.tier-options input { width: auto; margin: 0; }
.tier-options label.selected { border-color: var(--gold); background: #fdf8ec; }

#quote-result {
  margin-top: 28px; padding: 26px; border-radius: var(--radius);
  background: var(--teal-900); color: #fff; display: none;
}
#quote-result.show { display: block; }
#quote-result .estimate { font-family: Georgia, serif; font-size: 2.1rem; color: var(--gold); margin: 8px 0; }
#quote-result p { color: #cfe3e2; }

/* Cal.com embed placeholder */
.embed-box {
  background: #fff; border: 1px dashed var(--border); border-radius: var(--radius);
  padding: 48px 24px; text-align: center; color: var(--ink-soft);
}

/* Booking tabs (one per package / Cal.com event type) */
.book-tabs { display: flex; gap: 10px; margin-bottom: 28px; justify-content: center; flex-wrap: wrap; }
.book-tab {
  padding: 11px 22px; border-radius: 999px; border: 1.5px solid var(--border);
  background: #fff; cursor: pointer; font-weight: 600; color: var(--teal-900); font-size: 0.95rem;
}
.book-tab.active { background: var(--teal-900); color: #fff; border-color: var(--teal-900); }
.cal-embed-wrap { display: none; min-height: 500px; }
.cal-embed-wrap.active { display: block; }

/* Footer */
footer { background: var(--teal-900); color: #cfe3e2; padding: 44px 0 28px; margin-top: 40px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
footer a { color: #d9e8e8; }
footer .fine-print { width: 100%; border-top: 1px solid rgba(255,255,255,0.15); margin-top: 24px; padding-top: 18px; font-size: 0.82rem; color: #9db9b8; }

@media (max-width: 760px) {
  .pricing-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  nav { display: none; }
  h1 { font-size: 2rem; }
}

/* =========================================================================
   Dynamic treatment: scroll reveals, hover polish, sticky header,
   alternating image/text rows, FAQ accordion, testimonial carousel.
   All vanilla CSS/JS — no framework, no added cost. See js/site.js.
   ========================================================================= */

/* Sticky header + scroll shadow */
header.site-header { position: sticky; top: 0; z-index: 50; transition: box-shadow 0.3s ease, background 0.3s ease; }
header.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.18); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* Card hover polish */
.price-card, .step, .faq-item { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.price-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(13,59,62,0.14); }
.step:hover .num { background: var(--gold); color: var(--teal-900); transition: background 0.25s ease, color 0.25s ease; }

/* Hero with background image */
.hero-image { position: relative; color: #fff; padding: 110px 0 90px; text-align: center; background-size: cover; background-position: center; }
.hero-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,59,62,0.92), rgba(20,85,95,0.82)); }
.hero-image .wrap { position: relative; z-index: 2; }
.hero-image h1 { color: #fff; }
.hero-image p.lead { color: #d9e8e8; font-size: 1.2rem; max-width: 620px; margin: 0 auto 32px; }
.hero-image .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Alternating image/text rows (process steps, about) */
.row-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; }
.row-block.reverse .row-image { order: 2; }
.row-block.reverse .row-text { order: 1; }
.row-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); display: block; aspect-ratio: 4/3; object-fit: cover; }
.row-text .num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--teal-900); color: var(--gold); font-family: Georgia, serif; font-weight: bold; margin-bottom: 14px; }

/* About page image grid */
.about-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.about-image-grid img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 3/4; }

/* Testimonials carousel */
.testimonial-carousel { position: relative; max-width: 680px; margin: 0 auto; text-align: center; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { flex: 0 0 100%; padding: 8px 16px; }
.testimonial-slide blockquote { font-family: Georgia, serif; font-size: 1.3rem; color: var(--teal-900); margin: 0 0 16px; font-style: italic; }
.testimonial-slide cite { font-style: normal; color: var(--ink-soft); font-size: 0.9rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.testimonial-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; padding: 0; }
.testimonial-dots button.active { background: var(--gold); }

/* FAQ accordion */
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; width: 100%; text-align: left; background: none; border: none; padding: 18px 22px; font-weight: 600; color: var(--teal-900); font-size: 1rem; cursor: pointer; }
.faq-question .icon { font-size: 1.3rem; color: var(--gold); transition: transform 0.25s ease; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 22px 18px; margin: 0; }

@media (max-width: 760px) {
  .row-block, .about-image-grid { grid-template-columns: 1fr; }
  .row-block.reverse .row-image, .row-block.reverse .row-text { order: initial; }
}
