/* =============================================
   LIFE IN COLOR STUDIOS — STYLESHEET
   Earthy & Warm: Terracotta · Sage · Cream
   ============================================= */

/* ---- DESIGN TOKENS ---- */
:root {
  --color-terra:    #C1654A;
  --color-terra-dk: #A04E38;
  --color-terra-lt: #E8927B;
  --color-sage:     #7D9978;
  --color-sage-lt:  #EEF3EC;
  --color-cream:    #FAF5EE;
  --color-beige:    #EDE3D5;
  --color-warm-tan: #C9AC8C;
  --color-text:     #3D2B1F;
  --color-text-mid: #6B4F3F;
  --color-text-lt:  #9E7E6E;
  --color-white:    #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(61, 43, 31, 0.10);
  --shadow-card: 0 2px 12px rgba(61, 43, 31, 0.08);

  --max-w: 1180px;
  --max-w-narrow: 780px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-terra);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--color-terra-dk); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; margin-bottom: 1.25rem; }
h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; color: var(--color-text-mid); }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--color-terra); }

/* ---- LAYOUT HELPERS ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow { max-width: var(--max-w-narrow); }

.center { text-align: center; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ---- SECTIONS ---- */
.section { padding: 6rem 0; }

.section-light  { background: var(--color-cream); }
.section-warm   { background: var(--color-beige); }
.section-sage   { background: var(--color-sage-lt); }

/* ---- LABELS ---- */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-terra);
  margin-bottom: 0.6rem;
}

.section-intro {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--color-text-mid);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--color-terra);
  color: var(--color-white);
  border-color: var(--color-terra);
}
.btn-primary:hover {
  background: var(--color-terra-dk);
  border-color: var(--color-terra-dk);
  color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: var(--color-white);
}

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

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


/* ================================================
   NAVIGATION
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 245, 238, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-beige);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-text);
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--color-terra); }

.nav-logo-image {
  width: 230px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.nav-logo-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--color-terra); }

.nav-cta {
  background: var(--color-terra) !important;
  color: var(--color-white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem !important;
}
.nav-cta:hover { background: var(--color-terra-dk) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}


/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #f7f1e8 0%, #ead7bc 45%, #d9b48b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(125, 153, 120, 0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(193, 101, 74, 0.14) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(61, 43, 31, 0.78);
  margin-bottom: 1.5rem;
}

.hero h1.hero-headline {
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero h1.hero-headline em {
  color: #7d0f37;
  font-style: normal;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-logo {
  width: clamp(280px, 46vw, 560px);
  height: auto;
  border-radius: 12px;
  margin: 0 auto 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(61, 43, 31, 0.9);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-tagline {
  color: rgba(61, 43, 31, 0.86);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-promo {
  margin-top: 1.25rem;
  color: #ffe9c8;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* Decorative palette swatches */
.hero-palette {
  display: flex;
  gap: 10px;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.swatch {
  display: block;
  width: 48px;
  height: 72px;
  border-radius: 50px;
  opacity: 0.8;
}
.swatch-1 { background: #E8A98A; }
.swatch-2 { background: #C8956A; }
.swatch-3 { background: #7D9978; }
.swatch-4 { background: #C1654A; }
.swatch-5 { background: #4A2E22; }


/* ================================================
   ABOUT COLOR ANALYSIS
   ================================================ */
.text-block { max-width: 540px; }
.text-block p { margin-bottom: 1.1rem; }
.text-block .btn { margin-top: 0.75rem; }

.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.season-card {
  border-radius: var(--radius-lg);
  height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.1rem;
}

.season-card span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  font-style: italic;
}

.season-spring  { background: linear-gradient(145deg, #F9C5A1, #E8927B); }
.season-summer  { background: linear-gradient(145deg, #B8D4CE, #8AB0AA); }
.season-autumn  { background: linear-gradient(145deg, #8B6914, #7D0F37); }
.season-winter  { background: linear-gradient(145deg, #3f2ea3 0%, #8b1f72 52%, #0f7a74 100%); }


/* ================================================
   BENEFITS
   ================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.benefit-icon {
  font-size: 1.4rem;
  color: var(--color-terra);
  margin-bottom: 0.75rem;
}

.benefit-card h3 { font-size: 1.1rem; }


/* ================================================
   SERVICES
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card.featured {
  border-color: var(--color-terra);
}

.service-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-terra);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.service-header h3 { font-size: 1.6rem; margin-bottom: 0.25rem; }

.service-price {
  font-size: 1rem;
  color: var(--color-text-mid);
  margin: 0;
}
.service-price strong { color: var(--color-terra); font-size: 1.2rem; }

.service-desc { color: var(--color-text-mid); }

.service-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.service-includes li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--color-text-mid);
  font-size: 0.95rem;
}
.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-sage);
  font-weight: 600;
}

.services-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-lt);
}


/* ================================================
   HOW IT WORKS
   ================================================ */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3.5rem;
}

.step {
  flex: 1;
  padding: 0 2rem;
  text-align: center;
}

.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--color-terra);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.step h3 { font-size: 1.2rem; }

.step-divider {
  font-size: 2rem;
  color: var(--color-warm-tan);
  margin-top: 2.5rem;
  flex-shrink: 0;
}


/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--color-terra-lt);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-terra);
  letter-spacing: 0.05em;
  margin: 0;
}


/* ================================================
   ABOUT JODI
   ================================================ */
.about-visual { display: flex; justify-content: center; }

.about-frame {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--color-warm-tan), var(--color-terra));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.about-placeholder {
  color: rgba(255,255,255,0.7);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1rem;
  margin: 0;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}


/* ================================================
   FAQ
   ================================================ */
.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-beige);
}

.faq-item {
  border-bottom: 1px solid var(--color-beige);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  transition: color 0.2s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-terra);
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] { color: var(--color-terra); }
.faq-question[aria-expanded="true"]::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  max-width: 640px;
}

.faq-answer p { color: var(--color-text-mid); }
.faq-answer.open { display: block; }


/* ================================================
   CONTACT
   ================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-lt);
  margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: var(--color-text-mid);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.social-links a {
  font-size: 0.95rem;
  color: var(--color-terra);
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

label span { color: var(--color-terra); }

input, textarea, select {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1.5px solid var(--color-beige);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.2s;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--color-terra);
  background: var(--color-white);
}

textarea { resize: vertical; }

select { appearance: none; cursor: pointer; }


/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.65);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0;
}

.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.5rem 0;
}

.footer-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.footer-nav a:hover { color: var(--color-terra-lt); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-copy a { color: rgba(255,255,255,0.5); }
.footer-copy a:hover { color: var(--color-terra-lt); }


/* ================================================
   SCROLL PADDING (for fixed nav)
   ================================================ */
#about-color, #services, #how-it-works, #benefits,
#testimonials, #about, #faq, #contact {
  scroll-margin-top: 80px;
}


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

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

  .two-col,
  .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }

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

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

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

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .step { padding: 0; }
  .step-divider { transform: rotate(90deg); }

  .contact-layout { grid-template-columns: 1fr; }

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

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-beige);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-cta { display: inline-block; }

  .nav-logo-image { height: 32px; }
  .nav-logo-image {
    width: 168px;
    height: 34px;
  }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero { padding-top: 8rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-palette { display: none; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 1.5rem; }
}
