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

:root {
  --beige:       #f5e8de;
  --cream:       #fdf9f4;
  --blush:       #ebd3cf;
  --blush-dark:  #d9b8b2;
  --black:       #000000;
  --charcoal:    #1a1a1a;
  --gray:        #555555;
  --gray-light:  #e8e2dc;

  --font: 'Roboto', system-ui, sans-serif;

  --container: 1180px;
  --nav-h:     72px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: 96px; }

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-body {
  font-size: 1rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
}

.section-header.centered { text-align: center; }
.max-600 { max-width: 600px; margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cream);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.navbar.scrolled .nav-links a { color: var(--charcoal); }
.navbar.scrolled .nav-links a:hover { color: var(--black); }
.navbar.scrolled .nav-cta {
  background: var(--black) !important;
  color: var(--cream) !important;
}
.navbar.scrolled .logo-img { filter: none; }
.navbar.scrolled .nav-hamburger span { background: var(--black); }

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }

.logo-img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

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

.nav-cta {
  background: rgba(255,255,255,0.15) !important;
  color: var(--cream) !important;
  padding: 10px 24px !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  font-weight: 500 !important;
}
.nav-cta:hover {
  background: var(--cream) !important;
  color: var(--black) !important;
  border-color: var(--cream) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 16px 24px 28px;
  gap: 0;
}
.nav-mobile a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}
.nav-cta-mobile {
  margin-top: 16px;
  background: var(--black) !important;
  color: var(--cream) !important;
  padding: 14px 24px !important;
  text-align: center;
  border-bottom: none !important;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  background-color: #c4b0a8;
}

.hero:hover .hero-bg { transform: scale(1.00); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.38) 60%,
    rgba(235,211,207,0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  border-bottom: 1px solid rgba(235,211,207,0.4);
  padding-bottom: 8px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blush);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

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

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--black);
  padding-block: 52px;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-inline: 52px;
}

.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

@media (max-width: 640px) {
  .stat-divider { display: none; }
  .stat { padding-inline: 20px; }
  .stats-inner { justify-content: space-around; }
}

/* ═══════════════════════════════════════════
   BRAND VALUES STRIP
═══════════════════════════════════════════ */
.values-strip {
  background: var(--beige);
  padding-block: 28px;
  border-top: 1px solid var(--blush);
  border-bottom: 1px solid var(--blush);
}

.values-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.value-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-tag::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: var(--blush-dark);
  border-radius: 50%;
}

/* ═══════════════════════════════════════════
   OPPORTUNITY
═══════════════════════════════════════════ */
.opportunity { background: var(--cream); }

.opportunity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.opportunity-image {
  position: relative;
}

.opportunity-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.image-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--beige);
  border: 1px solid var(--blush);
  color: var(--black);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 4px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.feature-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}

.feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--blush-dark);
  font-size: 0.7rem;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.feature-list p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 900px) {
  .opportunity-grid { grid-template-columns: 1fr; gap: 48px; }
  .opportunity-image img { height: 340px; }
  .image-badge { bottom: -12px; right: 12px; }
}

/* ═══════════════════════════════════════════
   SUPPORT
═══════════════════════════════════════════ */
.support { background: var(--beige); }

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--blush);
  border: 1px solid var(--blush);
  margin-top: 56px;
  margin-bottom: 56px;
}

.support-card {
  background: var(--cream);
  padding: 40px 32px;
  transition: background 0.3s var(--ease-out);
}

.support-card:hover {
  background: var(--beige);
}

.support-icon {
  width: 40px;
  height: 40px;
  color: var(--blush-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.support-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 300;
}

.support-full-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center 40%;
}

@media (max-width: 900px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .support-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   PROFILE
═══════════════════════════════════════════ */
.profile { background: var(--cream); }

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.profile-traits {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}

.trait {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-block: 24px;
  border-bottom: 1px solid var(--gray-light);
}

.trait:first-child { border-top: 1px solid var(--gray-light); }

.trait-num {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--blush-dark);
  min-width: 28px;
  margin-top: 4px;
}

.trait strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trait p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

.profile-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .profile-grid { grid-template-columns: 1fr; gap: 48px; }
  .profile-image { order: -1; }
  .profile-image img { height: 340px; }
}

/* ═══════════════════════════════════════════
   FORM SECTION
═══════════════════════════════════════════ */
.form-section {
  background: var(--beige);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.form-intro .section-eyebrow { color: var(--gray); }
.form-intro .section-title { color: var(--black); }
.form-intro .section-body { color: var(--gray); }

.form-promises {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-promises li {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Multi-step form */
.inquiry-form {
  background: var(--cream);
  border: 1px solid var(--blush);
  padding: 44px 40px;
  position: relative;
  min-height: 420px;
}

.form-step { display: none; }
.form-step.active { display: block; }

.step-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.field .req { color: var(--blush-dark); }

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--black);
  box-shadow: none;
}

.field input.error,
.field select.error,
.field textarea.error {
  border-color: #c0392b;
}

.field-error {
  font-size: 0.78rem;
  color: #c0392b;
  min-height: 16px;
  font-weight: 300;
}

.field textarea { resize: vertical; }

.field 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='%236b6b6b' stroke-width='1' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.consent-field { margin-top: 8px; margin-bottom: 24px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.825rem;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1px solid var(--gray-light);
  border-radius: 0;
  padding: 0;
  margin-top: 3px;
  cursor: pointer;
  accent-color: var(--black);
}

.checkbox-label a { color: var(--black); text-decoration: underline; }

.form-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.btn-submit { flex: 1; }

.btn-back {
  color: var(--charcoal) !important;
  border-color: var(--gray-light) !important;
  background: transparent !important;
}
.btn-back:hover {
  border-color: var(--charcoal) !important;
  background: var(--beige) !important;
}

/* Progress bar */
.inquiry-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  background: var(--blush-dark);
  transition: width 0.4s var(--ease-out);
  width: 33%;
}

.inquiry-form[data-progress="2"]::before { width: 66%; }
.inquiry-form[data-progress="3"]::before { width: 100%; }
.inquiry-form[data-progress="done"]::before { width: 100%; background: #5a8a6a; }

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0;
  gap: 16px;
}

.form-success.show { display: flex; }

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--beige);
  color: #5a8a6a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--black);
  letter-spacing: -0.01em;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 360px;
  line-height: 1.75;
  font-weight: 300;
}

@media (max-width: 900px) {
  .form-wrap { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 560px) {
  .inquiry-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--black);
  padding-block: 56px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.6);
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  max-width: 400px;
  line-height: 1.7;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--blush); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  max-width: 560px;
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
