@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --cream: #f7f4ef;
  --warm-white: #fdfcfa;
  --text-dark: #2a2720;
  --text-mid: #4e4840;
  --text-light: #7a7168;
  --border: rgba(42,39,32,0.13);
  --border-strong: rgba(42,39,32,0.25);
  --sage: #8a9a7e;
  --sage-light: #c8d4bc;
  --sage-pale: #edf0e8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--warm-white);
  font-size: 20px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 1em;
}

/* ── NAV ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 3rem;
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(253,252,250,0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-dark);
}
.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a.active {
  color: var(--text-dark);
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 1px;
}

/* ── BUTTONS ── */
.btn-outline,
.btn-dark,
.btn-sage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  min-height: 52px;
  border-radius: 2px;
  transition: opacity 0.2s, background 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.btn-outline {
  background: transparent;
  color: #f5f2ec;
  border: 1px solid rgba(245,242,236,0.75);
}
.btn-outline:hover { background: rgba(245,242,236,0.14); }

.btn-dark {
  background: var(--text-dark);
  color: #fdfcfa;
  border: none;
}
.btn-dark:hover { opacity: 0.84; }
.btn-dark:visited { color: #fdfcfa; }

.btn-sage {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-strong);
}
.btn-sage:hover { background: var(--sage-pale); }

/* Full-width button variant (service cards) */
.btn-full {
  width: 100%;
  display: flex;
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 15px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.8rem;
  display: block;
  font-weight: 400;
}

/* ── FOOTER ── */
footer {
  padding: 1.8rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--border);
  font-size: 14px;
  color: var(--text-light);
  letter-spacing: 0.06em;
}
footer a { color: var(--text-light); text-decoration: none; }
footer a:hover { color: var(--text-mid); }

/* ── DIVIDERS ── */
.divider {
  width: 40px;
  height: 0.5px;
  background: var(--sage);
  margin: 1.5rem auto;
}
.divider-left {
  width: 40px;
  height: 0.5px;
  background: var(--sage);
  margin: 1.5rem 0;
}

/* ════════════════════════════
   MOBILE RESPONSIVE
   ════════════════════════════ */
@media (max-width: 768px) {

  body { font-size: 18px; line-height: 1.75; }

  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .nav-logo { font-size: 14px; }
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: 12px; }

  footer {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    padding: 1.5rem;
    font-size: 13px;
  }

  .btn-dark,
  .btn-sage,
  .btn-outline {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    min-height: 52px;
    border-radius: 2px;
  }
}

/* --- Typography Overrides --- */

.section-label,
.service-includes-label {
  font-size: 13px !important;
}

.service-card-note,
.service-card-detail {
  font-size: 16px !important;
}

.note-block p {
  font-size: 17px !important;
}

.service-includes li {
  font-size: 17px !important;
}

.sidebar-label {
  font-size: 13px !important;
}

.sidebar-text {
  font-size: 17px !important;
}
