/* ============================================================
   Cait Throws a Fit — shared stylesheet for all pages
   ============================================================ */

:root {
  --cream: #f2ebe0;
  --cream-light: #f8f3eb;
  --cream-warm: #ece1cc;
  --cream-dark: #e8dfd0;
  --espresso: #2e1f12;
  --coffee: #4a3422;
  --mocha: #75594a;
  --terracotta: #b85a3a;
  --terracotta-dark: #934331;
  --terracotta-pale: #f0dccc;
  --blush: #e8c5b0;
  --blush-deep: #d9a890;
  --line: rgba(46, 31, 18, 0.14);
  --shadow: 0 30px 60px -30px rgba(46, 31, 18, 0.25);
  --shadow-warm: 0 20px 40px -20px rgba(120, 70, 40, 0.25), 0 40px 80px -30px rgba(46, 31, 18, 0.35);
  --shadow-soft: 0 8px 24px -8px rgba(120, 70, 40, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.12 0 0 0 0 0.07 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============================================================
   Navigation
   ============================================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(242, 235, 224, 0.92);
  backdrop-filter: blur(12px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--espresso);
  text-decoration: none;
  font-style: italic;
  z-index: 102;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: var(--coffee);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--espresso);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); }

.nav-cta {
  background: var(--espresso);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 999px;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--espresso);
  margin: 6px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--espresso); color: var(--cream); }
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(46, 31, 18, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
}
.btn-ghost:hover { background: var(--espresso); color: var(--cream); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242, 235, 224, 0.5);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--espresso);
  border-color: var(--cream);
}
.btn .arrow { transition: transform 0.3s; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============================================================
   Layout & typography helpers
   ============================================================ */

section { position: relative; z-index: 2; }
.section-pad {
  padding: 120px 48px;
  max-width: 1240px;
  margin: 0 auto;
}
.section-pad-tight {
  padding: 80px 48px;
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--espresso);
  margin-bottom: 24px;
}
.section-title .italic {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}

/* ============================================================
   Page header (used on non-home pages)
   ============================================================ */

.page-header {
  padding: 180px 48px 80px;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--espresso);
  margin-bottom: 24px;
}
.page-header h1 .italic {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.page-header p {
  font-size: 1.2rem;
  color: var(--coffee);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ============================================================
   Hero (homepage)
   ============================================================ */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 48px 80px;
  z-index: 2;
  overflow: hidden;
}
.hero-decor {
  position: absolute;
  top: 30%;
  right: -8%;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--blush) 0%, transparent 60%);
  opacity: 0.6;
  z-index: -1;
  filter: blur(2px);
}
.hero-decor-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--terracotta-pale) 0%, transparent 65%);
  opacity: 0.7;
  z-index: -1;
  filter: blur(3px);
}
.hero-content {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mocha);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--mocha);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 8.5vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--espresso);
  margin-bottom: 32px;
}
.hero h1 .italic {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}
.hero-sub {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--coffee);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #d4a796 0%, #b8826d 100%);
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual-tag {
  position: relative;
  z-index: 2;
  background: var(--cream-light);
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--espresso);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.2);
}

/* ============================================================
   Marquee
   ============================================================ */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--cream-light);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--coffee);
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item::after {
  content: "✦";
  color: var(--terracotta);
  font-style: normal;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   What I do (homepage)
   ============================================================ */

.what-i-do {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 197, 176, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(232, 197, 176, 0.2) 0%, transparent 55%),
    var(--cream-light);
  position: relative;
}
.what-i-do-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.what-i-do .eyebrow { justify-content: center; }
.what-i-do .section-title { margin-bottom: 32px; }
.what-i-do-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.4;
  color: var(--coffee);
  letter-spacing: -0.01em;
}
.what-i-do-text em { color: var(--terracotta); font-weight: 400; }

/* Decorative flourish — used under section titles where helpful */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 40px;
  width: fit-content;
}
.flourish > span:not(.flourish-dot) {
  width: 40px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.5;
}
.flourish-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ============================================================
   Service preview cards (homepage)
   ============================================================ */

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.service-preview-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.service-preview-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-6px);
  box-shadow: var(--shadow-warm);
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--terracotta-pale) 100%);
}
.service-preview-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  color: var(--terracotta);
  margin-bottom: 20px;
  display: block;
}
.service-preview-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--espresso);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-preview-card p {
  color: var(--coffee);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-preview-card a {
  color: var(--espresso);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  align-self: flex-start;
}
.service-preview-card a:hover { color: var(--terracotta); }
.service-preview-card a .arrow { transition: transform 0.3s; }
.service-preview-card a:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Full service cards (services page)
   ============================================================ */

.service-card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 2fr 0.7fr;
  gap: 48px;
  align-items: start;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blush) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card:hover::before { opacity: 0.4; }
.service-card.featured {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.service-card.featured h3, .service-card.featured .service-price { color: var(--cream-light); }
.service-card.featured .service-desc, .service-card.featured .service-list { color: rgba(242, 235, 224, 0.78); }
.service-card.featured .service-list li::before { background: var(--terracotta); }
.service-card.featured .featured-tag {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--terracotta);
  color: var(--cream-light);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.service-card-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
  color: var(--espresso);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.service-card-head small {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}
.service-card.featured .service-card-head small { color: var(--blush); }
.service-desc { color: var(--coffee); margin-bottom: 20px; position: relative; z-index: 1; }
.service-list { list-style: none; color: var(--coffee); position: relative; z-index: 1; }
.service-list li {
  padding-left: 24px;
  margin-bottom: 14px;
  position: relative;
  font-size: 0.98rem;
}
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 12px; height: 1px;
  background: var(--terracotta);
}
.service-list li strong {
  font-weight: 600;
  color: var(--espresso);
  display: block;
  margin-bottom: 2px;
}
.service-card.featured .service-list li strong { color: var(--cream); }
.service-price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--espresso);
  text-align: right;
  position: relative;
  z-index: 1;
  font-weight: 400;
}
.service-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-top: 8px;
  font-weight: 500;
}
.service-card.featured .service-price small { color: var(--blush); }

/* ============================================================
   Process
   ============================================================ */

.process { background: var(--cream-warm); position: relative; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.process-step { position: relative; }
.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: block;
}
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--espresso);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process-step p { color: var(--coffee); font-size: 0.98rem; line-height: 1.55; }

/* ============================================================
   About preview (homepage)
   ============================================================ */

.about-preview {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-preview::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 197, 176, 0.45) 0%, transparent 60%);
  z-index: 0;
  filter: blur(2px);
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-preview-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #c89684 0%, #8a5d4c 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-warm);
  position: relative;
  overflow: hidden;
}
.about-preview-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-preview-text p {
  margin-bottom: 20px;
  color: var(--coffee);
  font-size: 1.08rem;
}
.about-preview-text p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--espresso);
  margin-bottom: 32px;
}
.about-preview-text .btn { margin-top: 16px; }

/* ============================================================
   About page — full bio
   ============================================================ */

.about-full {
  background: var(--cream-light);
}
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-full-photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #c89684 0%, #8a5d4c 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-warm);
  position: relative;
  overflow: hidden;
}
.about-full-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-full-text p {
  margin-bottom: 20px;
  color: var(--coffee);
  font-size: 1.08rem;
  line-height: 1.65;
}
.about-full-text p.lead {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--espresso);
  margin-bottom: 32px;
}
.about-cred {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.about-cred div small {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.about-cred div strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--espresso);
}

/* Values section on about page */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.value-item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--espresso);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.value-item h4 .italic { font-style: italic; color: var(--terracotta); font-weight: 300; }
.value-item p {
  color: var(--coffee);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================================
   Pull quote
   ============================================================ */

.pullquote {
  padding: 140px 48px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.pullquote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 197, 176, 0.15) 0%, transparent 60%);
  z-index: -2;
  pointer-events: none;
}
.pullquote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 14rem;
  line-height: 1;
  color: var(--blush);
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.7;
}
.pullquote q {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  line-height: 1.2;
  color: var(--espresso);
  letter-spacing: -0.02em;
  quotes: none;
}
.pullquote q::before, .pullquote q::after { content: none; }
.pullquote q em { color: var(--terracotta); font-style: italic; font-weight: 400; }
.pullquote-author {
  margin-top: 32px;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mocha);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.pullquote-author::before, .pullquote-author::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--mocha);
  opacity: 0.5;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq { background: var(--cream-light); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-list { width: 100%; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--espresso);
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--terracotta);
  transition: all 0.3s;
}
.faq-item.open .faq-toggle {
  background: var(--terracotta);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  color: var(--coffee);
  font-size: 1.02rem;
  line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 260px; margin-top: 16px; }

/* ============================================================
   Soft CTA (homepage end)
   ============================================================ */

.soft-cta {
  background: var(--espresso);
  color: var(--cream);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.soft-cta::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
  opacity: 0.3;
}
.soft-cta::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -180px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--blush-deep) 0%, transparent 70%);
  opacity: 0.15;
}
.soft-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.soft-cta .eyebrow { color: var(--blush); justify-content: center; }
.soft-cta .eyebrow::before { background: var(--blush); }
.soft-cta h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.soft-cta h2 em { font-style: italic; color: var(--terracotta); }
.soft-cta p {
  font-size: 1.18rem;
  color: rgba(242, 235, 224, 0.78);
  max-width: 520px;
  margin: 0 auto 40px;
}
.soft-cta-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Contact page
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-info p {
  color: var(--coffee);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.contact-info-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
}
.contact-info-block small {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 8px;
  font-weight: 600;
}
.contact-info-block a {
  display: inline-block;
  color: var(--espresso);
  text-decoration: none;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 400;
  transition: color 0.2s;
}
.contact-info-block a:hover { color: var(--terracotta); }

/* Contact form — light theme on contact page */
.contact-form {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { position: relative; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--mocha); opacity: 0.6; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--cream-light);
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%234a3422' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-field textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.form-field.full { grid-column: 1 / -1; }
.form-field.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  background: var(--espresso);
  color: var(--cream);
  padding: 18px;
  font-size: 1rem;
}
.contact-form .btn:hover:not(:disabled) {
  background: var(--terracotta);
  transform: translateY(-2px);
}
.form-status {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  text-align: center;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(122, 140, 111, 0.18);
  color: var(--coffee);
  border: 1px solid rgba(122, 140, 111, 0.4);
}
.form-status.error {
  display: block;
  background: rgba(184, 90, 58, 0.12);
  color: var(--terracotta-dark);
  border: 1px solid rgba(184, 90, 58, 0.4);
}
.form-status a { color: inherit; text-decoration: underline; }

/* ============================================================
   Footer
   ============================================================ */

footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 60px 48px 32px;
  position: relative;
  z-index: 2;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--terracotta);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: var(--espresso);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.footer-brand p { color: var(--coffee); max-width: 380px; font-size: 0.98rem; }
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mocha);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--espresso);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--mocha);
}
.footer-bottom .heart { color: var(--terracotta); }

/* ============================================================
   Reveal animations
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .about-preview-grid, .about-full-grid, .faq-grid, .contact-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .service-card { grid-template-columns: 1fr; gap: 24px; }
  .service-price { text-align: left; font-size: 2.4rem; }
  .process-grid, .services-preview-grid, .values-grid {
    grid-template-columns: 1fr 1fr; gap: 40px;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 101;
  }
  body.nav-open .nav-links { transform: translateX(0); }
  .nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    padding: 14px 0;
    color: var(--espresso);
  }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta {
    margin-top: 16px;
    background: var(--espresso);
    color: var(--cream) !important;
    padding: 14px 32px !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 640px) {
  .hero { padding: 120px 24px 60px; }
  .section-pad { padding: 80px 24px; }
  .section-pad-tight { padding: 60px 24px; }
  .page-header { padding: 140px 24px 60px; }
  .service-card { padding: 32px 24px; }
  .soft-cta { padding: 80px 24px; }
  .pullquote { padding: 80px 24px; }
  .pullquote::before { font-size: 9rem; top: 30px; }
  .process-grid, .services-preview-grid, .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  footer { padding: 48px 24px 24px; }
}
