/* Katherine Haley — Speaking, Workshops & Consulting
   Palette: deep plum, dusty teal, warm ivory, soft charcoal, amber accent */

:root {
  --plum: #4a2c46;
  --plum-deep: #3a2238;
  --teal: #4f8a8b;
  --teal-deep: #3d6f70;
  --ivory: #f7f1e8;
  --ivory-warm: #efe5d6;
  --charcoal: #2c2a2e;
  --charcoal-soft: #4d4a50;
  --amber: #d98b3f;
  --amber-deep: #c2772c;
  --line: #e3d8c8;
  --white: #fffdf9;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1120px;
  --radius: 14px;
  --shadow: 0 18px 50px -22px rgba(58, 34, 56, 0.45);
  --shadow-sm: 0 8px 24px -16px rgba(58, 34, 56, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--plum-deep);
  letter-spacing: -0.01em;
}

a { color: var(--teal-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--plum); }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: 92px 0; }
.section-tight { padding: 60px 0; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal-deep);
  margin-bottom: 18px;
}

.lead { font-size: 20px; color: var(--charcoal-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--amber); color: #3a2238; }
.btn-primary:hover { background: var(--amber-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--ivory); border-color: rgba(247,241,232,.55); }
.btn-ghost:hover { background: rgba(247,241,232,.12); color: var(--ivory); transform: translateY(-2px); }
.btn-dark { background: var(--plum); color: var(--ivory); }
.btn-dark:hover { background: var(--plum-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,241,232,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--plum-deep); letter-spacing: -0.01em; }
.brand span { color: var(--teal-deep); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--charcoal-soft); }
.nav-links a:hover, .nav-links a.active { color: var(--plum); }
.nav-cta { padding: 10px 22px; border-radius: 100px; background: var(--plum); color: var(--ivory) !important; }
.nav-cta:hover { background: var(--plum-deep); color: #fff !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 26px; color: var(--plum); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(79,138,139,.22), transparent 55%),
    linear-gradient(160deg, var(--plum-deep) 0%, var(--plum) 55%, #5a3656 100%);
  color: var(--ivory);
  padding: 104px 0 112px;
  position: relative;
  overflow: hidden;
}
.hero h1 { color: var(--ivory); font-size: clamp(38px, 6vw, 68px); max-width: 16ch; }
.hero .eyebrow { color: #e8b87f; }
.hero-sub { font-size: clamp(18px, 2.2vw, 22px); color: rgba(247,241,232,.86); max-width: 56ch; margin: 26px 0 38px; line-height: 1.55; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tag { margin-top: 46px; display: flex; gap: 28px; flex-wrap: wrap; font-size: 14px; color: rgba(247,241,232,.72); }
.hero-tag span { display: flex; align-items: center; gap: 8px; }
.hero-tag span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

/* ---------- Spine / value ---------- */
.spine { background: var(--white); }
.spine-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.spine blockquote {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 34px);
  line-height: 1.3; color: var(--plum-deep); border-left: 3px solid var(--amber);
  padding-left: 26px; font-style: italic;
}
.pillars { display: grid; gap: 22px; }
.pillar { display: flex; gap: 16px; }
.pillar-num { font-family: var(--serif); font-size: 26px; color: var(--teal); line-height: 1; }
.pillar h4 { font-size: 19px; margin-bottom: 4px; }
.pillar p { font-size: 15.5px; color: var(--charcoal-soft); }

/* ---------- Cards / topics ---------- */
.section-head { max-width: 60ch; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-head p { margin-top: 16px; font-size: 18px; color: var(--charcoal-soft); }

.topics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.topic {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.topic:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.topic .num { font-family: var(--serif); font-size: 15px; color: var(--amber-deep); letter-spacing: .04em; }
.topic h3 { font-size: 23px; margin: 10px 0 6px; }
.topic .topic-sub { font-size: 14px; font-weight: 600; color: var(--teal-deep); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.topic ul { list-style: none; display: grid; gap: 9px; }
.topic li { font-size: 15px; color: var(--charcoal-soft); padding-left: 20px; position: relative; }
.topic li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

/* ---------- Formats strip ---------- */
.formats { background: var(--ivory-warm); }
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.format { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); }
.format h3 { font-size: 22px; margin-bottom: 10px; }
.format p { font-size: 15.5px; color: var(--charcoal-soft); }

/* ---------- Audiences ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { background: var(--white); border: 1px solid var(--line); border-radius: 100px; padding: 10px 20px; font-size: 14.5px; color: var(--charcoal-soft); font-weight: 500; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--teal-deep); color: var(--ivory); text-align: center; }
.cta-band h2 { color: var(--ivory); font-size: clamp(28px, 4vw, 42px); max-width: 20ch; margin: 0 auto 18px; }
.cta-band p { color: rgba(247,241,232,.85); font-size: 18px; max-width: 50ch; margin: 0 auto 32px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.portrait {
  aspect-ratio: 4/5; border-radius: var(--radius); background:
    linear-gradient(160deg, var(--teal) 0%, var(--plum) 100%);
  display: flex; align-items: flex-end; padding: 24px; color: rgba(255,255,255,.85);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.portrait .ph-note { font-size: 13px; background: rgba(0,0,0,.28); padding: 8px 12px; border-radius: 8px; }
.prose p { margin-bottom: 18px; font-size: 17.5px; color: var(--charcoal-soft); }
.prose p strong { color: var(--plum-deep); }
.creds { margin-top: 30px; display: grid; gap: 14px; }
.cred { display: flex; gap: 14px; align-items: baseline; padding-bottom: 14px; border-bottom: 1px dashed var(--line); }
.cred-label { font-family: var(--serif); color: var(--teal-deep); font-size: 15px; min-width: 116px; }
.cred span { font-size: 15.5px; color: var(--charcoal-soft); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gtile {
  aspect-ratio: 4/3; border-radius: var(--radius); border: 1px dashed var(--teal);
  background: var(--ivory-warm); display: flex; align-items: center; justify-content: center;
  color: var(--teal-deep); font-size: 14px; text-align: center; padding: 18px;
}
.gtile.tall { aspect-ratio: 3/4; }

/* ---------- Blog ---------- */
.posts { display: grid; gap: 22px; }
.post { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 32px; }
.post .meta { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--teal-deep); font-weight: 600; }
.post h3 { font-size: 24px; margin: 10px 0 8px; }
.post p { color: var(--charcoal-soft); font-size: 16px; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--plum-deep); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 16px; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--charcoal);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(79,138,139,.18);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-side h3 { font-size: 24px; margin-bottom: 8px; }
.contact-side p { color: var(--charcoal-soft); margin-bottom: 22px; }
.contact-list { display: grid; gap: 16px; }
.contact-list a { font-weight: 600; }
.note { font-size: 13px; color: var(--charcoal-soft); }

/* ---------- Footer ---------- */
.footer { background: var(--plum-deep); color: rgba(247,241,232,.8); padding: 56px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.footer .brand { color: var(--ivory); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; list-style: none; }
.footer-links a { color: rgba(247,241,232,.78); font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(247,241,232,.16); font-size: 13.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--ivory); flex-direction: column; align-items: flex-start;
    gap: 0; padding: 12px 28px 22px; border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; padding: 10px 0; }
  .nav-toggle { display: block; }
  .spine-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .topics, .formats-grid, .gallery-grid, .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 80px; }
}
