/* ARCC — Alima Redding Coaching & Consulting */

:root {
  --ink: #241B33;
  --plum: #3A2A52;
  --bronze: #A87B4F;
  --bronze-lt: #C9A87F;
  --sand: #F8F5F1;
  --card: #FFFDFB;
  --hair: #EDE7E0;
  --body: #544B60;
  --dim: #7A7185;
  --line: rgba(36, 27, 51, 0.1);
  --line-mid: rgba(36, 27, 51, 0.25);
  --gutter: clamp(20px, 5vw, 40px);
  --serif: Newsreader, Georgia, "Times New Roman", serif;
  --sans: Manrope, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.menu-open { overflow: hidden; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
::selection { background: var(--ink); color: var(--sand); }

a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--bronze); }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.02em; }

main { flex: 1 0 auto; }

.wrap { max-width: 1240px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}

.rule-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }
.rule-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--bronze); }

.lede {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.68;
  color: var(--body);
  max-width: 52ch;
  text-wrap: pretty;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 2px;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-primary { background: var(--ink); color: var(--sand); }
.btn-primary:hover { background: var(--plum); color: var(--sand); }

.btn-ghost { border-color: var(--line-mid); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(36, 27, 51, 0.04); color: var(--ink); }

.btn-light { background: var(--sand); color: var(--ink); }
.btn-light:hover { background: var(--bronze-lt); color: var(--ink); }

.btn-sm { padding: 13px 24px; font-size: 14px; }

.cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 241, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand { display: flex; align-items: center; gap: 14px; color: inherit; }
.brand:hover { color: inherit; }
.brand img { width: 42px; height: 42px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name b { font-family: var(--serif); font-size: 17px; font-weight: 400; letter-spacing: 0.01em; }
.brand-name span { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.nav a:not(.btn) {
  font-size: 15px;
  color: #5C5266;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav a:not(.btn):hover { color: var(--ink); }
.nav a:not(.btn)[aria-current="page"] { color: var(--ink); border-bottom-color: var(--ink); }

.burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: none;
  border: 1px solid rgba(36, 27, 51, 0.18);
  border-radius: 2px;
  cursor: pointer;
}
.burger span { display: block; width: 20px; height: 1.5px; background: var(--ink); }

/* ---------- mobile drawer ---------- */

.scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(36, 27, 51, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 61;
  background: var(--sand);
  transform: translateX(105%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 18px clamp(24px, 7vw, 36px) 36px;
}

.menu-open .drawer { transform: translateX(0); }
.menu-open .scrim { opacity: 1; pointer-events: auto; }

.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.drawer-brand { display: flex; align-items: center; gap: 12px; }
.drawer-brand img { width: 34px; height: 34px; }
.drawer-brand span { font-family: var(--serif); font-size: 16px; }

.drawer-close {
  width: 54px;
  height: 54px;
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 1px solid rgba(36, 27, 51, 0.18);
  border-radius: 2px;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}
.drawer-close:hover { background: rgba(36, 27, 51, 0.05); }

.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a:not(.btn) {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--body);
}
.drawer-nav a:not(.btn)[aria-current="page"] { color: var(--ink); }
.drawer .btn { margin-top: 34px; padding: 18px; text-align: center; }
.drawer-foot { margin-top: auto; padding-top: 26px; font-size: 12px; line-height: 1.6; color: var(--dim); }
.drawer-foot a { color: var(--dim); }

/* ---------- home hero ---------- */

.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 7vw, 66px);
  line-height: 1.04;
  margin-bottom: 26px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--plum); }

.hero .cta-row { margin-top: 38px; }

.stats { margin-top: clamp(36px, 5vw, 56px); display: flex; gap: 44px; flex-wrap: wrap; }
.stats dt { font-family: var(--serif); font-size: 32px; line-height: 1; }
.stats dd { margin: 6px 0 0; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); }

.hero-figure { position: relative; margin: 0; }
.hero-figure::before { content: ""; position: absolute; inset: 26px -26px -26px 26px; background: var(--hair); }
.hero-figure img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  background: var(--card);
}

/* ---------- story band ---------- */

.band { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.two {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) var(--gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
}

.two h2 { font-size: clamp(30px, 4.6vw, 42px); line-height: 1.12; margin-top: 20px; text-wrap: balance; }

.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.5;
  color: var(--plum);
  margin: 28px 0 0;
}

.prose { display: flex; flex-direction: column; gap: 22px; font-size: 17px; line-height: 1.75; color: var(--body); max-width: 64ch; }
.prose p { margin: 0; text-wrap: pretty; }
.prose .accent { padding-left: 22px; border-left: 2px solid var(--bronze); color: var(--ink); }

/* ---------- sections ---------- */

.section { max-width: 1240px; margin: 0 auto; padding: clamp(56px, 8vw, 104px) var(--gutter); }
.section-head { max-width: 60ch; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 42px); line-height: 1.12; text-wrap: balance; }
.section-head p { font-size: 18px; line-height: 1.7; color: var(--body); margin: 16px 0 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(36px, 5vw, 56px);
}

.card { background: var(--card); border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color 0.18s ease; }
.card:hover { border-color: rgba(36, 27, 51, 0.3); }
.card > img { width: 100%; height: 190px; object-fit: cover; }
.card-body { padding: 30px 30px 34px; }
.card-head { display: flex; align-items: baseline; gap: 10px; }
.num { font-family: var(--serif); font-size: 13px; color: var(--bronze); }
.card-head h3 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.card-body p { font-size: 15.5px; line-height: 1.72; color: var(--body); margin: 16px 0 0; text-wrap: pretty; }

/* ---------- CTA box ---------- */

.ctabox {
  background: var(--card);
  border: 1px solid rgba(36, 27, 51, 0.12);
  padding: clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}
.ctabox h2 { font-size: clamp(28px, 4.4vw, 40px); line-height: 1.1; text-wrap: balance; }
.ctabox p { font-size: 18px; line-height: 1.7; color: var(--body); margin: 14px 0 0; max-width: 52ch; }

/* ---------- services rows ---------- */

.rows { display: flex; flex-direction: column; gap: 2px; }

.srow {
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 300px 1fr auto;
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  padding: clamp(18px, 2.5vw, 28px);
  transition: border-color 0.18s ease;
}
.srow:hover { border-color: rgba(36, 27, 51, 0.28); }
.srow > img { width: 100%; height: 200px; object-fit: cover; }
.srow-body { padding: 8px 0; }
.srow-head { display: flex; align-items: baseline; gap: 12px; }
.srow-head h2 { font-size: clamp(23px, 3vw, 29px); letter-spacing: -0.015em; }
.srow-body p { font-size: 16px; line-height: 1.72; color: var(--body); margin: 14px 0 0; max-width: 70ch; text-wrap: pretty; }

/* ---------- dark band ---------- */

.dark { background: var(--ink); color: var(--sand); }
.dark-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 80px) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.dark-inner h2 { font-size: clamp(26px, 4vw, 36px); max-width: 30ch; text-wrap: balance; }

/* ---------- about ---------- */

.about {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter) clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.about-side { position: sticky; top: 120px; }
.about-side > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 15%; background: var(--card); border: 1px solid var(--line); }

.credline { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.credline img { width: 52px; height: 51px; }
.credline p { margin: 0; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dim); line-height: 1.5; }

.about-main h1 { font-size: clamp(36px, 6.5vw, 58px); line-height: 1.05; margin-top: 16px; }
.about-main .pull { margin: 24px 0 32px; max-width: 46ch; }

.creds { margin: 44px 0 0; border-top: 1px solid rgba(36, 27, 51, 0.14); }
.creds div { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.creds dt { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); padding-top: 3px; }
.creds dd { margin: 0; font-size: 16px; line-height: 1.6; }

/* ---------- contact ---------- */

.contact {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--gutter) clamp(56px, 8vw, 104px);
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(36px, 4vw, 60px);
}

.contact h1 { font-size: clamp(34px, 6vw, 54px); line-height: 1.05; margin-top: 16px; text-wrap: balance; }
.contact .lede { max-width: 44ch; margin: 20px 0 36px; }

.info { display: flex; flex-direction: column; gap: 18px; margin: 0; padding-top: 28px; border-top: 1px solid rgba(36, 27, 51, 0.14); }
.info dt { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); }
.info dd { margin: 0 0 0; font-size: 17px; }

#my-cal-inline-discoverycall { width: 100%; min-height: 560px; overflow: auto; }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); color: rgba(248, 245, 241, 0.72); }

.foot-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 72px) var(--gutter) 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}

.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-brand img { width: 44px; height: 44px; }
.foot-brand p { margin: 0; font-family: var(--serif); font-size: 20px; color: var(--sand); line-height: 1.25; }
.foot-tag { font-size: 15px; line-height: 1.7; margin: 22px 0 0; max-width: 38ch; }

.foot-col { display: flex; flex-direction: column; gap: 12px; }
.foot-col h2 { font-family: var(--sans); font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(248, 245, 241, 0.45); }
.foot-col a, .foot-col p { font-size: 15px; margin: 0; color: rgba(248, 245, 241, 0.72); }
.foot-col a:hover { color: var(--bronze-lt); }

.foot-badge { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.foot-badge img { width: 62px; height: 61px; }
.foot-badge p { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(248, 245, 241, 0.45); line-height: 1.6; }

.foot-bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px var(--gutter) 40px;
  border-top: 1px solid rgba(248, 245, 241, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(248, 245, 241, 0.5);
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .hero, .two, .about, .contact { grid-template-columns: 1fr; gap: 44px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .srow { grid-template-columns: 210px 1fr; gap: 28px; }
  .about-side { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-figure { max-width: 460px; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .burger { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .srow { grid-template-columns: 1fr; gap: 20px; }
  .srow .btn { width: 100%; text-align: center; }
  .ctabox { grid-template-columns: 1fr; gap: 28px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .creds div { grid-template-columns: 1fr; gap: 4px; }
  .stats { gap: 26px; }
  .hero .btn, .ctabox .btn, .dark-inner .btn { width: 100%; text-align: center; }
  #my-cal-inline-discoverycall { min-height: 620px; }
}

@media (min-width: 721px) {
  .drawer, .scrim { display: none; }
}
