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

:root {
  --cream: #f2e8df;
  --cream-dark: #e8dbd0;
  --green: #3d4030;
  --green-light: #5a5d48;
  --rose: #c4846b;
  --rose-light: #d4a492;
  --rose-pale: #edd5c8;
  --white: #faf6f3;
  --dark: #2a2a1e;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--green);
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
}

/* ─── NAVIGATION ─────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--rose-pale);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  padding: 10px 60px;
}

.nav-logo img {
  height: 125px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--green);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--rose); }

.nav-links .nav-cta a {
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  transition: background 0.25s, color 0.25s;
}

.nav-links .nav-cta a:hover { background: var(--rose); color: #fff; }

/* ─── HERO SECTIONS ──────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--rose);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--green-light);
  max-width: 640px;
  margin-bottom: 44px;
  font-style: italic;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

.btn-rose {
  background: var(--rose);
  color: #fff;
}
.btn-rose:hover { background: var(--green); }

/* ─── SECTION BASE ───────────────────────────────── */
section {
  padding: 90px 60px;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--rose);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--green);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--green-light);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px auto 60px;
  max-width: 300px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rose-pale);
}

.divider-star {
  color: var(--rose);
  font-size: 1.1rem;
}

/* ─── SERVICES GRID (cards) ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--rose-pale);
  padding: 36px 32px;
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
  color: var(--rose);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--green);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--green-light);
  line-height: 1.75;
}

/* ─── ICON GRID (services overview) ─────────────── */
.icon-grid-section {
  background: var(--white);
  border-top: 1px solid var(--rose-pale);
  border-bottom: 1px solid var(--rose-pale);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 40px 30px;
  max-width: 1000px;
  margin: 0 auto 50px;
  text-align: center;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.icon-item .icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--rose);
}

.icon-item span {
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ─── VALUES GRID ────────────────────────────────── */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.value-item {
  flex: 0 0 240px;
}

.value-item .v-icon {
  font-size: 2.2rem;
  color: var(--rose);
  margin-bottom: 14px;
}

.value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.4;
}

/* ─── EVERYTHING LIST ────────────────────────────── */
.everything-section {
  background: var(--green);
  color: var(--cream);
  text-align: center;
}

.everything-section .section-label { color: var(--rose-light); }
.everything-section .section-title { color: var(--white); }
.everything-section .section-sub { color: var(--cream-dark); }

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

/* ─── CTA STRIP ──────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 100px 40px;
  background: var(--cream);
}

.cta-section .section-title { margin-bottom: 30px; }

/* ─── TESTIMONIAL ────────────────────────────────── */
.testimonial-section {
  background: var(--rose-pale);
  text-align: center;
  padding: 80px 60px;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--green);
  max-width: 750px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.testimonial-quote::before { content: '\201C'; color: var(--rose); font-size: 3rem; line-height: 0; vertical-align: -0.5rem; margin-right: 6px; }
.testimonial-quote::after  { content: '\201D'; color: var(--rose); font-size: 3rem; line-height: 0; vertical-align: -0.5rem; margin-left: 6px; }

.testimonial-author {
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ─── ABOUT PAGE ─────────────────────────────────── */
.about-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--green);
  line-height: 1.75;
  margin-bottom: 20px;
}

.bios-section {
  background: var(--white);
  border-top: 1px solid var(--rose-pale);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.bio-card {
  background: var(--cream);
  padding: 44px 40px;
  border: 1px solid var(--rose-pale);
}

.bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 6px;
}

.bio-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--rose);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.bio-card p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--green-light);
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--dark);
  color: var(--cream-dark);
  text-align: center;
  padding: 50px 40px 30px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: var(--cream-dark);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.footer-nav a:hover { color: var(--rose); }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* ─── DECORATIVE STARS ───────────────────────────── */
.star-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  color: var(--rose);
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  section { padding: 70px 28px; }
  .hero { padding: 60px 24px; min-height: 70vh; }
  .bio-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav-links { gap: 20px; }
}

/* ─── MOBILE NAV TOGGLE ─────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--green);
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 600px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rose-pale);
    padding: 20px 24px 24px;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  .services-grid { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item { flex: 0 0 44%; }
  section { padding: 55px 20px; }
}

/* ─── FLOATING CTA ──────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 300;
  background: var(--rose);
  color: #fff;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 40px;
  box-shadow: 0 8px 26px rgba(61, 64, 48, 0.28);
  transition: background 0.25s, transform 0.25s;
}
.floating-cta:hover { background: var(--green); transform: translateY(-2px); }
@media (max-width: 600px) {
  .floating-cta { bottom: 18px; right: 18px; padding: 13px 22px; font-size: 0.74rem; }
}

/* ─── SIMPLE SERVICES LIST (no icons) ───────────── */
.simple-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 4px 40px;
  max-width: 860px;
  margin: 0 auto 50px;
}
.simple-list span {
  font-size: 0.95rem;
  color: var(--green);
  letter-spacing: 0.04em;
  padding-left: 20px;
  position: relative;
}
.simple-list span::before {
  content: '✦';
  color: var(--rose);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 3px;
}

/* simple list on dark sections */
.simple-list-dark span { color: var(--cream); }
.simple-list-dark span::before { color: var(--rose-light); }
.everything-section .simple-list { margin-bottom: 20px; text-align: left; }

/* bio headshots */
.bio-photo {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 26px;
  border: 4px solid var(--rose-pale);
  box-shadow: 0 8px 24px rgba(61,64,48,0.12);
}

/* why choose us list on dark background */
.why-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}
.why-list span {
  font-size: 1.05rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .why-list span { white-space: normal; font-size: 0.95rem; }
}
