/* ========================================
   Square Foot Decluttering
   Calm, Empathetic, Modern Landing Page
   ======================================== */

/* ---- Color Palette ---- */
:root {
  --sage: #8faa8b;
  --sage-light: #c2d4bf;
  --sage-dark: #5f7a5c;
  --beige: #f5f0e8;
  --cream: #faf8f4;
  --dusty-blue: #8ba7b8;
  --dusty-blue-light: #d0dfe7;
  --warm-brown: #6b5b4e;
  --text: #3d3733;
  --text-light: #736a62;
  --text-muted: #9a918a;
  --white: #ffffff;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  font-weight: 600;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ---- Section Labels ---- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  padding: 16px 40px;
  box-shadow: 0 4px 20px rgba(95, 122, 92, 0.25);
}

.btn-primary:hover {
  background: var(--warm-brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(95, 122, 92, 0.3);
}

.btn-nav {
  background: var(--sage-dark);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-nav:hover {
  background: var(--warm-brown);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sage-dark);
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-links a:not(.btn) {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:not(.btn):hover {
  color: var(--sage-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--cream) 0%, #e8e0d4 30%, var(--sage-light) 70%, var(--dusty-blue-light) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(143, 170, 139, 0.15) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 30%, rgba(139, 167, 184, 0.12) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 28px 80px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.4rem;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--sage-dark);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========================================
   EMOTIONAL CONNECTION
   ======================================== */
.emotional {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}

.emotional h2 {
  font-size: 2.4rem;
  color: var(--text);
  margin-bottom: 16px;
}

.emotional-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.emotional-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 56px;
}

.emotional-card {
  background: var(--beige);
  padding: 32px 20px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emotional-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.emotional-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--sage-dark);
}

.emotional-icon svg {
  width: 100%;
  height: 100%;
}

.emotional-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.emotional-affirmation {
  max-width: 420px;
  margin: 0 auto;
}

.emotional-affirmation p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.emotional-affirmation .grace {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--sage-dark);
  font-style: italic;
}

/* ========================================
   THE SQUARE FOOT APPROACH
   ======================================== */
.approach {
  padding: 120px 0;
  background: var(--beige);
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.approach h2 {
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 16px;
}

.approach-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.approach-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.approach-value {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

.value-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.approach-closing {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--sage-dark);
}

.approach-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  background: var(--white);
  padding: 60px 48px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}

.visual-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  color: var(--sage-dark);
}

.visual-icon svg {
  width: 100%;
  height: 100%;
}

.visual-card p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}

.services h2 {
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.service-card {
  background: var(--beige);
  padding: 36px 28px;
  border-radius: 16px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: var(--sage-light);
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.process {
  padding: 120px 0;
  background: var(--beige);
  text-align: center;
}

.process h2 {
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 56px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step-content h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--sage-light);
  flex-shrink: 0;
}

/* ========================================
   TRUST
   ======================================== */
.trust {
  padding: 120px 0;
  background: var(--white);
  text-align: center;
}

.trust h2 {
  font-size: 2.2rem;
  color: var(--text);
  margin-bottom: 12px;
}

.trust-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 48px;
}

.trust-values {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-value {
  background: var(--beige);
  padding: 20px 36px;
  border-radius: 100px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.trust-value:hover {
  transform: translateY(-2px);
  background: var(--sage-light);
}

.trust-word {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 600;
}

.trust-closing p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.trust-closing em {
  color: var(--sage-dark);
}

/* ========================================
   LEAD CAPTURE FORM
   ======================================== */
.consultation {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--beige) 0%, var(--dusty-blue-light) 100%);
}

.form-wrapper {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  padding: 56px 48px;
  border-radius: 24px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.08);
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-header h2 {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 8px;
}

.form-header p {
  font-size: 1rem;
  color: var(--text-light);
}

.lead-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border: 2px solid #e0dbd5;
  border-radius: 12px;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(143, 170, 139, 0.15);
}

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

.form-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--sage-dark);
}

.success-icon svg {
  width: 100%;
  height: 100%;
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hidden {
  display: none;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--sage-light) 0%, var(--sage) 100%);
  text-align: center;
}

.final-cta h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

.final-cta .btn-primary {
  background: var(--white);
  color: var(--sage-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.final-cta .btn-primary:hover {
  background: var(--cream);
  color: var(--warm-brown);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 40px 0;
  background: var(--text);
  color: rgba(255,255,255,0.6);
}

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

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-copy {
  font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .emotional-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-visual {
    order: -1;
  }

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

@media (max-width: 680px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  h2 {
    font-size: 1.8rem !important;
  }

  .emotional,
  .approach,
  .services,
  .process,
  .trust,
  .consultation,
  .final-cta {
    padding: 80px 0;
  }

  .emotional-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 0;
  }

  .step {
    padding: 20px 0;
  }

  .step-connector {
    width: 2px;
    height: 40px;
  }

  .trust-values {
    flex-direction: column;
    align-items: center;
  }

  .form-wrapper {
    padding: 40px 28px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px 28px;
    gap: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }

  .nav-toggle {
    display: flex;
  }

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

  .final-cta h2 {
    font-size: 1.8rem;
  }

  .btn-primary {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
}
