:root {
  --color-bg: #FAF7F5;
  --color-bg-alt: #F5EDE8;
  --color-bg-warm: #FFF9F6;
  --color-text: #3D3D3D;
  --color-text-muted: #6B615E;
  --color-text-light: #8B8178;
  --color-primary: #8B6F5C;
  --color-primary-dark: #6D5546;
  --color-secondary: #C9A87C;
  --color-secondary-light: #D4BA96;
  --color-accent: #D4A5A5;
  --color-accent-light: #E8C8C8;
  --color-rose: #C9949B;
  --color-gold: #B8956E;
  --color-cream: #F5E6DC;
  
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(61, 61, 61, 0.04);
  --shadow-md: 0 8px 32px rgba(61, 61, 61, 0.08);
  --shadow-lg: 0 16px 64px rgba(61, 61, 61, 0.12);
  --shadow-xl: 0 24px 80px rgba(61, 61, 61, 0.16);
  --shadow-glow: 0 0 60px rgba(201, 168, 124, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  --container-max: 1280px;
  --container-padding: 2rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(212, 165, 165, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(201, 168, 124, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(139, 111, 92, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 245, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 111, 92, 0.06);
  transition: all var(--transition-base);
}

.site-header.is-scrolled {
  background: rgba(250, 247, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.25rem var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-text);
  transition: color var(--transition-fast);
}

.logo:hover .logo-text {
  color: var(--color-primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-fast);
  margin: 0 auto;
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-dark) 100%);
  color: var(--color-bg) !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(61, 61, 61, 0.15);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61, 61, 61, 0.2);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0 4rem;
  min-height: calc(100vh - 6rem);
}

/* Desktop hero layout - explicit two column */
@media (min-width: 901px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-content {
    order: 1;
    text-align: left;
    padding-right: 2rem;
  }
  
  .hero-title {
    text-align: left;
  }
  
  .hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  
  .hero-cta {
    justify-content: flex-start;
  }
  
  .hero-trust {
    justify-content: flex-start;
  }
  
  .hero-image {
    order: 2;
    display: flex;
    justify-content: flex-end;
  }
  
  .hero-image img {
    max-width: 100%;
    width: 100%;
    max-width: 520px;
  }
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.hero-container {
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(201, 168, 124, 0.12) 0%, rgba(212, 165, 165, 0.12) 100%);
  border: 1px solid rgba(201, 168, 124, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-dark) 100%);
  color: var(--color-bg) !important;
  border: none;
  box-shadow: 0 4px 20px rgba(61, 61, 61, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(61, 61, 61, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(61, 61, 61, 0.15);
}

.btn-secondary:hover {
  border-color: var(--color-secondary);
  background: rgba(201, 168, 124, 0.05);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 0.85rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.hero-trust .dot {
  color: var(--color-secondary);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.hero-image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(250, 247, 245, 0.3) 0%, transparent 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  pointer-events: none;
}

.hero-floating-badge {
  position: absolute;
  bottom: 20%;
  left: -10%;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.hero-flower {
  position: absolute;
  top: -5%;
  right: -10%;
  width: 200px;
  height: 200px;
  opacity: 0.6;
  pointer-events: none;
  animation: rotate-slow 60s linear infinite;
}

.hero-flower img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.floating-badge-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.7;
}

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

.hero-scroll-indicator svg {
  opacity: 0.5;
}

.hero-redesign {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 24px 100px;
  overflow: hidden;
}

.hero-redesign .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-redesign .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: breathe 20s ease-in-out infinite;
}

.hero-redesign .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 61, 61, 0.5) 0%,
    rgba(61, 61, 61, 0.4) 50%,
    rgba(61, 61, 61, 0.6) 100%
  );
}

.hero-redesign .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-redesign .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-secondary-light);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatSlow 15s ease-in-out infinite;
}

.hero-redesign .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-redesign .particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; width: 6px; height: 6px; }
.hero-redesign .particle:nth-child(3) { left: 70%; top: 30%; animation-delay: 4s; }
.hero-redesign .particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 1s; width: 3px; height: 3px; }
.hero-redesign .particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 3s; width: 5px; height: 5px; }
.hero-redesign .particle:nth-child(6) { left: 30%; top: 80%; animation-delay: 5s; }

.hero-redesign .hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-redesign .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-redesign .hero-title {
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
}

.hero-redesign .hero-subtitle {
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-redesign .hero-cta {
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-redesign .hero-trust {
  justify-content: center;
  color: rgba(255,255,255,0.7);
}

.hero-redesign .hero-trust .dot {
  color: var(--color-secondary-light);
}

.hero-redesign .btn-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white !important;
}

.hero-redesign .btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.hero-redesign .hero-scroll-indicator {
  color: rgba(255,255,255,0.7);
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-15px) translateX(10px); }
  66% { transform: translateY(-10px) translateX(-5px); }
}

@media (max-width: 768px) {
  .hero-redesign {
    padding: 120px 20px 80px;
  }
  
  .hero-redesign .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-redesign .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-redesign .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-redesign .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

.problem-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.problem-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.problem-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.problem-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg-warm) 0%, var(--color-bg) 100%);
}

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

.section-title-serif {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.problem-text {
  margin-top: 2.5rem;
}

.problem-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.problem-text .highlight {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text);
  font-style: italic;
}

.problem-text .emphasis {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-top: 2rem;
}

.about-preview {
  padding: 8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-frame {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

.about-content {
  padding: 2rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.85);
}

.about-text {
  margin-top: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: var(--color-text);
  font-weight: 500;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-secondary);
  padding-bottom: 0.25rem;
  transition: all var(--transition-fast);
}

.link-arrow::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.link-arrow:hover {
  color: var(--color-primary);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.offerings {
  padding: 8rem 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.offerings-bg-texture {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(201, 168, 124, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(212, 165, 165, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.offerings > .container {
  position: relative;
  z-index: 1;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 50ch;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

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

.offering-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 92, 0.08);
  transition: all var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
}

.offering-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.offering-featured {
  grid-row: span 2;
}

.offering-featured .offering-image {
  height: 260px;
}

.offering-featured .offering-content {
  padding: 2.5rem;
}

.offering-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.offering-image-small {
  height: 180px;
}

.offering-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.offering-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 61, 61, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.offering-card:hover .offering-image img {
  transform: scale(1.05);
}

.offering-card:hover .offering-image-overlay {
  opacity: 1;
}

.offering-content {
  padding: 2rem;
}

.offering-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 1rem;
}

.offering-card h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.offering-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.offering-features {
  margin-bottom: 1.5rem;
}

.offering-features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.offering-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-size: 0.8rem;
}

.offering-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(139, 111, 92, 0.1);
}

.offering-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
}

.community-highlight {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.community-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61, 61, 61, 0.88) 0%,
    rgba(109, 85, 70, 0.85) 50%,
    rgba(139, 111, 92, 0.82) 100%
  );
}

.community-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.section-title-light {
  color: white;
}

.community-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 3rem 0;
}

.community-features li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  color: var(--color-secondary-light);
  font-size: 1.25rem;
}

.community-highlight .btn-primary {
  background: white;
  color: var(--color-text) !important;
  margin-top: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.community-highlight .btn-primary:hover {
  background: var(--color-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.testimonials {
  padding: 8rem 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.testimonials-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.decoration-flower {
  position: absolute;
  width: 180px;
  height: 180px;
  opacity: 0.25;
}

.decoration-flower-left {
  top: 10%;
  left: -5%;
  animation: rotate-slow 80s linear infinite reverse;
}

.decoration-flower img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testimonials > .container {
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  background: var(--color-bg-warm);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 111, 92, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-smooth);
  position: relative;
}

.testimonial-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-secondary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}

.author-title {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.bloom-spotlight {
  padding: 8rem 0;
  background: var(--color-bg-alt);
}

.bloom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bloom-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bloom-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bloom-image:hover img {
  transform: scale(1.03);
}

.bloom-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(139, 111, 92, 0.1) 100%);
  pointer-events: none;
}

.bloom-content {
  padding: 1rem 0;
}

.bloom-tagline {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin: 0.5rem 0 1.5rem;
}

.bloom-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.bloom-benefits {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.bloom-benefits li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--color-text);
}

.benefit-icon {
  color: var(--color-secondary);
  font-size: 1rem;
}

.bloom-stats {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(139, 111, 92, 0.15);
  border-bottom: 1px solid rgba(139, 111, 92, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.bloom-cta {
  margin-top: 2rem;
}

.next-start {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.next-start strong {
  color: var(--color-text);
}

.resources {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.resources-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.resources-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.resources-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(250, 247, 245, 0.95) 100%);
}

.resources > .container {
  position: relative;
  z-index: 1;
}

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

.resource-card {
  background: var(--color-bg-warm);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 111, 92, 0.08);
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-smooth);
}

.resource-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.resource-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 124, 0.12) 0%, rgba(212, 165, 165, 0.12) 100%);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.resource-icon-podcast {
  background: linear-gradient(135deg, rgba(201, 168, 124, 0.15) 0%, rgba(184, 149, 110, 0.15) 100%);
}

.resource-icon-gift {
  background: linear-gradient(135deg, rgba(212, 165, 165, 0.15) 0%, rgba(201, 148, 155, 0.15) 100%);
}

.resource-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.resource-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.resource-description {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.newsletter {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.newsletter-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.newsletter > .container {
  position: relative;
  z-index: 1;
}

.newsletter-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content > p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.newsletter-form {
  margin-top: 2rem;
}

.form-group {
  display: flex;
  gap: 1rem;
}

.form-group input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid rgba(139, 111, 92, 0.18);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.form-group input::placeholder {
  color: var(--color-text-light);
}

.form-group input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(201, 168, 124, 0.12);
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 1rem;
}

.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.85);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  color: white;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
}

.footer-column h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-secondary-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1100px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  
  .offering-featured {
    grid-row: auto;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --container-padding: 1.5rem;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.is-open {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 1rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
    gap: 3rem;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-image {
    order: -1;
    display: flex;
    justify-content: center;
  }
  
  .hero-image img {
    max-width: 320px;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-trust {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-image-wrapper {
    max-width: 320px;
  }
  
  .hero-floating-badge {
    left: auto;
    right: -5%;
    bottom: 10%;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-content {
    padding: 0;
  }
  
  .bloom-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title-serif {
    font-size: 2rem;
  }
  
  .hero-floating-badge {
    display: none;
  }
  
  .bloom-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .community-features li {
    font-size: 0.95rem;
  }
  
  .offering-image-small {
    height: 160px;
  }
}

/* Accessibility: Focus states */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.nav-link:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-image {
    transform: none !important;
  }
  
  .offering-card,
  .testimonial-card,
  .resource-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
}

/* Print styles */
@media print {
  .site-header,
  .site-footer,
  .hero-scroll-indicator,
  .newsletter,
  .mobile-toggle {
    display: none !important;
  }
  
  body::before {
    display: none !important;
  }
  
  .hero {
    min-height: auto !important;
    padding: 2rem 0 !important;
  }
  
  a {
    text-decoration: underline;
  }
  
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: var(--color-text-muted);
  }
}
