*, *::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-tagline {
  margin: 0 auto 0 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--sage-dark);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

.nav-links li {
  position: relative;
}

.nav-links a {
  display: inline-block;
  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-item--dropdown > a {
  padding: 0.4rem 0;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 101;
  min-width: 16rem;
  padding: 0.65rem 0;
  list-style: none;
  background: rgba(250,249,246,0.98);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 12px 32px rgba(30,38,32,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 0.35rem);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: none;
  white-space: normal;
}

.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); }

.nav-mobile-cta {
  display: none;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  background: linear-gradient(to right, var(--sage-pale) 50%, var(--sage-dark) 50%);
}

.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: 700;
  color: var(--sage-dark);
  border: 2px solid var(--sage-dark);
  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-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: 0.72;
}

.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);
}

.hero-left .hero-quote-card {
  margin-top: 2rem;
}

.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: 0;
}

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

/* 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-wrap {
  display: block;
  width: calc(100% + 4rem);
  margin: -2.5rem -2rem 1.75rem;
  height: 190px;
  overflow: hidden;
}

.service-card-photo {
  display: block;
  width: 100%;
  height: 360px;
  margin-top: -60px;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
}

.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: 300;
  color: #000;
  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-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 0.45rem 1rem;
  border-radius: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.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 */
a.footer-nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
a.footer-nav-link:hover { color: rgba(255,255,255,0.75); }

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);
  text-decoration: none;
}

.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-quote-card {
  animation: fadeUp 0.7s 0.35s ease forwards;
  opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 1250px) {
  .nav-tagline { display: none; }
  .nav-links { gap: 1rem; }
}

@media (max-width: 900px) {
  nav {
    padding: 0.85rem 1rem;
    flex-wrap: wrap;
  }

  .nav-brand {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  nav > .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 4.5rem);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(250,249,246,0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 34px rgba(30,38,32,0.12);
  }

  nav.nav-open .nav-links {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.7rem 0;
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .nav-item--dropdown > a {
    padding: 0.7rem 0 0.4rem;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0.35rem 0.8rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown a {
    padding: 0.42rem 0;
    font-size: 0.74rem;
  }

  .nav-mobile-cta {
    display: block;
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
  }

  .nav-mobile-cta .nav-cta {
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: clamp(0.68rem, 3vw, 0.78rem);
    line-height: 1.2;
    white-space: normal;
  }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; background: var(--sage-pale); }
  .hero-left { padding: 5rem 2.5rem 4rem; }
  .hero-right { display: none; }

  /* Show the plants image as a visible backdrop behind the hero text */
  .hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-plants.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
  }
  /* Override the sage-on-sage circle with a light cream tone so it stands
     out against the (now visible) green plant image. */
  .hero-left::before {
    z-index: 1;
    background: rgba(250, 249, 246, 0.55);
  }
  .hero-left > * { position: relative; z-index: 2; }
  /* Soft halo behind hero text for legibility over the image */
  .hero-left .hero-eyebrow,
  .hero-left .hero-title,
  .hero-left .hero-subtitle {
    text-shadow: 0 1px 2px rgba(250, 249, 246, 0.85);
  }
  .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: 1100px) and (min-width: 901px) {
  nav { padding: 1.25rem 2rem; }
}

@media (max-width: 600px) {
  nav { padding: 0.75rem 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .scroll-top { bottom: 1.25rem; right: 1.25rem; width: 2.875rem; height: 2.875rem; }
}

/* =====================================================================
   INNER PAGES — shared chrome + article + consider-this listing
   ===================================================================== */

/* body class applied to all inner pages so nav push-down is automatic */
body.pc-inner {
  padding-top: 72px;
}

/* ---- FOOTER NAV (inner pages only) ---- */
.footer-nav {
  position: static;
  z-index: auto;
  background: none;
  backdrop-filter: none;
  border-bottom: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: rgba(255,255,255,0.75); }

/* ---- ARTICLE TEMPLATE ---- */

.article-wrap {
  min-height: calc(100vh - 72px);
}

.article-header {
  background: var(--sage-pale);
  padding: 5rem 6rem 4.5rem;
  border-bottom: 1px solid var(--border);
}

.article-header-inner {
  max-width: 780px;
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color 0.2s;
}

.article-back svg {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.article-back:hover { color: var(--ink); }

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

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.article-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 640px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.article-date,
.article-reading-time {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.article-reading-time::before {
  content: '·';
  margin-right: 1.5rem;
}

/* Article prose body */
.article-body {
  padding: 4.5rem 6rem 5rem;
  background: var(--white);
}

.article-body-inner {
  max-width: 680px;
  margin: 0 auto;
}

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

.article-body-inner p:last-child { margin-bottom: 0; }

.article-body-inner strong {
  font-weight: 500;
  color: var(--ink);
}

.article-body-inner em {
  font-style: italic;
  color: var(--sage-dark);
}

.article-body-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin: 3rem 0 1rem;
}

.article-body-inner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin: 2.5rem 0 0.75rem;
}

.article-body-inner blockquote {
  border-left: 3px solid var(--warm);
  margin: 2.5rem 0;
  padding: 0.5rem 0 0.5rem 2rem;
}

.article-body-inner blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.article-body-inner blockquote p + p {
  margin-top: 0.75rem;
}

.article-body-inner hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

.article-body-inner ul,
.article-body-inner ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-body-inner li {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: 0.4rem;
}

/* Article footer (back link) */
.article-foot {
  padding: 3rem 6rem;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.article-foot-inner {
  max-width: 780px;
  margin: 0 auto;
}

.article-back--foot {
  margin-bottom: 0;
}

/* ---- SHARED CTA STRIP ---- */
.pc-cta-strip {
  background: var(--warm-pale);
  padding: 6rem 6rem;
  border-top: 1px solid rgba(201,169,122,0.25);
}

.pc-cta-strip-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pc-cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
}

.pc-cta-heading em {
  font-style: italic;
  color: var(--sage-dark);
}

.pc-cta-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* ---- CONSIDER THIS — listing page ---- */

.ct-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 6rem 6rem 5.5rem;
}

/* Parallax image layer — taller than the hero so translateY has room to move */
.ct-hero-bg {
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  bottom: -50%;
  background: url('/images/consider-this-hero.jpg') center 25% / cover no-repeat;
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

/* Dark ink overlay sits above the image layer */
.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,30,24,0.68);
  z-index: 1;
  pointer-events: none;
}

.ct-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.ct-hero .section-eyebrow { color: var(--warm); }

.ct-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin: 0.75rem 0 1.25rem;
}

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

.ct-hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 560px;
}

.ct-articles {
  padding: 6rem 6rem;
  background: var(--white);
}

.ct-articles-inner {
  max-width: 960px;
  margin: 0 auto;
}

.ct-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ct-card {
  display: flex;
  flex-direction: column;
  background: var(--sage-pale);
  border-radius: 1rem;
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

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

.ct-card-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.ct-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ct-card-sub {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
}

.ct-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.ct-card-read {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-top: auto;
  transition: color 0.2s;
}

.ct-card:hover .ct-card-read { color: var(--ink); }

.ct-empty {
  font-size: 1.05rem;
  color: var(--muted);
  font-style: italic;
}

/* ---- INNER PAGE RESPONSIVE ---- */
@media (max-width: 1100px) {
  .article-header,
  .article-body,
  .article-foot,
  .pc-cta-strip,
  .ct-hero,
  .ct-articles { padding-left: 2.5rem; padding-right: 2.5rem; }
}

@media (max-width: 900px) {
  body.pc-inner { padding-top: 60px; }
  .ct-grid { grid-template-columns: 1fr; }
  .ct-hero { padding: 4rem 2.5rem 3.5rem; }
  .ct-hero-bg { background-position: 38% 25%; }
  .article-header { padding: 4rem 1.5rem 3.5rem; }
  .article-body { padding: 3rem 1.5rem 4rem; }
  .article-foot { padding: 2rem 1.5rem; }
  .pc-cta-strip { padding: 4rem 1.5rem; }
  .footer-nav { gap: 0.5rem 1.25rem; }
}

@media (max-width: 600px) {
  .article-header,
  .article-body,
  .article-foot,
  .pc-cta-strip,
  .ct-hero,
  .ct-articles { padding-left: 1.25rem; padding-right: 1.25rem; }
  .ct-card { padding: 2rem 1.5rem; }
}
