/* ============================================
   SMALL STAGES — MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  --ivory:        #F7F4EE;
  --ivory-mid:    #F5F1EA;
  --ivory-deep:   #EFE9DF;
  --charcoal:     #1C1C1C;
  --charcoal-mid: #222222;
  --slate:        #5C6D8A;
  --slate-light:  #7A8FA8;
  --slate-pale:   #E8ECF2;
  --terra:        #B86A4B;
  --terra-light:  #D4876A;
  --white:        #FFFFFF;
  --border:       rgba(28,28,28,0.1);
  --border-light: rgba(28,28,28,0.06);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-accent:  'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-sm: 0 2px 12px rgba(28,28,28,0.06);
  --shadow-md: 0 8px 32px rgba(28,28,28,0.08);
  --shadow-lg: 0 24px 64px rgba(28,28,28,0.10);
}

/* ============ 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);
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p { font-size: 1rem; line-height: 1.75; color: rgba(28,28,28,0.72); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.9rem 2rem;
  box-shadow: var(--shadow-sm);
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  transition: var(--transition-fast);
}

.navbar__logo span {
  color: var(--slate);
}

.navbar__logo:hover { opacity: 0.75; }

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

.navbar__links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  opacity: 0.7;
  transition: var(--transition-fast);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--slate);
  transition: var(--transition-fast);
}

.navbar__links a:hover { opacity: 1; }
.navbar__links a:hover::after { width: 100%; }
.navbar__links a.active { opacity: 1; }
.navbar__links a.active::after { width: 100%; }

.navbar__cta {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  opacity: 1 !important;
  padding: 0.55rem 1.3rem;
  background: var(--charcoal);
  color: var(--ivory) !important;
  border-radius: 2px;
  transition: var(--transition-fast) !important;
}

.navbar__cta::after { display: none !important; }
.navbar__cta:hover { background: var(--slate) !important; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition-fast);
  transform-origin: center;
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ivory);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.navbar__mobile.open {
  opacity: 1;
  pointer-events: all;
}

.navbar__mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  opacity: 0.8;
  transition: var(--transition-fast);
}

.navbar__mobile a:hover { opacity: 1; color: var(--slate); }

.navbar__mobile .mobile-cta {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.75rem 2rem;
  background: var(--charcoal);
  color: var(--ivory);
  border-radius: 2px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn--primary:hover {
  background: var(--slate);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(28,28,28,0.25);
}
.btn--outline:hover {
  border-color: var(--charcoal);
  background: rgba(28,28,28,0.04);
  transform: translateY(-1px);
}

.btn--slate {
  background: var(--slate);
  color: var(--white);
}
.btn--slate:hover {
  background: #4a5a75;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--terra {
  background: var(--terra);
  color: var(--white);
}
.btn--terra:hover {
  background: #9e5a3d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(247,244,238,0.35);
}
.btn--ghost:hover {
  background: rgba(247,244,238,0.1);
  border-color: rgba(247,244,238,0.6);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============ DIVIDER ============ */
.divider {
  width: 48px;
  height: 1px;
  background: var(--slate);
  margin: 1.5rem 0;
}

.divider--center { margin: 1.5rem auto; }

/* ============ SECTION HEADER ============ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .eyebrow { margin-bottom: 1rem; display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 540px; margin: 0 auto; }
.section-header .divider { margin: 1.25rem auto; }

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

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,109,138,0.08) 0%, transparent 70%);
}

.hero__circle--1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  animation: floatCircle 12s ease-in-out infinite;
}

.hero__circle--2 {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: -80px;
  background: radial-gradient(circle, rgba(184,106,75,0.07) 0%, transparent 70%);
  animation: floatCircle 16s ease-in-out infinite reverse;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  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-size: 180px 180px;
}

@keyframes floatCircle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.97); }
}

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

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero__eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--slate);
}

.hero h1 {
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero h1 em {
  font-style: italic;
  color: var(--slate);
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero__cta {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.4;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--charcoal), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.1); }
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  background: var(--ivory-mid);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

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

.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.visible { opacity: 1; transform: translateY(0); }
.step:nth-child(2) { transition-delay: 0.1s; }
.step:nth-child(3) { transition-delay: 0.2s; }
.step:nth-child(4) { transition-delay: 0.3s; }

.step__number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--slate);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step:hover .step__number {
  background: var(--slate);
  color: var(--white);
  border-color: var(--slate);
  transform: scale(1.05);
}

.step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.step p { font-size: 0.9rem; }

/* ============ WHY SMALL STAGES ============ */
.why {
  background: var(--ivory);
}

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

.why__left h2 { margin-bottom: 1.5rem; }
.why__left p { margin-bottom: 2rem; }

.why__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why__feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why__feature.visible { opacity: 1; transform: translateX(0); }
.why__feature:nth-child(2) { transition-delay: 0.1s; }
.why__feature:nth-child(3) { transition-delay: 0.2s; }
.why__feature:nth-child(4) { transition-delay: 0.3s; }

.why__feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 2px;
  background: var(--slate-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
}

.why__feature h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}

.why__feature p { font-size: 0.875rem; margin: 0; }

.why__visual {
  position: relative;
  height: 520px;
}

.why__card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.why__card--main {
  top: 0;
  left: 0;
  right: 3rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, var(--ivory-deep) 0%, var(--ivory-mid) 100%);
}

.why__card--float {
  bottom: 0;
  right: 0;
  width: 200px;
  background: var(--charcoal);
  color: var(--ivory);
  animation: float 6s ease-in-out infinite;
}

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

.why__card-stat {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--slate);
  margin-bottom: 0.5rem;
}

.why__card-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  text-transform: uppercase;
}

.why__card--float .why__card-stat {
  color: var(--terra-light);
  font-size: 2.5rem;
}

.why__card--float .why__card-label { color: var(--ivory); }

.why__card-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: rgba(92,109,138,0.12);
  color: var(--slate);
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--charcoal);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,109,138,0.15) 0%, transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,106,75,0.1) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 1; text-align: center; }

.cta-section h2 {
  color: var(--ivory);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(247,244,238,0.6);
  max-width: 500px;
  margin: 0 auto 3rem;
}

.cta-section .divider { background: rgba(247,244,238,0.2); margin: 1.5rem auto; }

.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.cta-card {
  background: rgba(247,244,238,0.05);
  border: 1px solid rgba(247,244,238,0.1);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: var(--transition);
}

.cta-card:hover {
  background: rgba(247,244,238,0.08);
  border-color: rgba(247,244,238,0.2);
  transform: translateY(-4px);
}

.cta-card .eyebrow { color: var(--slate-light); margin-bottom: 0.75rem; display: block; }
.cta-card h3 { color: var(--ivory); font-size: 1.6rem; margin-bottom: 0.75rem; }
.cta-card p { color: rgba(247,244,238,0.55); font-size: 0.9rem; margin-bottom: 2rem; }

/* ============ INTRO SECTION (inner pages) ============ */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,109,138,0.07) 0%, transparent 70%);
}

.page-hero .eyebrow { margin-bottom: 1.25rem; display: block; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.1rem; max-width: 580px; margin-bottom: 2.5rem; }

/* ============ FORMS ============ */
.form-section {
  padding: 5rem 0 7rem;
  background: var(--ivory-mid);
}

.form-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.form-header .eyebrow { margin-bottom: 0.75rem; display: block; }
.form-header h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.form-header p { font-size: 0.9rem; }

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.form-group label .required { color: var(--terra); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--slate);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(92,109,138,0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--terra);
  background: rgba(184,106,75,0.03);
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 2.5rem 0 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.form-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.radio-option, .checkbox-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-option input, .checkbox-option input {
  width: auto;
  accent-color: var(--slate);
}

.radio-option label, .checkbox-option label {
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
  margin: 0;
}

.form-hint {
  font-size: 0.78rem;
  color: rgba(28,28,28,0.45);
  margin-top: 0.4rem;
}

.error-msg {
  font-size: 0.75rem;
  color: var(--terra);
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .error-msg { display: block; }

.form-submit {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-submit p {
  font-size: 0.8rem;
  opacity: 0.5;
  max-width: 300px;
}

.form-submit .btn { min-width: 180px; justify-content: center; }

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.show { display: block; }
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(92,109,138,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--slate);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.form-success p { max-width: 420px; margin: 0 auto; }

/* ============ ABOUT PAGE ============ */
.story-section {
  padding: 6rem 0;
  background: var(--ivory);
}

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

.story-content .eyebrow { margin-bottom: 1rem; display: block; }
.story-content h2 { margin-bottom: 1.5rem; }
.story-content p { margin-bottom: 1.25rem; }

.story-visual {
  position: relative;
}

.story-quote {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 3rem;
  border-radius: 4px;
  position: relative;
}

.story-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: rgba(92,109,138,0.3);
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.story-quote p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin: 0;
}

.story-quote-attr {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 1.5rem !important;
}

/* Founders */
.founders-section {
  padding: 6rem 0;
  background: var(--ivory-mid);
  border-top: 1px solid var(--border);
}

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

.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.founder-card.visible { opacity: 1; transform: translateY(0); }
.founder-card:nth-child(2) { transition-delay: 0.1s; }
.founder-card:nth-child(3) { transition-delay: 0.2s; }

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

.founder-photo {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--ivory-deep) 0%, var(--slate-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(92,109,138,0.4);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

.founder-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(239,233,223,0.5), transparent);
}

.founder-info {
  padding: 1.75rem;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1rem;
}

.founder-bio { font-size: 0.875rem; }

/* Values */
.values-section {
  padding: 6rem 0;
  background: var(--ivory);
  border-top: 1px solid var(--border);
}

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

.value-item {
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--slate);
  background: rgba(92,109,138,0.03);
}

.value-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(92,109,138,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-item h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.value-item p { font-size: 0.875rem; }

/* ============ FOOTER ============ */
footer {
  background: var(--charcoal-mid);
  padding: 4rem 0 2rem;
  color: var(--ivory);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,244,238,0.1);
  margin-bottom: 2rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--ivory);
}

.footer__brand-name span { color: var(--slate-light); }

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(247,244,238,0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  border: 1px solid rgba(247,244,238,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,244,238,0.5);
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--slate-light);
  color: var(--ivory);
}

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.4);
  margin-bottom: 1.25rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(247,244,238,0.6);
  transition: var(--transition-fast);
}

.footer__col ul a:hover { color: var(--ivory); }

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

.footer__copy {
  font-size: 0.78rem;
  color: rgba(247,244,238,0.3);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(247,244,238,0.3);
  transition: var(--transition-fast);
}

.footer__legal a:hover { color: rgba(247,244,238,0.6); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: 1fr; gap: 3rem; }
  .why__visual { height: 300px; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile { display: flex; }

  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }

  .cta-cards { grid-template-columns: 1fr; }

  .founders-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .form-wrapper { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .form-submit { flex-direction: column; align-items: flex-start; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.8rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
}
