/* ============================
   CUSTOM PROPERTIES
   ============================ */
:root {
  --gold: #F5B800;
  --brown: #3D2B1F;
  --sage: #5C7A4E;
  --cream: #FDFAF3;
  --soft-yellow: #FFF3C4;
  --text: #2C2C2C;
  --white: #ffffff;

  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-height: 72px;
  --max-width: 1160px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
}

/* ============================
   RESET
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--brown);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { line-height: 1.7; }

/* ============================
   LAYOUT
   ============================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 5rem 2rem; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--gold); color: var(--brown); }
.btn-outline { background: transparent; color: var(--brown); border: 2px solid var(--brown); }
.btn-white { background: var(--white); color: var(--brown); }

/* ============================
   NAVIGATION
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brown);
  height: var(--nav-height);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(253,250,243,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.btn-nav {
  background: var(--gold);
  color: var(--brown);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
}
.btn-nav:hover { opacity: 0.9; transform: none; box-shadow: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  color: rgba(253,250,243,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.15s;
}
.nav-dropdown-toggle:hover { color: var(--gold); }
.nav-dropdown-toggle::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown);
  border-radius: var(--radius-md, 10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  padding: 0.5rem;
  margin-top: 14px;
  min-width: 240px;
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  color: rgba(253,250,243,0.85);
  font-size: 0.88rem;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.08); color: var(--gold); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.2s;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-tagline { color: rgba(253,250,243,0.65); font-size: 0.9rem; }
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col p,
.footer-col a {
  color: rgba(253,250,243,0.75);
  font-size: 0.9rem;
  line-height: 1.9;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(253,250,243,0.4);
  font-size: 0.8rem;
}

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: var(--soft-yellow);
  padding: 5rem 2rem;
  text-align: center;
}
.page-hero p {
  max-width: 560px;
  margin: 1rem auto 0;
  color: #555;
  font-size: 1.1rem;
}

/* ============================
   HOME HERO
   ============================ */
.hero {
  padding: 6rem 2rem;
  background: var(--cream);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: var(--soft-yellow);
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.hero-text p {
  font-size: 1.1rem;
  color: #555;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-phone { font-size: 0.9rem; color: #777; margin-top: 1.5rem; }
.hero-phone a { color: var(--brown); font-weight: 600; }
.hero-visual { display: flex; justify-content: center; align-items: center; }

@keyframes petalBloom {
  from { transform: scale(0.82); opacity: 0.6; }
  to   { transform: scale(1);    opacity: 1; }
}
.sunflower-svg {
  animation: petalBloom 0.9s ease-out forwards;
  transform-origin: center;
}

/* ============================
   TAGLINE STRIP
   ============================ */
.tagline-strip {
  background: var(--soft-yellow);
  padding: 1.25rem 2rem;
  text-align: center;
}
.tagline-strip p {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ============================
   SERVICES PREVIEW (home)
   ============================ */
.services-preview { background: var(--white); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow { background: none; padding: 0; margin-bottom: 0.75rem; display: block; }
.section-header p { color: #666; max-width: 480px; margin: 0.5rem auto 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--brown); margin-bottom: 0.5rem; }
.service-card p { color: #666; font-size: 0.9rem; }
.section-link { text-align: center; }
.section-link a {
  color: var(--brown);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* ============================
   PHILOSOPHY QUOTE
   ============================ */
.philosophy {
  background: var(--brown);
  padding: 5rem 2rem;
  text-align: center;
}
.philosophy blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
}
.philosophy cite {
  color: var(--gold);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================
   CONTACT STRIP (home)
   ============================ */
.contact-strip {
  background: var(--soft-yellow);
  padding: 4rem 2rem;
  text-align: center;
}
.contact-strip h2 { margin-bottom: 0.75rem; }
.contact-strip > p { color: #666; margin-bottom: 2rem; }
.contact-details {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.contact-detail .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.25rem;
}
.contact-detail p { font-weight: 600; color: var(--brown); margin: 0; }

/* ============================
   ABOUT PAGE
   ============================ */
.about-mission { background: var(--white); }
.about-mission .inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-mission p { font-size: 1.1rem; color: #444; line-height: 1.8; }

.features-grid { background: var(--cream); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-block {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--soft-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
}
.feature-block h3 { margin-bottom: 0.5rem; }
.feature-block p { font-size: 0.9rem; color: #666; }

.team-section { background: var(--white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.team-card { text-align: center; }
.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--soft-yellow);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 4px solid var(--gold);
}
.team-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.85rem; color: var(--sage); font-weight: 500; }

.cta-banner {
  background: var(--gold);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-banner h2 { color: var(--brown); margin-bottom: 0.75rem; }
.cta-banner > p { color: var(--brown); margin-bottom: 2rem; opacity: 0.8; }

/* ============================
   SERVICES PAGE
   ============================ */
.services-list { background: var(--cream); }
.service-full {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 6px solid var(--gold);
}
.service-full-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--soft-yellow);
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  font-size: 2.8rem;
  text-align: center;
}
.service-full-icon span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}
.service-full-body h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.service-full-body p { color: #555; line-height: 1.8; margin-bottom: 1.25rem; }
.services-cta {
  background: var(--brown);
  padding: 4rem 2rem;
  text-align: center;
}
.services-cta h2 { color: var(--cream); margin-bottom: 0.75rem; }
.services-cta p { color: rgba(253,250,243,0.75); margin-bottom: 2rem; }

/* ============================
   NEW CLIENT FORM
   ============================ */
.form-section { background: var(--cream); }
.form-section .inner { max-width: 680px; margin: 0 auto; }
.intake-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.form-group label .req { color: #c0392b; margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E0D8CC;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit .btn { width: 100%; padding: 16px; font-size: 1rem; }
.form-note { text-align: center; font-size: 0.8rem; color: #999; margin-top: 1rem; }
.form-alt {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--soft-yellow);
  border-radius: var(--radius-md);
  text-align: center;
}
.form-alt h3 { margin-bottom: 0.5rem; }
.form-alt p { font-size: 0.9rem; color: #555; margin-bottom: 0.2rem; }
.form-alt a { color: var(--brown); font-weight: 600; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--brown);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-dropdown-menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    margin-top: 0.5rem;
    min-width: 0;
  }
  .nav-dropdown-toggle { font-size: 1rem; width: 100%; justify-content: space-between; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual svg { width: 180px; height: 180px; }

  .cards-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .service-full { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-details { flex-direction: column; gap: 1.5rem; }
  .intake-form { padding: 2rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .sunflower-svg { animation: none; }
}
