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

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

:root {
  --ivory: #fdf8f4;
  --sand: #f5e6d3;
  --blush: #f0d5c0;
  --rose: #e8c4b0;
  --dusty-rose: #d4a090;
  --mauve: #c08878;
  --deep-rose: #a06858;
  --text-dark: #4a3028;
  --text-mid: #7a5848;
  --text-light: #a08070;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(253,248,244,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(208,152,128,0.2);
}
.nav-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--text-dark); text-decoration: none; line-height: 1.2; }
.nav-logo span { display: block; font-size: 0.68rem; font-family: var(--font-body); font-weight: 300; letter-spacing: 0.15em; text-transform: uppercase; color: var(--deep-rose); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--deep-rose); }
.nav-cta { background: var(--deep-rose); color: white !important; padding: 0.6rem 1.4rem; border-radius: 2px; }
.nav-cta:hover { background: var(--text-dark) !important; }

.page-hero {
  padding: 10rem 3rem 5rem;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--sand) 100%);
  text-align: center;
}
.page-hero .eyebrow { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--deep-rose); margin-bottom: 1rem; display: block; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 300; line-height: 1.2; margin-bottom: 1.2rem; color: var(--text-dark); }
.page-hero h1 em { font-style: italic; color: var(--deep-rose); }
.page-hero p { font-size: 1.05rem; color: var(--text-mid); max-width: 600px; margin: 0 auto 2rem; line-height: 1.8; }

section { padding: 5rem 3rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--deep-rose); margin-bottom: 1rem; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2; margin-bottom: 1.5rem; color: var(--text-dark); }
.section-title em { font-style: italic; color: var(--deep-rose); }
.section-intro { font-size: 1.05rem; color: var(--text-mid); max-width: 640px; line-height: 1.8; margin-bottom: 3rem; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.card { background: var(--ivory); border: 1px solid rgba(208,152,128,0.2); padding: 2.5rem 2rem; border-radius: 8px; transition: box-shadow 0.25s, transform 0.25s; }
.card:hover { box-shadow: 0 8px 32px rgba(160,104,88,0.1); transform: translateY(-3px); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.8rem; color: var(--text-dark); }
.card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.2rem; }
.card a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--deep-rose); text-decoration: none; border-bottom: 1px solid var(--rose); padding-bottom: 2px; }

.specialty-body { max-width: 760px; margin: 0 auto; }
.specialty-body h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; margin: 2.5rem 0 1rem; color: var(--text-dark); }
.specialty-body h2 em { font-style: italic; color: var(--deep-rose); }
.specialty-body p { color: var(--text-mid); margin-bottom: 1.2rem; line-height: 1.85; font-size: 1.02rem; }
.specialty-body ul { margin: 1rem 0 1.5rem 1.5rem; color: var(--text-mid); }
.specialty-body ul li { margin-bottom: 0.5rem; line-height: 1.7; font-size: 1.02rem; }

.cta-box { background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--mauve) 100%); color: white; padding: 3.5rem; border-radius: 8px; text-align: center; margin-top: 4rem; }
.cta-box h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; margin-bottom: 1rem; }
.cta-box p { opacity: 0.9; margin-bottom: 2rem; font-size: 1.05rem; }
.btn-white { background: white; color: var(--deep-rose); padding: 0.9rem 2.2rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 2px; display: inline-block; transition: all 0.25s; }
.btn-white:hover { background: var(--sand); }

.btn { display: inline-block; padding: 0.85rem 2rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: all 0.25s; font-family: var(--font-body); }
.btn-primary { background: var(--deep-rose); color: white; margin-right: 1rem; }
.btn-primary:hover { background: var(--text-dark); }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.blog-card { background: var(--ivory); border: 1px solid rgba(208,152,128,0.2); border-radius: 8px; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.blog-card:hover { box-shadow: 0 8px 32px rgba(160,104,88,0.1); transform: translateY(-3px); }
.blog-card-body { padding: 2rem; }
.blog-tag { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--deep-rose); margin-bottom: 0.8rem; display: block; }
.blog-card h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.8rem; line-height: 1.3; }
.blog-card h2 a { color: var(--text-dark); text-decoration: none; }
.blog-card h2 a:hover { color: var(--deep-rose); }
.blog-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.2rem; }
.blog-card .read-more { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--deep-rose); text-decoration: none; border-bottom: 1px solid var(--rose); padding-bottom: 2px; }
.blog-date { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.5rem; display: block; }

.blog-post-body { max-width: 720px; margin: 0 auto; }
.blog-post-body h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 400; margin: 2.5rem 0 1rem; color: var(--text-dark); }
.blog-post-body h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; margin: 2rem 0 0.8rem; color: var(--deep-rose); }
.blog-post-body p { color: var(--text-mid); margin-bottom: 1.3rem; line-height: 1.9; font-size: 1.03rem; }
.blog-post-body ul { margin: 1rem 0 1.5rem 1.5rem; color: var(--text-mid); }
.blog-post-body ul li { margin-bottom: 0.6rem; line-height: 1.7; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-credentials { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.credential { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.9rem; color: var(--text-mid); }
.credential::before { content: '—'; color: var(--dusty-rose); flex-shrink: 0; }

.breadcrumb { padding: 7rem 3rem 0; font-size: 0.78rem; color: var(--text-mid); }
.breadcrumb a { color: var(--deep-rose); text-decoration: none; }

footer { background: var(--blush); color: var(--text-dark); padding: 4rem 3rem 2rem; border-top: 1px solid rgba(208,152,128,0.25); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-dark); margin-bottom: 0.8rem; font-weight: 400; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--deep-rose); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: var(--text-mid); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--deep-rose); }
.footer-bottom { border-top: 1px solid rgba(208,152,128,0.2); padding-top: 2rem; display: flex; justify-content: space-between; font-size: 0.76rem; color: var(--text-light); }

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: 6rem 1.5rem 0; }
}
