@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #fdf3e5;
  --ink: #1f2b26;
  --muted: #667069;
  --green: #2f6b5a;
  --green-dark: #1e4638;
  --sage: #8fac9c;
  --gold: #dba13c;
  --coral: #e2664f;
  --card: #ffffff;
  --border: #ecdfc9;
  --max-width: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo, .footer-logo { font-family: "Fraunces", Georgia, serif; letter-spacing: -0.01em; }
.italic-serif { font-family: "Fraunces", Georgia, serif; font-style: italic; }

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

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

/* ---------- Header ---------- */
header.site-header {
  background: var(--bg);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
}
header.site-header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.35rem; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 10px; }
.logo img { height: 40px; width: 40px; border-radius: 50%; display: block; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { color: var(--ink); font-weight: 500; font-size: 0.95rem; }
nav a:hover { color: var(--green); text-decoration: none; }
.nav-cta { display: inline-block; }

/* ---------- Buttons (pill) ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(47,107,90,0.28); }
.btn-primary:hover { background: var(--green-dark); text-decoration: none; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: rgba(47,107,90,0.08); text-decoration: none; color: var(--green-dark); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); text-decoration: none; color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-gold { background: var(--gold); color: #2b2109; box-shadow: 0 6px 16px rgba(219,161,60,0.35); }
.btn-gold:hover { background: #c8912f; color: #2b2109; text-decoration: none; transform: translateY(-2px); }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Hero (dark) ---------- */
.hero-dark {
  background: var(--green-dark);
  background-image:
    linear-gradient(rgba(30,70,56,0.94), rgba(30,70,56,0.94)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 42px);
  color: #fff;
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-dark .wrap { position: relative; z-index: 2; }
.pill-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-dark h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--sage);
  margin: 0 auto 20px;
  max-width: 780px;
}
.hero-dark p.sub { color: rgba(255,255,255,0.72); font-size: 1.08rem; max-width: 560px; margin: 0 auto 32px; }
.hero-dark .cta-row { justify-content: center; }

.location-badge {
  position: absolute;
  background: var(--bg);
  color: var(--green-dark);
  padding: 12px 18px;
  border-radius: 14px;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
  z-index: 3;
}
.location-badge .pin { font-size: 1rem; }
.location-badge.loc-1 { top: 34%; left: 4%; }
.location-badge.loc-2 { bottom: 12%; right: 5%; }
@media (max-width: 760px) {
  .location-badge { display: none; }
}

.divider-bar { height: 8px; background: var(--green-dark); }

/* ---------- Sections ---------- */
main { padding: 0; }
.section { padding: 80px 0; }
.section-title { font-size: 2rem; font-weight: 600; margin: 0 0 10px; text-align: center; }
.section-sub { color: var(--muted); margin-top: 0; margin-bottom: 46px; text-align: center; font-size: 1.02rem; }
.section-title.left { text-align: left; }

/* ---------- Icon-circle cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }

.icon-circle {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.icon-circle.c-sage { background: #e2ede7; color: var(--green); }
.icon-circle.c-coral { background: #fbe4de; color: var(--coral); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(31,43,38,0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(31,43,38,0.09); }
.card h3 { margin: 0 0 10px; font-size: 1.35rem; color: var(--green-dark); }
.card p { color: var(--muted); margin: 0 0 16px; font-size: 0.97rem; }
.card ul { padding-left: 20px; color: var(--muted); font-size: 0.93rem; margin: 0 0 18px; }
.card ul li { margin-bottom: 7px; }
.card .link-arrow { font-weight: 600; font-size: 0.93rem; }
.card .link-arrow.coral { color: var(--coral); }
.card .link-arrow.green { color: var(--green); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 14px; }
.step { text-align: center; padding: 10px; }
.step .step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin: 0 auto 14px; font-family: "Fraunces", Georgia, serif;
}
.step h4 { margin: 0 0 6px; font-size: 1.08rem; }
.step p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---------- Testimonials (dark section) ---------- */
.section-dark { background: var(--green-dark); color: #fff; }
.section-dark .section-title { color: #fff; text-align: left; margin-bottom: 0; }
.testimonials-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 28px;
}
.testimonial-card .stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 16px; }
.testimonial-card .quote { font-family: "Fraunces", Georgia, serif; font-style: italic; font-size: 1.02rem; color: #f3efe6; margin: 0 0 20px; line-height: 1.55; }
.testimonial-card .author { font-weight: 600; font-size: 0.9rem; color: var(--gold); }

/* light variant for "more feedback" on testimonials page */
.testimonial-card.light { background: var(--card); border: 1px solid var(--border); }
.testimonial-card.light .quote { color: var(--ink); font-style: normal; font-family: "Inter", sans-serif; }
.testimonial-card.light .author { color: var(--green-dark); }

/* ---------- CTA section ---------- */
.cta-section { background: var(--bg); text-align: center; padding: 90px 0; }
.cta-section h2 { font-size: 2.6rem; color: var(--green-dark); margin: 0 0 16px; font-weight: 600; }
.cta-section p { color: var(--muted); font-size: 1.05rem; margin: 0 0 34px; }
.cta-section .cta-row { justify-content: center; }

/* ---------- Contact ---------- */
.contact-hero { background: var(--bg); padding: 80px 0 20px; }
.contact-hero h1 { font-size: 2.6rem; color: var(--sage); margin: 0 0 14px; }
.contact-hero p { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 0 0 34px; }

.contact-block { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; padding-bottom: 80px; }
@media (max-width: 760px) { .contact-block { grid-template-columns: 1fr; } }

.method-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.method-card.primary { background: var(--sage); border-color: var(--sage); color: #fff; }
.method-card.primary .eyebrow { color: rgba(255,255,255,0.8); }
.method-card.primary .method-title { color: #fff; }
.method-card.primary .method-detail { color: rgba(255,255,255,0.85); }
.method-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  background: rgba(255,255,255,0.25);
}
.method-card:not(.primary) .method-icon { background: #f4ece0; }
.eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.method-title { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 1.15rem; margin-bottom: 3px; }
.method-detail { color: var(--muted); font-size: 0.88rem; }

form.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 30px; box-shadow: 0 4px 16px rgba(31,43,38,0.05); }
form.contact-form label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; margin-top: 14px; }
form.contact-form label:first-child { margin-top: 0; }
form.contact-form input, form.contact-form select, form.contact-form textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; background: var(--bg);
}
form.contact-form textarea { resize: vertical; min-height: 100px; }
form.contact-form .btn { margin-top: 18px; width: 100%; text-align: center; }
form.contact-form .form-note { font-size: 0.82rem; color: var(--muted); margin: 0 0 14px; }
.form-footnote { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 12px; }

/* ---------- Footer ---------- */
footer { background: var(--green-dark); color: #cfe0d7; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 34px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { color: var(--gold); font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; }
.footer-tagline { font-family: "Fraunces", Georgia, serif; font-style: italic; color: #f3efe6; margin-bottom: 14px; }
.footer-desc { color: #b7c9c0; font-size: 0.92rem; max-width: 320px; }
footer h5 { color: #fff; font-size: 1rem; margin: 0 0 14px; }
footer .foot-col a { display: block; color: #cfe0d7; margin-bottom: 10px; font-size: 0.93rem; }
footer .foot-col a:hover { color: #fff; }
footer .foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; text-align: center; font-size: 0.85rem; color: #a9bdb2; }

@media (max-width: 700px) {
  header.site-header { padding: 14px 0; }
  header.site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .logo { font-size: 1.1rem; white-space: nowrap; }
  .logo img { height: 32px; width: 32px; }
  nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  nav a:not(.nav-cta) { font-size: 0.87rem; }
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  .hero-dark h1 { font-size: 2.2rem; }
  .cta-section h2 { font-size: 1.9rem; }
}
