/* ============================================
   FLOURISHING SOULCIETY — Brand Stylesheet
   "The Whole You Is Waiting"
   ============================================ */

/* --- CSS Custom Properties (Brand Tokens) --- */
:root {
  /* Brand Colors */
  --sage: #7C9473;
  --sage-light: #A3B89C;
  --sage-dark: #5A7252;
  --tan: #C4A77D;
  --tan-light: #D4C5A9;
  --gold: #B8960C;
  --gold-soft: #C5A55A;
  --cream: #FAF6F0;
  --ivory: #FDFAF5;
  --charcoal: #2C2C2C;
  --dark-forest: #2C3E2D;
  --warm-gray: #6B6B6B;
  --light-gray: #E8E4DD;
  --white: #FFFFFF;
  --error: #C0392B;
  --success: #27AE60;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.3s var(--ease);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.12);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-forest);
  line-height: 1.3;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.text-sm {
  font-size: 0.9rem;
}

.text-lg {
  font-size: 1.2rem;
}

.text-muted {
  color: var(--warm-gray);
}

.text-sage {
  color: var(--sage);
}

.text-gold {
  color: var(--gold-soft);
}

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

.tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--sage);
  letter-spacing: 0.02em;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-soft);
  margin-bottom: var(--space-xs);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--cream {
  background-color: var(--cream);
}

.section--sage {
  background-color: var(--sage);
  color: var(--white);
}

.section--sage h2,
.section--sage h3,
.section--sage h4 {
  color: var(--white);
}

.section--sage p {
  color: rgba(255, 255, 255, 0.9);
}

.section--dark {
  background-color: var(--dark-forest);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3 {
  color: var(--cream);
}

.section--dark p {
  color: rgba(250, 246, 240, 0.85);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

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

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

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

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(196, 167, 125, 0.15);
  transition: all var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav__brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-forest);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.nav__brand-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.7rem;
  color: var(--sage);
  letter-spacing: 0.05em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-soft);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--sage-dark);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.4rem;
  background: var(--sage);
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}

.nav__cta:hover {
  background: var(--sage-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Mobile Nav Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 50%, rgba(124, 148, 115, 0.08) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(124, 148, 115, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--dark-forest);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero__title em {
  font-style: italic;
  color: var(--sage);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--warm-gray);
  margin-bottom: var(--space-lg);
  max-width: 560px;
  line-height: 1.8;
}

.hero__promise {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sage);
  margin-bottom: var(--space-lg);
  padding-left: var(--space-md);
  border-left: 3px solid var(--gold-soft);
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 75%;
  background: var(--sage-light);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  opacity: 0.15;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.btn--primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}

.btn--secondary:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold-soft);
  color: var(--white);
  border-color: var(--gold-soft);
}

.btn--gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(196, 167, 125, 0.1);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(124, 148, 115, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.card__title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.card__text {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Feature cards with number */
.card--numbered {
  position: relative;
  padding-left: calc(var(--space-lg) + 1rem);
}

.card__number {
  position: absolute;
  left: var(--space-lg);
  top: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(124, 148, 115, 0.15);
  line-height: 1;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--warm-gray);
  font-size: 1.1rem;
}

/* Decorative line */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold-soft);
  margin: var(--space-md) auto;
  border-radius: 2px;
}

/* --- Pillars / Values --- */
.pillar {
  text-align: center;
  padding: var(--space-lg);
}

.pillar__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(124, 148, 115, 0.12), rgba(197, 165, 90, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.8rem;
}

.pillar__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.pillar__text {
  font-size: 0.9rem;
  color: var(--warm-gray);
}

/* --- Testimonial --- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(124, 148, 115, 0.15);
  position: absolute;
  top: 10px;
  left: 30px;
  line-height: 1;
}

.testimonial__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.testimonial__author {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sage);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.form-group .required {
  color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124, 148, 115, 0.1);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Checkbox & Radio */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sage);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0;
  cursor: pointer;
}

/* Scale rating */
.scale-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.scale-group label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}

.scale-group input[type="radio"] {
  display: none;
}

.scale-group input[type="radio"]:checked + label {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.scale-group label:hover {
  border-color: var(--sage);
  color: var(--sage);
}

/* Form sections */
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 167, 125, 0.1);
}

.form-section__title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  color: var(--dark-forest);
}

.form-section__subtitle {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: var(--space-lg);
}

/* Signature area */
.signature-area {
  border: 2px dashed var(--light-gray);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  background: rgba(250, 246, 240, 0.5);
}

.signature-area input {
  border: none;
  border-bottom: 2px solid var(--charcoal);
  border-radius: 0;
  text-align: center;
  font-family: 'Dancing Script', var(--font-heading);
  font-size: 1.5rem;
  background: transparent;
  max-width: 300px;
  margin: var(--space-sm) auto;
}

.signature-area input:focus {
  border-color: var(--sage);
  box-shadow: none;
}

/* Form progress */
.form-progress {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.form-progress__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.form-progress__step.active {
  color: var(--sage);
  font-weight: 600;
}

.form-progress__step.completed {
  color: var(--success);
}

.form-progress__dot {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.form-progress__step.active .form-progress__dot {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.form-progress__step.completed .form-progress__dot {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

/* --- About Page --- */
.about-hero {
  padding-top: calc(var(--nav-height) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-image__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.7;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(124, 148, 115, 0.1);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* --- Process/Steps --- */
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  position: relative;
}

.process-step__number {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.process-step__line {
  position: absolute;
  left: 23px;
  top: 56px;
  width: 2px;
  height: calc(100% - 16px);
  background: var(--light-gray);
}

.process-step:last-child .process-step__line {
  display: none;
}

.process-step__content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.process-step__content p {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

/* --- Services --- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(196, 167, 125, 0.1);
}

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

.service-card__header {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: var(--white);
}

.service-card__header h3 {
  color: var(--white);
  margin-bottom: 0.3rem;
}

.service-card__header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.service-card__body {
  padding: var(--space-lg);
}

.service-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.service-card__feature .check {
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-card__footer {
  padding: 0 var(--space-lg) var(--space-lg);
}

/* --- Footer --- */
.footer {
  background: var(--dark-forest);
  color: rgba(250, 246, 240, 0.7);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(250, 246, 240, 0.1);
  margin-bottom: var(--space-lg);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: var(--space-xs);
}

.footer__brand-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--sage-light);
  margin-bottom: var(--space-sm);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  margin-bottom: var(--space-sm);
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.7);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--cream);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer__bottom a {
  color: rgba(250, 246, 240, 0.5);
}

.footer__bottom a:hover {
  color: var(--cream);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Page Header (for inner pages) --- */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--space-xs);
}

.page-header p {
  color: var(--warm-gray);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* --- Accordion (for FAQ) --- */
.accordion {
  max-width: 700px;
  margin: 0 auto;
}

.accordion__item {
  border-bottom: 1px solid var(--light-gray);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.accordion__trigger:hover {
  color: var(--sage);
}

.accordion__trigger .icon {
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--sage);
}

.accordion__item.active .accordion__trigger .icon {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.accordion__content-inner {
  padding-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.8;
}

/* --- Alert / Notice --- */
.notice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.notice--info {
  background: rgba(124, 148, 115, 0.08);
  border: 1px solid rgba(124, 148, 115, 0.2);
  color: var(--sage-dark);
}

.notice--warning {
  background: rgba(197, 165, 90, 0.08);
  border: 1px solid rgba(197, 165, 90, 0.2);
  color: var(--gold);
}

/* --- Success Message --- */
.success-message {
  text-align: center;
  padding: var(--space-2xl);
}

.success-message__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: rgba(39, 174, 96, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 2.5rem;
  color: var(--success);
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__link {
    font-size: 1.2rem;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__promise {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

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

  .form-progress {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
}

@media (max-width: 600px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .card {
    padding: var(--space-md);
  }

  .form-section {
    padding: var(--space-md);
  }

  .cta-banner {
    padding: var(--space-lg);
  }

  .btn--lg {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* --- Utility --- */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
