/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #F5F0EB;
  color: #2C2825;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 780px;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background-color: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(44, 40, 37, 0.08);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-header__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.site-header__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2C2825;
}

.site-header__cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2C2825;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  padding-bottom: 2px;
}

.site-header__cta:hover {
  border-color: #7D8B6E;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-flowers.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: -1;
}


.hero__logo {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  margin-bottom: 2rem;
  border-radius: 50%;
  box-shadow: 0 4px 30px rgba(44, 40, 37, 0.25);
}

.hero__title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #2C2825;
  margin-bottom: 1.5rem;
}

.hero__tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #2C2825;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  max-width: 500px;
}


.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(44, 40, 37, 0.35);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: gentleBounce 2.5s ease-in-out infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

@keyframes gentleBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========================================
   BOTANICAL DIVIDER
   ======================================== */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

.divider__line {
  width: 60px;
  height: 1px;
  background-color: rgba(44, 40, 37, 0.12);
}

.divider__leaf {
  margin: 0 1rem;
  color: #7D8B6E;
  opacity: 0.5;
}

.divider__leaf svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
}

/* ========================================
   SECTIONS — GENERAL
   ======================================== */
section {
  padding: 5rem 0;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7D8B6E;
  margin-bottom: 2rem;
}

/* ========================================
   INTRO
   ======================================== */
.intro {
  padding: 2rem 0 2rem;
}

.intro__image {
  display: block;
  margin: 0 auto 32px auto;
  border-radius: 9000px;
}

.intro__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  line-height: 1.65;
  color: #2C2825;
  text-align: center;
  /* max-width: 680px; */
  margin: 0 auto 32px auto;
}

.intro__text em {
  font-style: italic;
  color: #7D8B6E;
}

/* Image placeholder for intro area */
.intro__image-placeholder {
  width: 100%;
  /* max-width: 680px; */
  aspect-ratio: 3 / 2;
  margin: 3rem auto 0;
  border: 1px dashed rgba(44, 40, 37, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(44, 40, 37, 0.25);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: none; /* Hidden by default */
}

/* ========================================
   REGENERATIVE DIFFERENCE
   ======================================== */
.difference {
  padding: 2rem 0 5rem 0;
}

.difference__header {
  text-align: center;
  margin-bottom: 4rem;
}

.difference__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.difference__subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(44, 40, 37, 0.6);
}

.difference__content {
  max-width: 780px;
  margin: 0 auto;
}

.difference__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(44, 40, 37, 0.08);
}

.difference__item:last-child {
  border-bottom: 1px solid rgba(44, 40, 37, 0.08);
}

.difference__item-heading {
  font-size: 1.5rem;
  font-weight: 500;
  color: #2C2825;
}

.difference__item-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(44, 40, 37, 0.75);
}

.regenerative__image {
  display: block;
  margin: 0 auto 64px auto;
}

/* Image placeholder between difference items */
.difference__image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 2rem 0;
  border: 1px dashed rgba(44, 40, 37, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(44, 40, 37, 0.25);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: none; /* Hidden by default */
}

@media (min-width: 768px) {
  .difference__item {
    grid-template-columns: 220px 1fr;
    gap: 3rem;
    align-items: baseline;
  }
}

/* ========================================
   WHAT WE OFFER
   ======================================== */
.offerings {
  padding: 5rem 0;
  background-color: rgba(44, 40, 37, 0.02);
}

.offerings__header {
  text-align: center;
  margin-bottom: 4rem;
}

.offerings__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.offerings__list {
  max-width: 960px;
  margin: 0 auto;
  list-style: none;
}

.offerings__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(44, 40, 37, 0.08);
  align-items: start;
}

.offerings__item:last-child {
  border-bottom: 1px solid rgba(44, 40, 37, 0.08);
}

.offerings__item-text {
  min-width: 0;
}

.offerings__item-image {
  padding: 2px;
  aspect-ratio: 4 / 3;
  background-color: rgba(44, 40, 37, 0.04);
  border: 1px dashed rgba(44, 40, 37, 0.25);
  border-radius: 12px;
  overflow: hidden;
}

.offerings__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.offerings__item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #2C2825;
}

.offerings__item-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #7D8B6E;
  margin-bottom: 0.75rem;
}

.offerings__item-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(44, 40, 37, 0.7);
  max-width: 560px;
}

@media (min-width: 768px) {
  .offerings__item {
    grid-template-columns: 3fr 1fr;
    gap: 2.5rem;
  }
}

/* ========================================
   VALUES / WHY
   ======================================== */
.values {
  padding: 6rem 0;
}

.values__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.values__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
}

.values__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.7;
  color: rgba(44, 40, 37, 0.8);
  font-style: italic;
}

/* Image placeholder */
.values__image-placeholder {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 4 / 3;
  margin: 3rem auto 0;
  border: 1px dashed rgba(44, 40, 37, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(44, 40, 37, 0.25);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: none; /* Hidden by default */
}

/* ========================================
   COMMUNITY / WORKSHOPS
   ======================================== */
.community {
  padding: 5rem 0;
  background-color: rgba(44, 40, 37, 0.02);
}

.community__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.community__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.community__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(44, 40, 37, 0.7);
}

/* ========================================
   SIGNUP / CTA
   ======================================== */
.signup {
  padding: 6rem 0;
  background-color: #2C2825;
  color: #F5F0EB;
  position: relative;
}

.signup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.signup__inner {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.signup .section-label {
  color: rgba(245, 240, 235, 0.4);
}

.signup__photo {
  display: inline-block;
  margin: 1rem 0 1.5rem;
  transform: rotate(-2deg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), 0 1px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
}

/* Keep rotate when reveal animation runs (reveal overwrites transform otherwise) */
.signup__photo.reveal {
  transform: translateY(24px) rotate(-2deg);
}

.signup__photo.reveal.visible {
  transform: translateY(0) rotate(-2deg);
}

.signup__photo img {
  width: 256px;
  height: 171px;
  display: block;
  object-fit: cover;
}

.signup__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #F5F0EB;
  margin-bottom: 1rem;
}

.signup__text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 240, 235, 0.65);
  margin-bottom: 2.5rem;
}

.signup__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
}

.signup__input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #2C2825;
  background-color: #F5F0EB;
  border: none;
  border-radius: 4px;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.signup__input::placeholder {
  color: rgba(44, 40, 37, 0.4);
}

.signup__input:focus {
  box-shadow: 0 0 0 2px #7D8B6E;
}

.signup__button {
  width: 100%;
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5F0EB;
  background-color: #7D8B6E;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.signup__button:hover {
  background-color: #6B7A5D;
}

.signup__button:active {
  transform: scale(0.98);
}

.signup__success {
  display: none;
  padding: 1.5rem;
  text-align: center;
}

.signup__success h3 {
  font-size: 1.5rem;
  color: #F5F0EB;
  margin-bottom: 0.5rem;
}

.signup__success p {
  font-size: 0.95rem;
  color: rgba(245, 240, 235, 0.6);
}

.signup__error {
  font-size: 0.85rem;
  color: #C4815B;
  display: none;
  margin-top: 0.25rem;
}

@media (min-width: 520px) {
  .signup__form {
    flex-direction: row;
  }

  .signup__input {
    flex: 1;
  }

  .signup__button {
    width: auto;
    white-space: nowrap;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(44, 40, 37, 0.08);
}

.site-footer__inner {
  text-align: center;
}

.site-footer__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  object-fit: cover;
  opacity: 0.85;
}

.site-footer__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.site-footer__tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(44, 40, 37, 0.5);
  margin-bottom: 1rem;
}

.site-footer__note {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(44, 40, 37, 0.5);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer__social a {
  color: rgba(44, 40, 37, 0.4);
  transition: color 0.3s ease;
}

.site-footer__social a:hover {
  color: #7D8B6E;
}

.site-footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer__copy {
  font-size: 0.75rem;
  color: rgba(44, 40, 37, 0.35);
  letter-spacing: 0.05em;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ========================================
   IMAGE PLACEHOLDERS — Generic
   ======================================== */
.image-placeholder {
  width: 100%;
  border: 1px dashed rgba(44, 40, 37, 0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(44, 40, 37, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  display: none; /* Hidden by default — unhide and replace with <img> when images are added */
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.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 styles */
:focus-visible {
  outline: 2px solid #7D8B6E;
  outline-offset: 3px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .signup__photo.reveal {
    transform: rotate(7deg);
  }
  .hero__scroll { animation: none; }
}
