/* ---- Reset & base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FBF5EC;
  --cream-alt: #F3E7D6;
  --ink: #241F1B;
  --ink-soft: #5C554D;
  --terracotta: #C1552E;
  --terracotta-dark: #A03F1E;
  --sage: #62826A;
  --white: #FFFFFF;
  --border: rgba(36, 31, 27, 0.1);
  --shadow: 0 12px 32px rgba(36, 31, 27, 0.08);
  --radius: 18px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }

h1 em, .whimsy-note {
  font-style: italic;
  color: var(--terracotta);
}

.section-lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 640px;
}
h2.center + .section-lede,
.why > .wrap > .section-lede { margin: 0 auto; text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(193, 85, 46, 0.28);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 236, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
}
.site-header .logo { gap: 11px; font-size: 1.4rem; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
}
.primary-nav a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--ink);
  color: var(--cream) !important;
  padding: 9px 20px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--terracotta) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ---- Hero ---- */
.hero { padding: 76px 0 96px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-sub {
  margin-top: 20px;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-art { display: flex; justify-content: center; }
.hero-photo {
  width: 100%;
  height: auto;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---- Why ---- */
.why { padding: 88px 0; text-align: center; }
.why h2 { max-width: 780px; margin: 0 auto 18px; }
.why-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.why-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--cream-alt);
  color: var(--terracotta);
  margin-bottom: 18px;
}
.why-icon svg { width: 22px; height: 22px; }
.why-card h3 { margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---- Services ---- */
.services { padding: 88px 0; background: var(--cream-alt); }
.services h2 { max-width: 620px; margin: 0 auto 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-4px) rotate(-0.3deg); }
.service-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); }

/* ---- Approach ---- */
.approach { padding: 96px 0; }
.approach-copy { max-width: 720px; }
.pillars { list-style: none; margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.pillars li { display: flex; gap: 20px; align-items: flex-start; }
.pillar-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--sage);
  font-weight: 600;
  flex-shrink: 0;
  width: 40px;
}
.pillars h3 { margin-bottom: 4px; }
.pillars p { color: var(--ink-soft); }
.whimsy-note { margin-top: 36px; font-size: 1.1rem; }
.whimsy-aside { margin-top: 10px; font-size: 0.95rem; color: var(--ink-soft); }

/* ---- About ---- */
.about { padding: 88px 0; background: var(--ink); color: var(--cream); }
.about-inner { max-width: 760px; }
.about .eyebrow { color: #E8A87C; }
.about h2 { color: var(--cream); margin-bottom: 24px; }
.about p { color: #D8D0C5; font-size: 1.05rem; margin-bottom: 16px; }
.about p:last-child { margin-bottom: 0; }

/* ---- Founder ---- */
.founder {
  margin-top: 44px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}
.founder-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.founder-quote { color: #D8D0C5; font-size: 1rem; font-style: italic; margin-bottom: 12px; }
.founder-name { color: var(--cream); font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.founder-link { color: #E8A87C; font-weight: 600; text-decoration: none; font-size: 0.92rem; }
.founder-link:hover { text-decoration: underline; }
.dash-joke { margin-top: 14px; font-size: 0.82rem; color: #A69C8E; font-style: italic; }

/* ---- Track record ---- */
.track-record { margin-top: 56px; }
.track-record-label {
  color: #E8A87C;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.track-record-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.track-record-grid .track-card:nth-child(3) { grid-column: 1 / -1; }
.track-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 26px;
}
.track-card h3 { color: var(--cream); font-size: 1.15rem; margin-bottom: 10px; }
.track-card p { color: #D8D0C5; font-size: 0.95rem; margin-bottom: 0; }

/* ---- FAQ ---- */
.faq { padding: 88px 0; }
.faq h2.center { max-width: 620px; margin: 0 auto 48px; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.faq-item summary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); margin-top: 14px; }

/* ---- Contact ---- */
.contact { padding: 100px 0; text-align: center; }
.contact h2 { max-width: 620px; margin: 0 auto 16px; }
.contact p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 34px; font-size: 1.08rem; }
.contact-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact .trust-line { margin: 52px auto 0; font-size: 0.9rem; color: var(--ink-soft); max-width: 480px; }

/* ---- Footer ---- */
.site-footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.footer-inner a:not(.logo) { color: var(--ink-soft); }
.footer-tagline { flex-basis: 100%; order: 3; text-align: center; color: var(--ink-soft); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .service-card:hover { transform: none; }
  .btn-primary:hover, .btn-ghost:hover { transform: none; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 280px; margin: 0 auto; }
  .why-grid, .services-grid, .track-record-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { width: 100%; padding: 10px 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-tagline { order: 0; }
  .founder { flex-direction: column; align-items: flex-start; }
}
