/*
 * Dr. Liz Martin - heart-centered healing & leadership. Hand-coded static site
 * by NJLIGames Ltd, replacing the paid website-builder build. Self-contained:
 * system fonts, one stylesheet, minimal JS. Warm personal-brand palette,
 * fully responsive and accessible (zoom allowed).
 */
:root {
  --ink: #2c2230;
  --muted: #6b5c66;
  --primary: #7c4a63;      /* plum / heart */
  --primary-dark: #5f3a4d;
  --accent: #c98a5a;       /* warm gold */
  --accent-dark: #ac7043;
  --bg: #fffaf6;
  --surface: #f6ebe4;      /* blush cream */
  --surface-2: #efe0d7;
  --border: #ecdcd2;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 1px 3px rgba(44,34,48,.06), 0 10px 30px rgba(44,34,48,.08);
  --maxw: 1120px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary-dark); }
h1, h2, h3 { font-family: var(--serif); line-height: 1.14; letter-spacing: -.01em; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.3rem); }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1em; }
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
:where(a, button, input, textarea, select, summary):focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--accent); color: #fff; padding: .7rem 1.1rem; z-index: 100; }
.skip:focus { left: 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: 1rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: background-color .15s, transform .15s, border-color .15s; min-height: 48px; font-family: var(--sans); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); }
.btn--gold { background: var(--accent); color: #fff; }
.btn--gold:hover { background: var(--accent-dark); }
.btn--outline { background: transparent; color: var(--primary-dark); border-color: var(--border); }
.btn--outline:hover { background: var(--surface); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.15); }

.site-head { position: sticky; top: 0; z-index: 50; background: rgba(255,250,246,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.site-head__in { display: flex; align-items: center; gap: 1rem; min-height: 74px; }
.brand { display: flex; flex-direction: column; margin-right: auto; text-decoration: none; color: var(--ink); line-height: 1.1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.2rem; }
.brand__sub { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-dark); }
.nav { display: flex; align-items: center; gap: 1.3rem; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .95rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--primary); }
.nav .btn { padding: .55rem 1.1rem; min-height: 42px; font-size: .9rem; }
.nav-toggle { display: none; }

/* Hero with photo */
.hero { background: linear-gradient(160deg, var(--surface) 0%, var(--bg) 72%); border-bottom: 1px solid var(--border); overflow: hidden; }
.hero__in { display: grid; gap: 2.5rem; padding-block: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700; color: var(--accent-dark); margin: 0 0 .9rem; }
.hero h1 { color: var(--ink); margin-bottom: .5rem; }
.hero__lead { font-size: 1.2rem; color: var(--muted); max-width: 42ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }

.section { padding-block: clamp(3rem, 7vw, 5rem); }
.section--cream { background: var(--surface); }
.section--plum { background: var(--primary); color: #fff; }
.section--plum h2, .section--plum h3 { color: #fff; }
.section__head { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; }
.section__head p { color: var(--muted); font-size: 1.1rem; }
.section--plum .section__head p { color: rgba(255,255,255,.85); }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 700; color: var(--accent-dark); }
.section--plum .eyebrow { color: #f0c9a8; }

.cards { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.7rem; box-shadow: var(--shadow); text-decoration: none; color: inherit; display: block; transition: transform .15s, box-shadow .15s; }
a.card:hover { transform: translateY(-3px); box-shadow: 0 8px 34px rgba(44,34,48,.13); }
.card__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--surface-2); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

.split { display: grid; gap: 2.5rem; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.credentials { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.credentials span { background: var(--surface-2); border-radius: 8px; padding: .3rem .7rem; font-size: .82rem; font-weight: 600; color: var(--primary-dark); }

.quotes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.quote { background: var(--bg); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.quote p { font-style: italic; }
.quote cite { font-style: normal; font-weight: 600; color: var(--muted); font-size: .92rem; }

.cta-band { background: var(--primary); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 48ch; margin-inline: auto; }
.cta-band .btn { margin-top: 1.2rem; }

.contact-grid { display: grid; gap: 2.5rem; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; }
.info-list .ico { font-size: 1.3rem; flex: none; }
.info-list a { color: var(--primary-dark); text-decoration: none; font-weight: 600; }
form label { display: block; font-weight: 600; font-size: .92rem; margin: 0 0 .35rem; }
form input, form textarea { width: 100%; padding: .75rem .85rem; min-height: 48px; font: inherit; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); margin-bottom: 1rem; color: var(--ink); }
form textarea { min-height: 130px; resize: vertical; }

.socials { display: flex; gap: 1rem; flex-wrap: wrap; }
.socials a { display: inline-flex; align-items: center; gap: .4rem; background: var(--bg); border: 1px solid var(--border); border-radius: 999px; padding: .5rem 1.1rem; text-decoration: none; font-weight: 600; font-size: .92rem; color: var(--primary-dark); }
.socials a:hover { background: var(--surface); }

.site-foot { background: #2c2230; color: #cdbfc8; }
.site-foot__in { display: grid; gap: 2rem; padding-block: 3rem 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.site-foot h4 { color: #fff; font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 .9rem; }
.site-foot a { color: #cdbfc8; text-decoration: none; }
.site-foot a:hover { color: #fff; }
.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.foot-legal { border-top: 1px solid #43354000; border-top: 1px solid #433540; padding-block: 1.1rem 2rem; font-size: .82rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; color: #a596a0; }
.foot-legal a { color: #a596a0; }

@media (min-width: 760px) {
  .hero__in { grid-template-columns: 1.15fr .85fr; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav { position: fixed; inset: 74px 0 auto; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: .5rem 1.25rem 1.25rem; box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .2s ease; }
  .site-head.open .nav { transform: translateY(0); }
  .nav a { padding: .9rem .2rem; border-bottom: 1px solid var(--border); }
  .nav .btn { margin-top: .8rem; }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); align-items: center; justify-content: center; cursor: pointer; }
  .nav-toggle span { width: 20px; height: 2px; background: var(--ink); display: block; }
}
