:root {
  --color-teal: #2ABBA7;
  --color-teal-dark: #1E9A89;
  --color-teal-light: #E8F8F6;
  --color-gold: #C9A227;
  --color-gold-light: #D4AF37;
  --color-gold-pale: #FDF8E8;
  --color-cream: #FDFCFA;
  --color-white: #FFFFFF;
  --color-text: #2D3A3A;
  --color-text-light: #5A6B6B;
  --color-border: #E5E9E9;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--color-teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--color-text); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1rem; color: var(--color-text-light); }
p:last-child { margin-bottom: 0; }

em { color: var(--color-gold); font-style: italic; }

ul, ol { margin: 0 0 1rem 1.25rem; color: var(--color-text-light); }
ul li, ol li { margin-bottom: 0.5rem; }

/* Header */
header.site-header {
  background: var(--color-white);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-teal-dark);
  text-decoration: none;
}
.logo em { color: var(--color-gold); font-style: italic; }
nav.primary { display: flex; gap: 1.5rem; align-items: center; }
nav.primary a {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
}
nav.primary a:hover { color: var(--color-teal-dark); }
nav.primary a.cta-phone {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
}
nav.primary a.cta-phone:hover { background: var(--color-teal-dark); text-decoration: none; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-text); }

/* Mobile nav */
@media (max-width: 900px) {
  nav.primary { display: none; }
  nav.primary.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
  }
  .menu-toggle { display: block; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--color-teal-light) 0%, var(--color-cream) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
}
.hero-inner { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

/* Hero — two-column variant with image */
.hero-split .hero-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}
.hero-split h1 { text-align: left; }
.hero-split .lead { margin-left: 0; margin-right: 0; text-align: left; }
.hero-split .hero-ctas { justify-content: flex-start; }
.hero-split .hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-height: 540px;
}
.hero-split .hero-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-split h1, .hero-split .lead { text-align: center; }
  .hero-split .hero-ctas { justify-content: center; }
  .hero-split .hero-image { max-height: 340px; aspect-ratio: 16/10; order: -1; }
}
.eyebrow {
  display: inline-block;
  background: var(--color-gold-pale);
  color: var(--color-gold);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero .lead {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Trust Bar */
.trust-bar {
  background: var(--color-white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-items {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--color-text-light);
  font-weight: 500;
}
.trust-items span::before { content: "•"; color: var(--color-gold); margin-right: 0.5rem; }
.trust-items span:first-child::before { content: ""; margin: 0; }

/* Section */
section { padding: 4rem 0; }
.section-label {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  text-align: center;
}
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; max-width: 700px; margin: 0 auto 3rem; color: var(--color-text-light); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-primary { background: var(--color-teal); color: var(--color-white); }
.btn-primary:hover { background: var(--color-teal-dark); text-decoration: none; }
.btn-gold { background: var(--color-gold); color: var(--color-white); }
.btn-gold:hover { background: var(--color-gold-light); text-decoration: none; }
.btn-outline { background: transparent; color: var(--color-teal-dark); border-color: var(--color-teal); }
.btn-outline:hover { background: var(--color-teal); color: var(--color-white); text-decoration: none; }
.btn-large { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-white { background: var(--color-white); color: var(--color-teal-dark); }
.btn-white:hover { background: var(--color-cream); text-decoration: none; }
.btn-outline-white { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline-white:hover { background: var(--color-white); color: var(--color-teal-dark); text-decoration: none; }

/* Cards grid */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; }

.card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-teal-dark);
}
.card-icon svg { width: 26px; height: 26px; }

.card a.card-link {
  color: var(--color-teal-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 1rem;
}
.card a.card-link::after { content: " →"; transition: margin 0.2s; }
.card a.card-link:hover::after { margin-left: 4px; }

/* Alternating backgrounds */
.bg-light { background: var(--color-cream); }
.bg-teal { background: var(--color-teal-light); }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--color-white);
}
.cta-section h2 { color: var(--color-white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.92); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Long-form content */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { text-align: left; margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose ul, .prose ol { margin-left: 1.5rem; }
.prose .callout {
  background: var(--color-gold-pale);
  border-left: 4px solid var(--color-gold);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}
.prose .callout p:last-child { margin-bottom: 0; }

/* Two-column content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

/* Pay options */
.pay-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.pay-chip {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.2s;
  display: block;
}
.pay-chip:hover {
  border-color: var(--color-teal);
  transform: translateY(-2px);
  text-decoration: none;
}
.pay-chip strong { color: var(--color-teal-dark); display: block; margin-bottom: 0.25rem; }
.pay-chip span { font-size: 0.85rem; color: var(--color-text-light); }

/* Area tags */
.area-tags { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0; }
.area-tag {
  background: var(--color-white);
  color: var(--color-teal-dark);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
}
.area-tag.primary { background: var(--color-teal); color: var(--color-white); border-color: var(--color-teal); }

/* FAQ */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-white);
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text);
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-teal);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-body { padding: 0 1.5rem 1.25rem; color: var(--color-text-light); }

/* Form */
.form { background: var(--color-white); padding: 2rem; border-radius: 16px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--color-white);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(42,187,167,0.15);
}

/* Testimonial */
.testimonial {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
  border-left: 4px solid var(--color-gold);
}
.testimonial blockquote { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--color-text); margin-bottom: 1rem; line-height: 1.5; }
.testimonial cite { display: block; font-size: 0.9rem; color: var(--color-text-light); font-style: normal; font-weight: 600; }
.testimonial cite small { display: block; font-weight: 400; color: var(--color-text-light); }

/* Team card */
.team-card { text-align: center; }
.team-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--color-teal-light);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-dark);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
}
.team-card h3 { margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.88rem; color: var(--color-gold); font-weight: 600; margin-bottom: 0.75rem; }

/* Footer */
footer.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}
footer.site-footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 800px) { footer.site-footer .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { footer.site-footer .container { grid-template-columns: 1fr; } }
footer.site-footer h4 { color: var(--color-white); margin-bottom: 1rem; font-size: 1rem; }
footer.site-footer a { color: rgba(255,255,255,0.75); font-size: 0.9rem; display: block; padding: 0.25rem 0; text-decoration: none; }
footer.site-footer a:hover { color: var(--color-gold-light); text-decoration: none; }
footer.site-footer .brand-line { font-family: var(--font-display); font-size: 1.3rem; color: var(--color-white); margin-bottom: 0.75rem; }
footer.site-footer .copy { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
footer.site-footer .copy a { display: inline; color: rgba(255,255,255,0.7); }

/* Placeholder notice */
.placeholder-note {
  background: var(--color-gold-pale);
  border: 1px dashed var(--color-gold);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--color-text);
  margin: 1rem 0;
}
.placeholder-note strong { color: var(--color-gold); }

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { color: var(--color-teal-dark); }
.breadcrumb span { margin: 0 0.4rem; }

/* Page hero (smaller than home hero) */
.page-hero {
  background: linear-gradient(135deg, var(--color-teal-light) 0%, var(--color-cream) 100%);
  padding: 3rem 0 2.5rem;
  text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead { font-size: 1.1rem; color: var(--color-text-light); max-width: 700px; margin: 0 auto; }
