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

:root {
  --sage:       #7D9B7A;
  --sage-light: #B5C4B3;
  --sage-deep:  #4F6B4D;
  --blush:      #E8D5CC;
  --linen:      #E8DDD0;
  --warm-sand:  #C8A882;
  --mist-blue:  #7B9DAB;
  --taupe:      #C4B5A0;
  --warm-gray:  #A89E8C;
  --slate-gray: #8C9198;
  --gray-light: #D4D7DC;
  --charcoal:   #3D4147;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--linen);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--sage);
  border-bottom: 3px solid var(--blush);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-divider { width: 1px; height: 38px; background: rgba(255,255,255,0.4); flex-shrink: 0; }
.nav-logo-wordmark { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.nav-logo-brand { font-family: 'Fredoka', sans-serif; font-size: 22px; font-weight: 400; color: white; line-height: 1; letter-spacing: 0.5px; }
.nav-logo-tagline { font-family: 'Questrial', sans-serif; font-size: 10px; color: rgba(255,255,255,0.75); letter-spacing: 3px; text-transform: uppercase; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); transition: color 0.2s;
}
.nav-links a:hover { color: white; }

.btn-nav {
  background: white; color: var(--sage-deep); border: none;
  padding: 10px 22px; border-radius: 40px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.btn-nav:hover { background: var(--linen); }

section { padding: 6rem 2.5rem; }

/* HERO */
.hero {
  min-height: 86vh;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 5rem 4rem;
  background: var(--sage-light);
  position: relative; overflow: hidden;
}

.hero-bg-shape {
  position: absolute; right: -60px; bottom: -60px;
  width: 480px; height: 480px; border-radius: 50%;
  background: var(--blush); opacity: 0.45; z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-tag {
  display: inline-block;
  background: var(--blush); color: var(--sage-deep);
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 40px; margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px; font-weight: 300; line-height: 1.12;
  color: var(--charcoal); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--sage-deep); }

.hero p {
  font-size: 16px; color: var(--sage-deep);
  max-width: 420px; margin-bottom: 2.5rem; line-height: 1.75;
}

.hero-ctas { display: flex; gap: 1rem; align-items: center; }

.btn-primary {
  background: var(--sage); color: white; border: none;
  padding: 14px 32px; border-radius: 40px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: var(--sage-deep); }

.btn-outline {
  background: transparent; color: var(--sage-deep);
  border: 1.5px solid var(--sage); padding: 14px 32px;
  border-radius: 40px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { background: white; }

.hero-visual { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 1rem; }

.hero-card {
  background: white; border: 0.5px solid var(--gray-light);
  border-radius: 16px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}

.hero-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blush); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}

.hero-card-label { font-size: 13px; color: var(--slate-gray); }
.hero-card-title { font-size: 15px; font-weight: 500; color: var(--charcoal); }
.hero-card.offset { margin-left: 2rem; }

/* ABOUT */
.about {
  background: var(--linen);
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 5rem; align-items: center;
}

.about-badges-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; width: 100%; margin-bottom: 1rem; }

.about-badge {
  background: white; border: 0.5px solid var(--taupe);
  border-radius: 12px; padding: 1.5rem; width: 100%;
}

.about-badge-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px; font-weight: 400; color: var(--sage); line-height: 1;
}
.about-badge-label { font-size: 13px; color: var(--warm-gray); margin-top: 4px; }

.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; line-height: 1.2;
  color: var(--charcoal); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--sage-deep); }

.about p { color: var(--warm-gray); margin-bottom: 1.25rem; font-size: 15px; line-height: 1.8; }

.about-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-style: italic; color: var(--sage-deep); margin-top: 0.5rem;
}

/* SERVICES */
.services { background: white; }
.services-header { text-align: center; margin-bottom: 3.5rem; }

.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 960px; margin: 0 auto;
}

.service-card {
  background: var(--linen); border: 0.5px solid var(--taupe);
  border-radius: 20px; padding: 2rem;
  transition: border-color 0.2s;
  position: relative; overflow: hidden;
}
.service-card:hover { border-color: var(--sage); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--blush); opacity: 0; transition: opacity 0.2s;
}
.service-card:hover::before { opacity: 1; }

.service-icon { font-size: 28px; margin-bottom: 1rem; display: block; }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem;
}
.service-card p { font-size: 14px; color: var(--warm-gray); line-height: 1.8; }

.service-tag {
  display: inline-block; margin-top: 1.25rem;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sage-deep); padding: 5px 14px;
  background: var(--sage-light); border-radius: 40px;
}
.service-tag.blush { color: var(--charcoal); background: var(--blush); }

.addon-note {
  max-width: 960px; margin: 1.5rem auto 0;
  background: var(--linen); border: 0.5px solid var(--taupe);
  border-radius: 14px; padding: 1.25rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 13.5px; color: var(--warm-gray); line-height: 1.7;
}
.addon-note strong { color: var(--charcoal); font-weight: 500; }

/* TESTIMONIALS */
.testimonials { background: var(--sage-light); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }

.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem; max-width: 1000px; margin: 0 auto;
}

.testimonial-card {
  background: white; border: 0.5px solid var(--gray-light);
  border-radius: 16px; padding: 1.75rem;
}

.stars { color: var(--warm-sand); font-size: 15px; letter-spacing: 2px; margin-bottom: 1rem; }

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; font-weight: 300;
  color: var(--charcoal); line-height: 1.65; margin-bottom: 1.25rem;
}

.testimonial-author { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.testimonial-location { font-size: 12px; color: var(--slate-gray); margin-top: 2px; }
.testimonials-note { text-align: center; margin-top: 2rem; font-size: 13px; color: var(--sage-deep); font-style: italic; }

/* CONTACT */
.contact {
  background: var(--charcoal);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}

.contact .section-eyebrow { color: var(--sage-light); }
.contact .section-title { color: white; }
.contact .section-title em { color: var(--sage-light); }
.contact-lead { color: var(--warm-gray); font-size: 15px; line-height: 1.8; margin-bottom: 2rem; }

.contact-info-row {
  display: flex; gap: 0.75rem; align-items: center;
  margin-bottom: 0.75rem; font-size: 14px; color: var(--warm-gray);
}
.contact-info-row span:first-child { font-size: 16px; width: 24px; text-align: center; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group label {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate-gray); margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.15); border-radius: 10px;
  padding: 12px 14px; font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: white; outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage-light); }
.form-group select option { background: var(--charcoal); color: white; }
.form-group textarea { resize: none; height: 100px; }

.btn-submit {
  background: var(--sage); color: white; border: none;
  padding: 15px 32px; border-radius: 40px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: background 0.2s; width: 100%; margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--sage-deep); }

/* FOOTER */
footer {
  background: #2e3035; padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 3px solid var(--sage);
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-divider { width: 1px; height: 32px; background: var(--sage); opacity: 0.5; flex-shrink: 0; }
.footer-logo-wordmark { display: flex; flex-direction: column; gap: 1px; }
.footer-logo-brand { font-family: 'Fredoka', sans-serif; font-size: 18px; font-weight: 400; color: var(--sage-light); line-height: 1; letter-spacing: 0.5px; }
.footer-logo-tagline { font-family: 'Questrial', sans-serif; font-size: 9px; color: var(--warm-gray); letter-spacing: 3px; text-transform: uppercase; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
  text-decoration: none; font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--warm-gray); transition: color 0.2s;
}
.footer-links a:hover { color: var(--sage-light); }
.footer-copy { font-size: 12px; color: var(--slate-gray); }

/* UTILITIES */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* FOCUS */
:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

/* PLACEHOLDER — dark contact form */
.contact .form-group input::placeholder,
.contact .form-group select::placeholder,
.contact .form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

/* CONTAINER QUERIES — services and testimonials grids */
.services { container-type: inline-size; }
.testimonials { container-type: inline-size; }

@container (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

@container (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* MOBILE NAV TOGGLE */
.btn-menu {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
  background: transparent; border: none; cursor: pointer;
}
.btn-menu span {
  display: block; height: 2px; width: 100%;
  background: white; border-radius: 2px; transition: all 0.2s;
}

/* FORM SUCCESS */
.form-success {
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center;
  min-height: 200px; gap: 0.75rem;
}
.form-success-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; color: white;
}
.form-success p { color: var(--warm-gray); font-size: 15px; }
.form-error { color: #c0392b; font-size: 14px; margin-top: 0.5rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero, .about, .contact { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .hero { min-height: auto; }
  .hero h1 { font-size: 42px; }
  .hero-bg-shape { display: none; }
  nav { padding: 0 1.5rem; }
  .btn-menu { display: flex; }
  .btn-nav { display: none; }
  .nav-links { display: none; }
  .nav-links.nav-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--sage); padding: 1rem 1.5rem;
    border-bottom: 3px solid var(--blush);
  }
  .nav-links.nav-open a { padding: 0.75rem 0; font-size: 14px; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
