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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.85;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 16px;
  line-height: 1.85;
}

strong {
  font-weight: 600;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 6% 6rem;
  background: var(--soft-nude);
  position: relative;
  overflow: hidden;
}

/* Soft blush organic blob top right */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 650px;
  height: 650px;
  background: var(--light-blush);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: 0;
}

/* Sage blob bottom left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 280px;
  height: 280px;
  background: var(--pale-sage);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  background: var(--warm-white);
  border-radius: 30px;
  padding: 4.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 10px 10px 40px var(--shadow-color),
    -10px -10px 40px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  text-align: left;
}

.hero-left h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.hero-left h1 span.accent {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--accent-rose);
  display: block;
  margin-top: 0.3rem;
}

.hero-left p.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: flex-start;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.organic-frame {
  width: 320px;
  height: 380px;
  background: var(--soft-nude);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  overflow: hidden;
  box-shadow: inset 8px 8px 20px var(--shadow-color),
    inset -8px -8px 20px rgba(255, 255, 255, 0.7);
  padding: 15px;
}

.organic-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.btn-filled {
  background: var(--accent-rose);
  color: var(--warm-white);
  padding: 0.95rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 4px 4px 15px rgba(242, 200, 204, 0.4);
}

.btn-filled:hover {
  background: #dfb2b7;
  transform: translateY(-2px);
  box-shadow: 6px 6px 20px rgba(242, 200, 204, 0.6);
}

.btn-text {
  color: var(--charcoal);
  background: var(--warm-white);
  border: 1px solid var(--accent-rose);
  padding: 0.95rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-text:hover {
  background: var(--soft-nude);
  color: var(--charcoal);
}

.hero-visual {
  display: none;
}

/* TRUST BAR */
.trust-bar {
  background: var(--pale-sage);
  padding: 1.5rem 6%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  border-top: 1px solid var(--eucalyptus-green);
  border-bottom: 1px solid var(--eucalyptus-green);
}

.trust-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  text-align: center;
}

.trust-tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-tag {
  background: white;
  border: 1px solid var(--eucalyptus-green);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 14px;
  color: var(--charcoal);
  text-align: center;
}

/* ABOUT */
.about {
  position: relative;
  overflow: hidden;
  padding: 5rem 6%;
  background: var(--soft-nude);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-decor {
  position: absolute;
  bottom: 0;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.about-decor.left {
  left: 0;
  width: 37.5%;
  max-width: 480px;
}

.about-decor.right {
  right: 0;
  width: 37.5%;
  max-width: 480px;
}

.about-decor img {
  display: block;
  width: 100%;
  height: auto;
}

.about-text {
  position: relative;
  z-index: 2;
  background: var(--warm-white);
  border-radius: 30px;
  padding: 4.5rem 3rem;
  box-shadow: 10px 10px 40px var(--shadow-color),
    -10px -10px 40px rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.6);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  text-align: center;
  line-height: 1.9;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.about-photos {
  display: none;
}

.cred-chips {
  justify-content: center;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cred-chip {
  background: var(--pale-sage);
  border: 1px solid var(--gentle-sage);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 15px;
  color: var(--charcoal);
}

.about-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--accent-rose);
  font-size: 1.05rem;
  margin: 1.5rem 0;
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

h2 em {
  color: var(--accent-rose);
  font-style: italic;
}

/* SERVICES */
.services {
  padding: 5rem 6%;
  background: var(--soft-nude);
  border-bottom: 1px solid #c0b6a7;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-head {
  max-width: 600px;
  margin: 0 auto 5rem;
  text-align: center;
}

.services-head p {
  line-height: 1.85;
  color: var(--charcoal);
  font-weight: 300;
  margin-top: 1rem;
}

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

.service-card {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 8px 8px 25px var(--shadow-color),
    -8px -8px 25px rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 12px 12px 35px var(--shadow-color),
    -12px -12px 35px rgba(255, 255, 255, 0.9);
  background: var(--warm-white);
}

.service-icon-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.service-image-wrap {
  width: 144px;
  height: 144px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.08);
}

@media (min-width: 901px) {
  .services-grid > .service-card:last-child {
    grid-column: 2;
  }
}

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.service-card .card-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent-rose);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s, color 0.2s;
  margin-top: auto;
}

.service-card .card-link::after {
  content: ' →';
}

.service-card .card-link:hover {
  color: var(--accent-rose-dark);
  gap: 0.5rem;
}

/* QUOTE / PHILOSOPHY BANNER */
.philosophy-banner {
  background: var(--charcoal);
  padding: 7rem 6%;
  position: relative;
  overflow: hidden;
}

.philosophy-banner::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 4%;
  font-family: serif;
  font-size: 18rem;
  color: rgba(196, 128, 106, 0.08);
  line-height: 1;
  pointer-events: none;
}

.pb-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.pb-tag {
  display: inline-block;
  background: rgba(196, 128, 106, 0.15);
  color: var(--accent-rose);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(196, 128, 106, 0.25);
}

.pb-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: white;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.pb-attr {
  font-size: 0.82rem;
  color: var(--accent-rose);
}

.pb-values {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.pb-value {
  text-align: center;
}

.pb-value-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.pb-value h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.4rem;
}

.pb-value p {
  font-size: 0.82rem;
  color: rgba(250, 248, 246, 0.6);
  font-weight: 300;
  max-width: 180px;
  line-height: 1.5;
}

/* APPROACH STEPS */
.approach {
  padding: 5rem 6%;
  background: var(--warm-white);
}

.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.approach-head {
  max-width: 580px;
  margin: 0 auto 5rem;
  text-align: center;
}

.approach-head p {
  line-height: 1.8;
  color: var(--charcoal);
  font-weight: 300;
  margin-top: 1rem;
}

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

.approach-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  border-radius: 20px;
  background: var(--warm-white);
  border: 1px solid #c8beae;
  box-shadow: 8px 8px 25px var(--shadow-color),
    -8px -8px 25px rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-3px);
  box-shadow: 12px 12px 35px var(--shadow-color),
    -12px -12px 35px rgba(255, 255, 255, 0.9);
  background: var(--warm-white);
  border-color: var(--accent-rose);
}

.approach-num {
  flex-shrink: 0;
  min-width: 52px;
  height: 52px;
}

.approach-image-wrap {
  width: 120px;
  height: 120px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.approach-step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-card:hover .approach-image-wrap {
  transform: scale(1.08);
}

.approach-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.approach-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal);
  font-weight: 300;
}

/* ASSESSMENT */
.assessment {
  background: var(--soft-ivory);
  border-top: 1px solid var(--dusty-pink);
  border-bottom: 1px solid var(--dusty-pink);
  padding: 5rem 6%;
}

.assessment-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.assessment h2 {
  margin-bottom: 1.2rem;
}

.assessment p {
  line-height: 1.85;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 1rem;
}

.assessment-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-rose);
  border-left: 3px solid var(--accent-rose);
  padding-left: 1.2rem;
  line-height: 1.6;
  margin: 1.5rem 0 2rem;
}

.assess-box {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--dusty-pink);
}

.assess-box h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.assess-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.assess-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: var(--soft-ivory);
  border-radius: 10px;
  font-size: 15px;
  color: var(--charcoal);
  border: 1px solid var(--dusty-pink);
}

.assess-item::before {
  content: '–';
  font-size: 0.9rem;
  color: var(--accent-rose);
}

/* CONTACT */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--pale-sage);
  padding: 5rem 6%;
}

.contact-decor {
  position: absolute;
  bottom: 0;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

.contact-decor.left {
  left: 0;
  width: 37.5%;
  max-width: 480px;
}

.contact-decor.right {
  right: 0;
  width: 37.5%;
  max-width: 480px;
}

.contact-decor img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.contact-left h2 {
  margin-bottom: 1rem;
}

.contact-left p {
  line-height: 1.85;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--warm-taupe);
  font-size: 16px;
  color: var(--charcoal);
}

.contact-detail a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--eucalyptus-green);
}

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--warm-taupe);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--charcoal);
}

form {
  background: var(--warm-white);
  padding: 3rem;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 8px 8px 25px var(--shadow-color),
    -8px -8px 25px rgba(255, 255, 255, 0.7);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
}

.form-success .success-icon {
  font-size: 2.5rem;
}

.form-success h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.7;
}

.form-error {
  background: #fdf0ee;
  border: 1px solid var(--dusty-pink);
  color: var(--accent-rose-dark);
  font-size: 0.85rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  display: none;
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

form h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--warm-taupe);
  border-radius: 10px;
  background: var(--warm-white);
  font-family: inherit;
  font-size: 16px;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
  box-shadow: inset 2px 2px 5px rgba(95, 95, 95, 0.05);
}

form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--eucalyptus-green);
}

form textarea {
  min-height: 110px;
  resize: vertical;
}

form ::placeholder {
  color: var(--charcoal);
  opacity: 0.5;
}

/* WORKSHOPS */
.workshops {
  padding: 5rem 6%;
  background: var(--pale-sage);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.workshops-inner {
  max-width: 640px;
}

.workshops-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--light-blush);
  color: var(--accent-rose);
  border: 1px solid var(--dusty-pink);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.workshops h2 {
  margin-bottom: 1.2rem;
}

.workshops-coming {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem 3rem;
  background: var(--soft-ivory);
  border: 1.5px dashed var(--gentle-sage);
  border-radius: 16px;
}

.workshops-coming span {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-rose);
}

.workshops-coming p {
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
  max-width: 320px;
}

/* AFFILIATIONS */
.affiliations {
  background: white;
  padding: 3rem 6%;
  border-top: 1px solid var(--dusty-pink);
  border-bottom: 1px solid var(--dusty-pink);
}

.affiliations-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.affiliations-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

.affiliations-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.affiliations-logos img {
  height: 96px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
}

.affiliations-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}



/* Hero logo stamp */
.hero-stamp {
  width: 100%;
  max-width: 1040px;
  height: 360px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.hero-stamp svg {
  width: 100%;
  height: 100%;
}

/* Watercolor blob override — richer gradient */
.hero::before {
  background: radial-gradient(ellipse at 60% 40%, #e8b8a8 0%, #f2d0c4 35%, #f8e8e2 65%, transparent 85%) !important;
  filter: blur(2px);
  opacity: 0.85;
}

.hero::after {
  background: radial-gradient(ellipse at 40% 55%, #c8d8c0 0%, #dce8d8 50%, transparent 80%) !important;
  filter: blur(1px);
  opacity: 0.7;
}

/* Stamp-style section tags */
.section-tag {
  display: inline-block;
  background: var(--light-blush);
  color: var(--accent-rose);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
}

.section-tag {
  font-size: 14px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}

.section-tag.tag-peach {
  background: var(--accent-peach) !important;
  color: var(--charcoal) !important;
  font-size: 14px !important;
  padding: 0.45rem 1.1rem !important;
}

.section-tag.tag-dusty-pink {
  background: var(--dusty-pink) !important;
  color: var(--charcoal) !important;
  font-size: 14px !important;
  padding: 0.45rem 1.1rem !important;
}

.section-tag.tag-how-it-works {
  background: var(--blush) !important;
  color: var(--charcoal) !important;
  border: 1px solid var(--dusty-pink) !important;
  font-size: 14px !important;
  padding: 0.45rem 1.1rem !important;
}

.section-tag.tag-services {
  background: var(--pale-sage) !important;
  color: var(--charcoal) !important;
  font-size: 14px !important;
  padding: 0.45rem 1.1rem !important;
}

.section-tag.tag-contact {
  background: var(--warm-white) !important;
  color: var(--charcoal) !important;
  border: 1px solid var(--warm-taupe) !important;
  font-size: 14px !important;
  padding: 0.45rem 1.1rem !important;
}

#how-it-works .approach-card {
  border: 1px solid #c8beae !important;
}

.hero-tag {
  letter-spacing: 0.06em;
}

/* Seedling SVG decoration */
.seedling-svg {
  display: block;
}

/* Watercolor accent divider */
.wc-divider {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--blush-mid) 20%, var(--blush-deep) 50%, var(--blush-mid) 80%, transparent);
  opacity: 0.45;
  border: none;
}

@media (max-width: 900px) {

  .hero-content,
  .about,
  .contact-inner,
  .assessment-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 3rem 2rem;
    gap: 3rem;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left p.hero-sub {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .services-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    gap: 1rem;
  }

  .pb-values {
    gap: 2rem;
  }
}



details.qualifications {
  margin-top: 2rem;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background: var(--warm-white);
  border: 1px solid var(--dusty-pink);
  border-radius: 8px;
  padding: 1rem;
}

details.qualifications summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--accent-rose);
  outline: none;
  user-select: none;
  font-size: 15px;
}

details.qualifications ul {
  margin-top: 1rem;
  list-style: none;
  padding-left: 0;
}

details.qualifications li {
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

/* MARKERS STRIP */
.markers-strip {
  background: var(--pale-sage);
  padding: 3rem 6%;
  border-top: 1px solid var(--gentle-sage);
  border-bottom: 1px solid var(--gentle-sage);
}

.markers-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.marker-item {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.4;
}

.marker-item span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--charcoal);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .markers-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .markers-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 1200px) {
  .about-decor,
  .contact-decor {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 2.5rem 1.25rem;
    border-radius: 20px;
  }
  .organic-frame {
    width: 250px;
    height: 300px;
  }
  .contact {
    padding: 3.5rem 4%;
  }
  .contact-inner {
    width: 100%;
    max-width: 100%;
    gap: 3rem;
  }
  .contact-left {
    width: 100%;
    max-width: 100%;
  }
  form {
    padding: 2rem 1.25rem;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .hero-actions .btn-filled,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
    margin: 0 !important;
  }
}
