:root{
  --sage: #8AA899;
  --linen: #F8F5F0;
  --charcoal: #333333;
  --rose: #C08497;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}

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

body { 
  color: var(--charcoal); 
  background: #fff; 
  font-family: var(--sans); 
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container { 
  width: min(1200px, 90%); 
  margin: 0 auto; 
}

.site-header { 
  background: rgba(255, 255, 255, 0.98); 
  border-bottom: 1px solid rgba(138, 168, 153, 0.1);
  position: sticky; 
  top: 0; 
  z-index: 100;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.logo { 
  font-family: var(--serif); 
  font-weight: 600; 
  font-size: 1.3rem; 
  color: var(--charcoal); 
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--sage);
}

.logo span { 
  color: var(--sage); 
  font-weight: 400;
}

.nav-wrap { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 1.2rem 0; 
  gap: 2rem; 
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a { 
  margin: 0 0.8rem; 
  text-decoration: none; 
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.site-nav a:not(.btn):hover {
  color: var(--sage);
}

.site-nav .cta { 
  background: var(--rose); 
  color: #fff; 
  padding: 0.65rem 1.3rem; 
  border-radius: 50px;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(192, 132, 151, 0.2);
}

.site-nav .cta:hover { 
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 132, 151, 0.3);
}

.nav-toggle { 
  display: none; 
  font-size: 1.5rem; 
  background: transparent; 
  border: none;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-block; }
  .site-nav { 
    position: absolute; 
    top: 70px; 
    right: 5%; 
    background: rgba(255, 255, 255, 0.98); 
    border: 1px solid rgba(138, 168, 153, 0.15);
    padding: 1rem; 
    border-radius: 16px; 
    display: none; 
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  .site-nav a { padding: 0.6rem 0.8rem; }
  .site-nav.open { display: flex; }
}

.hero { 
  background: linear-gradient(135deg, var(--sage) 0%, #7A9A8B 100%);
  color: #fff; 
  padding: clamp(4rem, 10vw, 8rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero.hero-img { 
  background: url('assets/hero.jpg') center/cover no-repeat, var(--sage); 
  color: #fff; 
}

.hero h1 { 
  font-family: var(--serif); 
  font-size: clamp(2rem, 5vw, 3.5rem); 
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero p { 
  margin: 1rem auto 2rem; 
  max-width: 65ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.95;
  line-height: 1.7;
}

.btn { 
  display: inline-block; 
  padding: 0.85rem 1.8rem; 
  border-radius: 50px; 
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.primary { 
  background: var(--rose); 
  color: #fff;
  box-shadow: 0 4px 12px rgba(192, 132, 151, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 132, 151, 0.35);
}

.btn.light { 
  background: #fff; 
  color: var(--charcoal);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn.light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn.js-schedule {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 4px 12px rgba(192, 132, 151, 0.25);
}

.btn.js-schedule:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 132, 151, 0.35);
}

.section { 
  padding: clamp(3rem, 8vw, 6rem) 0; 
}

.section.alt { 
  background: var(--linen); 
}

.section h2 { 
  font-family: var(--serif); 
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1.3;
}

.section h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.section p {
  margin-bottom: 1rem;
  max-width: 75ch;
}

.section ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.section ul li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.grid-3 { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
}

@media (max-width: 900px) { 
  .grid-3 { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  } 
}

.card { 
  background: #fff; 
  border: 1px solid rgba(138, 168, 153, 0.15);
  border-radius: 20px; 
  padding: 2rem 1.8rem; 
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a.card { 
  display: block; 
  cursor: pointer; 
}

a.card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 28px rgba(138, 168, 153, 0.15);
  border-color: var(--sage); 
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.card p {
  margin-bottom: 0.5rem;
}

.price { 
  color: var(--rose); 
  font-weight: 600; 
}

.kicker { 
  color: var(--sage); 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.list-inline { 
  display: flex; 
  gap: 0.75rem; 
  padding: 0; 
  margin: 1.5rem 0 0; 
  list-style: none; 
  flex-wrap: wrap; 
}

.badge { 
  background: rgba(138, 168, 153, 0.1);
  color: var(--sage); 
  padding: 0.4rem 1rem; 
  border-radius: 50px; 
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(138, 168, 153, 0.2);
}

.quote { 
  border-left: 4px solid var(--rose); 
  padding: 1.5rem 2rem; 
  background: rgba(192, 132, 151, 0.05);
  border-radius: 12px;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
  margin: 2rem 0;
  line-height: 1.8;
}

.faq summary { 
  cursor: pointer; 
  font-weight: 600;
  padding: 0.5rem 0;
}

.faq details { 
  background: #fff; 
  border: 1px solid rgba(138, 168, 153, 0.15);
  padding: 1rem 1.3rem; 
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq details:hover {
  border-color: var(--sage);
}

.faq details + details { 
  margin-top: 1rem; 
}

.site-footer { 
  background: linear-gradient(135deg, var(--sage) 0%, #7A9A8B 100%);
  color: #fff; 
  padding: 2.5rem 0; 
  margin-top: 4rem; 
}

.site-footer a { 
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-footer a:hover {
  opacity: 0.8;
}

.site-footer p {
  margin-bottom: 0.5rem;
}

.small { 
  opacity: 0.85; 
  font-size: 0.9rem; 
}

.form { 
  display: grid; 
  gap: 1.2rem; 
}

.alert { 
  background: rgba(138, 168, 153, 0.08);
  border: 1px solid rgba(138, 168, 153, 0.2);
  padding: 1.2rem 1.5rem; 
  border-radius: 12px;
  line-height: 1.7;
}

.headshot { 
  width: min(380px, 60%); 
  max-width: 100%; 
  border-radius: 20px; 
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  display: block; 
  margin: 0 auto 2rem;
  transition: transform 0.3s ease;
}

.headshot:hover {
  transform: scale(1.02);
}

.img-fluid { 
  max-width: 100%; 
  height: auto;
  border-radius: 12px;
}

ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

ol li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  line-height: 1.8;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
