/* =========================================================
   Learn to Heal Consulting — stylesheet
   Palette drawn from the watercolor "tree of life" logo
   ========================================================= */

:root {
  --teal: #1f7a8c;
  --teal-deep: #155e6d;
  --purple: #6a4c93;
  --coral: #e76f8c;
  --orange: #f4a259;
  --blue: #4a7ba6;

  --ink: #2c2a33;
  --ink-soft: #55525e;
  --cream: #fbf8f4;
  --sand: #f3ede4;
  --white: #ffffff;
  --line: #e7e0d6;

  --max: 1140px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(44, 42, 51, 0.06);
  --shadow-md: 0 12px 32px rgba(44, 42, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(44, 42, 51, 0.14);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.22rem; }

p { margin: 0 0 1rem; }

a { color: var(--teal-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 0.6rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal-deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--teal-deep); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal);
}
.btn-ghost:hover { background: rgba(31, 122, 140, 0.08); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 244, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-logo { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.98rem;
}
.nav-menu a:hover { color: var(--teal-deep); text-decoration: none; }
.nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--teal-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle-bar {
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 104px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(231, 111, 140, 0.16), transparent 42%),
    radial-gradient(circle at 88% 60%, rgba(244, 162, 89, 0.16), transparent 40%),
    radial-gradient(circle at 12% 30%, rgba(106, 76, 147, 0.14), transparent 45%),
    radial-gradient(circle at 30% 90%, rgba(31, 122, 140, 0.12), transparent 45%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}
.hero-copy { max-width: 620px; }
.hero-lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1.8rem;
}
.credential {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  border-left: 3px solid var(--teal);
  border-radius: 0;
  padding: 4px 0 4px 16px;
}
.credential-icon {
  width: 40px;
  height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--purple));
  color: #fff;
}
.credential-icon svg { width: 22px; height: 22px; }
.credential-text { display: flex; flex-direction: column; line-height: 1.25; }
.credential-text strong { font-size: 0.95rem; color: var(--ink); }
.credential-text span { font-size: 0.82rem; color: var(--ink-soft); }
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  flex: none;
}
.hero-art { display: flex; justify-content: center; }
.hero-logo {
  width: min(420px, 90%);
  filter: drop-shadow(0 22px 40px rgba(44, 42, 51, 0.18));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-intro { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ---------- Services ---------- */
.services { background: var(--white); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.22s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 16px;
  background: var(--teal);
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon[data-accent="teal"]   { background: var(--teal); }
.card-icon[data-accent="purple"] { background: var(--purple); }
.card-icon[data-accent="coral"]  { background: var(--coral); }
.card-icon[data-accent="orange"] { background: var(--orange); }
.card-icon[data-accent="blue"]   { background: var(--blue); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ---------- Industries ---------- */
.industries { background: var(--sand); }
.industry-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s ease;
}
.industry:hover { transform: translateY(-3px); }
.industry-mark { color: var(--purple); font-size: 1.05rem; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas:
    "art head"
    "art body";
  column-gap: 56px;
  align-items: center;
}
.about-head { grid-area: head; }
.about-art  { grid-area: art; }
.about-copy { grid-area: body; }
.about-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--sand);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scaleX(-1); /* mirrored so Nadja faces the content */
}
.about-role { font-weight: 600; color: var(--teal-deep); margin-top: -0.4rem; }
.about-copy p { color: var(--ink-soft); }
.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  text-align: center;
  gap: 28px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-deep);
  line-height: 1.1;
}
.stat-label { font-size: 0.85rem; color: var(--ink-soft); max-width: 180px; }

/* ---------- Testimonial ---------- */
.testimonial {
  background:
    radial-gradient(circle at 20% 20%, rgba(106, 76, 147, 0.08), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(31, 122, 140, 0.10), transparent 45%),
    var(--cream);
}
.quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: #fff;
}
.quote-mark svg { width: 28px; height: 28px; }
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
}
.quote figcaption {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quote-name { font-weight: 600; color: var(--ink); }
.quote-role { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact { background: var(--sand); }
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-copy p { color: var(--ink-soft); }
.contact-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.contact-points li { display: flex; align-items: center; gap: 10px; font-weight: 500; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 7px;
}
.req { color: var(--coral); }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(31, 122, 140, 0.15);
}
.field textarea { resize: vertical; }

/* Honeypot — visually hidden, off-screen */
.hp-field {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-status {
  margin: 14px 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 1.2em;
}
.form-status.success { color: var(--teal-deep); }
.form-status.error { color: #c0392b; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d9d5dd;
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 28px;
  align-items: center;
}
.footer-brand { display: block; }
.footer-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 2px;
}
.footer-tagline { margin: 0; font-size: 0.9rem; color: #b3aebb; }
.footer-nav {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 22px;
  justify-content: center;
}
.footer-nav a { color: #d9d5dd; font-weight: 500; }
.footer-nav a:hover { color: #fff; }
.footer-meta {
  margin: 0;
  font-size: 0.85rem;
  color: #b3aebb;
  text-align: right;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .hero-actions { justify-content: center; }
  .hero-art { order: -1; }
  .hero-logo { width: min(300px, 70%); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-inner {
    grid-template-areas:
      "head"
      "art"
      "body";
    gap: 28px;
  }
  .about-art { max-width: 420px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .footer-brand { justify-content: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 6px 0 14px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu a {
    display: block;
    padding: 10px 22px;
  }
  .nav-menu .nav-cta {
    display: inline-block;
    margin-top: 10px;
    padding: 0.6rem 1.9rem;
  }
  .card-grid,
  .industry-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-logo { animation: none; }
  * { transition: none !important; }
}
