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

:root {
  --sage: #8aaa8c;
  --sage-dark: #4d6e50;
  --sage-light: #e8f0e8;
  --sage-pale: #f4f7f4;
  --warm: #c9a97a;
  --warm-dark: #8a6640;
  --warm-pale: #faf5ef;
  --ink: #1e2620;
  --ink-mid: #3d4a40;
  --muted: #7a8a7d;
  --off-white: #faf9f6;
  --white: #ffffff;
  --border: rgba(138,170,140,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--sage-dark);
  padding: 0.55rem 1.4rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--ink); transform: translateY(-1px); }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
  background: var(--sage-pale);
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(138,170,140,0.12);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  color: var(--sage-dark);
}

.hero-subtitle {
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--ink-mid);
  margin-bottom: 2.5rem;
  max-width: 380px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--white);
  background: var(--sage-dark);
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--sage-dark);
  border: 1px solid var(--sage);
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--sage-dark); color: var(--white); }

.hero-trust {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage-dark);
  line-height: 1;
}

.trust-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.hero-right {
  background: var(--sage-dark);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 3rem;
}

.hero-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.hero-right::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.hero-right::after {
  content: '';
  position: absolute;
  top: 40px; right: 40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(201,169,122,0.2);
}

.hero-quote-card {
  background: rgba(30,38,32,0.72);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 1.25rem;
  padding: 2.25rem 2.5rem;
  max-width: 420px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(6px);
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-divider {
  width: 3rem;
  height: 1px;
  background: var(--warm);
  margin-bottom: 1.5rem;
}

.quote-name {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* SERVICES */
.services {
  padding: 8rem 6rem;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 400;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
}

.section-title em { font-style: italic; color: var(--sage-dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--sage-pale);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}

.service-card:hover { background: var(--sage-light); }

.service-card-photo {
  display: block;
  width: calc(100% + 4rem);
  margin: -2.5rem -2rem 1.75rem;
  height: 190px;
  object-fit: cover;
  object-position: center top;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 1.5; }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-card p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.8;
}

.service-card ul {
  list-style: none;
  margin-top: 1rem;
}

.service-card ul li {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink-mid);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sage);
}

/* PROCESS */
.process {
  padding: 8rem 6rem;
  background: var(--warm-pale);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
  margin-top: 4rem;
}

.process-intro p {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.process-photo {
  display: block;
  width: 100%;
  margin-top: 2rem;
  border-radius: 0.75rem;
  object-fit: cover;
  max-height: 280px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(138,170,140,0.2);
  position: relative;
}

.process-step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--sage-dark);
  line-height: 1;
  padding-top: 0.2rem;
}

.step-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.85;
}

/* ABOUT */
.about {
  padding: 8rem 6rem;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.cecilia-portrait {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--warm);
  margin-bottom: 1.5rem;
  display: block;
}

.about-text .section-eyebrow { color: var(--warm); }

.about-text .section-title { color: var(--white); }
.about-text .section-title em { color: var(--warm); }

.about-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-top: 1.5rem;
}

.credentials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.credential-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--warm);
  flex-shrink: 0;
}

.credential span {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 1.75rem;
}

.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

/* WORKSHOPS */
.workshops {
  padding: 8rem 6rem;
  background: var(--sage-pale);
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.workshop-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}

.workshop-card:hover { transform: translateY(-4px); border-color: var(--sage); }

.workshop-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 0.3rem 0.75rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.workshop-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.workshop-card p {
  font-size: 0.93rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.8;
}

.workshop-duration {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-dark);
  font-weight: 400;
}

/* TESTIMONIAL */
.testimonial {
  padding: 8rem 6rem;
  background: var(--warm-pale);
  text-align: center;
}

.testimonial-inner {
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  line-height: 0.6;
  color: var(--warm);
  opacity: 0.55;
  display: block;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-style: normal;
}

.testimonial-cite {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-dark);
  font-style: normal;
}

/* CONTACT */
.contact {
  padding: 8rem 6rem;
  background: var(--sage-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.contact-left .section-eyebrow { color: rgba(255,255,255,0.5); }

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-title em { font-style: italic; color: rgba(255,255,255,0.5); }

.contact-subtext {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  margin-top: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  min-width: 60px;
}

.contact-info-item .value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.contact-info-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.contact-info-item a:hover { color: var(--white); text-decoration: underline; }

.contact-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.5rem;
  padding: 2.5rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group select option { color: var(--ink); background: var(--white); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(255,255,255,0.4); }

.form-group textarea { height: 100px; resize: vertical; }

.btn-form {
  width: 100%;
  background: var(--warm);
  color: var(--ink);
  border: none;
  border-radius: 2rem;
  padding: 0.9rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-form:hover { background: #d4b47f; transform: translateY(-1px); }

/* FOOTER */
footer {
  background: var(--ink);
  padding: 3rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 99;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 122, 0.45);
  background: var(--sage-dark);
  color: var(--off-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(30, 38, 32, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.94);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--ink);
  border-color: var(--warm);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(30, 38, 32, 0.28);
  outline: none;
}

.scroll-top:active {
  transform: translateY(1px) scale(0.98);
}

.scroll-top.is-visible:active {
  transform: translateY(1px) scale(0.98);
}

.scroll-top-icon {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left > * {
  animation: fadeUp 0.7s ease forwards;
  opacity: 0;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-trust { animation-delay: 0.5s; }

.hero-quote-card {
  animation: fadeUp 0.7s 0.35s ease forwards;
  opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav { padding: 1.25rem 2rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left {
    padding: 5rem 2.5rem 4rem;
    background:
      linear-gradient(rgba(244,247,244,0.78), rgba(244,247,244,0.86)),
      url('/images/hero-plants.jpg') center/cover no-repeat,
      var(--sage-pale);
  }
  .hero-right { display: none; }
  .services { padding: 5rem 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process { padding: 5rem 2.5rem; }
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about { padding: 5rem 2.5rem; grid-template-columns: 1fr; }
  .workshops { padding: 5rem 2.5rem; }
  .workshops-grid { grid-template-columns: 1fr 1fr; }
  .testimonial { padding: 5rem 2.5rem; }
  .contact { padding: 5rem 2.5rem; grid-template-columns: 1fr; }
  footer { padding: 2rem 2.5rem; flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 1.5rem; }
  .scroll-top { bottom: 1.25rem; right: 1.25rem; width: 2.875rem; height: 2.875rem; }
}
