/* Reflective Resources — site styles (v3)
   Brand palette: Charcoal #333333 · Warm White #F8F7F5 · Dusty Rose #B98195 · Soft Taupe #D8D0CA */

:root {
  --bg: #F8F7F5;               /* Warm White */
  --bg-alt: #F0ECE8;           /* alt section bg */
  --bg-soft: #F4F1EE;          /* soft section bg */
  --border: #D8D0CA;           /* Soft Taupe */
  --border-soft: #E2DAD5;
  --border-soft2: #C8C0BA;
  --ink: #333333;              /* Charcoal — primary text */
  --ink-soft: #5A5A5A;
  --ink-soft2: #6A6A6A;
  --ink-faint: #6A6A6A;
  --ink-strong: #1A1A1A;
  --accent: #B98195;           /* Dusty Rose — icons, decorative, script, large text */
  --accent-text: #7D5A66;      /* Darkened rose — small text, eyebrow labels (5.5:1 on --bg) */
  --accent-border: #D4BEC8;
  --footer-bg: #282422;        /* Deep warm charcoal */
  --footer-text: #F8F7F5;      /* Warm White */
  --footer-muted: #BFB8B2;
  --footer-copyright: #908C88; /* lightened for 4.6:1 on footer bg */
  --footer-links: #A8A09A;
  --footer-accent: #C8A0B0;    /* Lightened rose for dark bg */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Mulish", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: "Pinyon Script", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: #D8C0CA; color: var(--ink); }

img { max-width: 100%; }
a { color: inherit; }
svg { flex-shrink: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 700;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--ink);
  padding: 17px 30px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.btn:hover { background: var(--ink-strong); }

.btn-outline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  border: 1px solid var(--accent);
  padding: 10px 18px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s;
}
.btn-outline:hover { background: rgba(185,129,149,0.08); }

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 48px;
  background: rgba(248, 247, 245, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: 64px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.nav-links a:not(.btn) {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--ink-soft2);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-links .btn { padding: 13px 22px; font-size: 12px; }

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(105deg, #F4F0EC 0%, #EDE5DD 100%);
  align-items: stretch;
  min-height: 640px;
}

.hero-copy {
  padding: 80px 48px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 58px;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--accent-text); }

.hero-rule { width: 54px; height: 2px; background: var(--accent); margin-bottom: 24px; }

.hero p.hero-pillars { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); font-weight: 600; line-height: 1.7; margin: 0 0 20px; max-width: 470px; }
.hero p.lede { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 20px; max-width: 460px; }
.hero p.lede strong { color: var(--ink); font-weight: 600; }

.hero .script-line {
  font-family: var(--font-script);
  font-size: 28px;
  line-height: 1.2;
  color: var(--accent-text);
  margin: 0 0 30px;
}

.hero-photo { position: relative; min-height: 480px; background: var(--border); }
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* ---------- Icon strip ---------- */

.icon-strip { background: var(--bg-alt); border-bottom: 1px solid var(--border-soft); padding: 36px 48px; }
.icon-strip-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.icon-strip-item { display: flex; align-items: center; gap: 18px; padding: 6px 30px; border-right: 1px solid var(--border-soft2); }
.icon-strip-item:last-child { border-right: none; }
.icon-strip-item svg { width: 42px; height: 42px; flex-shrink: 0; }
.icon-strip-item .icon-strip-title { font-family: var(--font-serif); font-size: 17px; color: var(--ink); margin: 0 0 4px; font-weight: 600; line-height: 1.25; }
.icon-strip-item p { font-size: 13px; line-height: 1.45; color: var(--ink-soft); margin: 0; }

/* ---------- Generic section ---------- */

section { padding: 80px 48px; }
.section-inner { max-width: 1160px; margin: 0 auto; }

h2 { font-family: var(--font-serif); font-weight: 500; color: var(--ink); margin: 0; }

/* ---------- Intro ---------- */

.intro { background: var(--bg); text-align: center; }
.intro .section-inner { max-width: 760px; }
.intro h2 { font-size: 34px; line-height: 1.18; max-width: 660px; margin: 0 auto; }
.intro-rule { width: 54px; height: 2px; background: var(--accent); margin: 24px auto 28px; }
.intro-body p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 16px; }
.intro-body .intro-emphasis { font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--accent-text); margin: 22px 0; }
.intro-body .intro-close { font-family: var(--font-serif); font-style: italic; font-size: 17px; line-height: 1.6; color: var(--ink); margin: 24px 0 0; }

/* ---------- Services ---------- */

.services { background: var(--bg-soft); }
.services-head { text-align: center; margin-bottom: 52px; }
.services-head h2 { font-size: 38px; line-height: 1.1; max-width: 760px; margin: 0 auto; }

.service-block { display: grid; grid-template-columns: 90px 1fr; gap: 30px; max-width: 900px; margin: 0 auto; padding: 34px 0; border-top: 1px solid var(--border-soft); }
.service-block:first-of-type { border-top: none; padding-top: 0; }
.service-block-head svg { width: 50px; height: 50px; }
.service-block-body h3 {
  font-family: var(--font-serif); font-weight: 600; font-size: 24px; letter-spacing: 0.01em;
  color: var(--ink); margin: 0 0 10px; line-height: 1.2;
}
.service-block-body p { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 14px; }
.service-block-body .service-tagline { font-size: 15.5px; color: var(--ink); font-weight: 500; }
.service-subhead { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); font-weight: 700; margin: 22px 0 12px !important; }
.service-list { list-style: none; padding: 0; margin: 0 0 14px; }
.service-list.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; }
.service-list li { position: relative; padding-left: 22px; font-size: 14px; line-height: 1.5; color: var(--ink); }
.service-list li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.service-note { font-family: var(--font-serif); font-style: italic; font-size: 15px; line-height: 1.6; color: var(--accent-text); margin: 6px 0 0 !important; }

/* ---------- Service cards (2x2) ---------- */

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1000px; margin: 0 auto; }
.svc-card { background: var(--bg); border: 1px solid var(--border-soft); padding: 42px 40px; display: flex; flex-direction: column; }
.svc-card svg { width: 48px; height: 48px; margin-bottom: 22px; }
.svc-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 22px; letter-spacing: 0.01em; color: var(--ink); margin: 0 0 14px; line-height: 1.25; }
.svc-card p { font-size: 14px; line-height: 1.72; color: var(--ink-soft); margin: 0 0 14px; }
.svc-card .svc-tagline { font-size: 15px; color: var(--ink); font-weight: 500; }
.svc-card .service-list { margin: 0 0 16px; }
.svc-card .svc-note { font-family: var(--font-serif); font-style: italic; font-size: 14.5px; line-height: 1.6; color: var(--accent-text); margin: 2px 0 18px; }
.learn-more { display: inline-flex; align-items: center; gap: 9px; margin-top: auto; font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--accent-text); text-decoration: none; transition: gap 0.18s, color 0.18s; }
.learn-more:hover { color: var(--ink); gap: 14px; }

.connect-location { margin-top: 16px !important; font-size: 13px; letter-spacing: 0.04em; color: var(--accent-text); font-weight: 600; }

/* ---------- About page ---------- */

.about-hero { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: linear-gradient(105deg, #F4F0EC 0%, #EDE5DD 100%); min-height: 460px; }
.about-hero-photo { position: relative; min-height: 380px; background: var(--border); order: 2; }
.about-hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.about-hero-copy { order: 1; padding: 80px 48px 80px 56px; display: flex; flex-direction: column; justify-content: center; max-width: 640px; }
.about-hero-copy h1 { font-family: var(--font-serif); font-weight: 500; font-size: 50px; line-height: 1.08; color: var(--ink); margin: 0 0 24px; letter-spacing: -0.005em; }
.about-hero-copy h1 em { font-style: italic; font-weight: 500; color: var(--accent-text); }
.about-hero-copy .script-line { font-family: var(--font-script); font-size: 26px; line-height: 1.3; color: var(--accent-text); margin: 4px 0 0; }

.about-body { background: var(--bg); }
.about-body .section-inner { max-width: 760px; }
.about-prose p { font-size: 16px; line-height: 1.8; color: var(--ink-soft); margin: 0 0 20px; }
.about-prose .about-pull { font-family: var(--font-serif); font-style: italic; font-size: 23px; line-height: 1.4; color: var(--accent-text); margin: 30px 0; text-align: center; }

.about-values { background: var(--bg-soft); border-top: 1px solid var(--border-soft); }
.about-values-head { text-align: center; margin-bottom: 46px; }
.about-values-head h2 { font-size: 32px; line-height: 1.12; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.value-item { text-align: center; padding: 0 30px; border-right: 1px solid var(--border-soft2); }
.value-item:last-child { border-right: none; }
.value-item h3 { font-family: var(--font-serif); font-weight: 600; font-size: 19px; color: var(--ink); margin: 0 0 12px; }
.value-item p { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ---------- Outcomes ---------- */

.outcomes { background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.outcomes-head { text-align: center; margin-bottom: 48px; }
.outcomes-head h2 { font-size: 36px; line-height: 1.1; }
.outcomes-head p { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 14px auto 0; max-width: 560px; }

.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.outcome-card {
  padding: 0 28px;
  border-right: 1px solid var(--border-soft2);
  position: relative;
}
.outcome-card:last-child { border-right: none; }
.outcome-card::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.9;
  color: var(--accent);
  opacity: 0.45;
  display: block;
  margin-bottom: 8px;
}
.outcome-card p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 14px;
  font-family: var(--font-serif);
}
.outcome-card .outcome-tag {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 700;
  font-style: normal;
  font-family: var(--font-sans);
}

/* ---------- Why ---------- */

.why { background: var(--bg); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.why .section-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: start; }
.why-head h2 { font-size: 32px; line-height: 1.15; margin-bottom: 18px; }
.why-rule { width: 46px; height: 2px; background: var(--accent); margin-bottom: 22px; }
.why-head .why-subhead { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--accent-text); margin: 0 0 18px; line-height: 1.4; }
.why-head p { font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }

.why-aside { background: var(--bg-alt); border: 1px solid var(--border-soft); padding: 34px 32px; }
.apart-title { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); font-weight: 700; margin: 0 0 20px; }
.apart-list { list-style: none; padding: 0; margin: 0 0 24px; }
.apart-list li { position: relative; padding-left: 30px; font-size: 14px; line-height: 1.4; color: var(--ink); margin-bottom: 13px; }
.apart-list li:last-child { margin-bottom: 0; }
.apart-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; font-size: 15px; }
.apart-script { font-family: var(--font-script); font-size: 23px; line-height: 1.3; color: var(--accent-text); margin: 0; }

/* ---------- Approach ---------- */

.approach { background: var(--bg-soft); position: relative; overflow: hidden; }
.approach-watermark { position: absolute; right: -60px; top: 60px; width: 280px; height: 280px; opacity: 0.10; pointer-events: none; }
.approach .section-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.approach-photo { position: relative; min-height: 400px; align-self: stretch; background: #E8E2DC; }
.approach-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.approach-copy { position: relative; z-index: 2; padding-right: 20px; }
.approach-copy h2 { font-size: 32px; line-height: 1.12; margin-bottom: 20px; }
.approach-copy h2 sup { font-size: 0.5em; }
.approach-copy p { font-size: 15px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
.approach-copy .pull-quote { font-family: var(--font-serif); font-style: italic; font-size: 17px; line-height: 1.5; color: var(--accent-text); margin: 0; }

/* ---------- About ---------- */

.about { background: var(--bg-alt); border-top: 1px solid var(--border-soft); }
.about .section-inner { padding: 0; max-width: 1160px; display: grid; grid-template-columns: 1fr 1.35fr; align-items: stretch; gap: 50px; }
.about-photo { position: relative; min-height: 440px; background: var(--border); }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.about-copy { padding: 60px 48px 60px 0; display: flex; flex-direction: column; justify-content: center; }
.about-copy h2 { font-size: 30px; line-height: 1.12; margin-bottom: 22px; }
.about-text { font-size: 14.5px; line-height: 1.72; color: var(--ink-soft); max-width: 560px; }
.about-text p { margin: 0 0 14px; }
.about-text p:last-child { margin-bottom: 0; }
.about-text .about-script { font-family: var(--font-script); font-size: 24px; line-height: 1.3; color: var(--accent-text); margin-top: 20px; }

/* ---------- Connect ---------- */

.connect {
  background: linear-gradient(100deg, #EDE8E3 0%, #E6DDD5 100%);
  position: relative; overflow: hidden; padding: 56px 48px;
}
.connect-watermark { position: absolute; width: 220px; height: 220px; opacity: 0.09; pointer-events: none; }
.connect-watermark.tl { left: -50px; top: -30px; }
.connect-watermark.br { right: -40px; bottom: -50px; width: 200px; height: 200px; }
.connect .section-inner {
  max-width: 1120px; display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 2; flex-wrap: wrap;
}
.connect-text { max-width: 600px; }
.connect-text h2 { font-size: 30px; line-height: 1.15; margin-bottom: 12px; }
.connect-text p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.connect .btn { white-space: nowrap; }

/* ---------- Footer ---------- */

.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 48px 48px 26px; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 40px; align-items: start; }
.footer-brand { display: flex; align-items: center; }
.footer-brand img { height: 92px; width: auto; display: block; }

.footer-middle { font-size: 12.5px; line-height: 1.7; color: var(--footer-muted); text-align: center; }
.footer-script { font-family: var(--font-script); font-size: 20px; color: var(--footer-accent); text-align: center; margin-top: 12px; }
.footer-humanity { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--footer-muted); text-align: center; margin-top: 10px; }

.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 12.5px; color: var(--footer-text); }
.footer-contact div { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 15px; height: 15px; }
.footer-contact a { text-decoration: none; color: inherit; }

.footer-bottom {
  max-width: 1160px; margin: 32px auto 0; padding-top: 18px; border-top: 1px solid #3C3836;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copyright { font-size: 11px; color: var(--footer-copyright); letter-spacing: 0.02em; }
.footer-legal { display: flex; gap: 20px; font-size: 11px; }
.footer-legal a { color: var(--footer-links); text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .site-nav { padding: 14px 20px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 44px 24px; max-width: none; }
  .hero h1 { font-size: 38px; }
  .hero-photo { min-height: 320px; }

  .icon-strip-inner { grid-template-columns: 1fr; gap: 18px; }
  .icon-strip-item { border-right: none; border-bottom: 1px solid var(--border-soft2); padding-bottom: 18px; }
  .icon-strip-item:last-child { border-bottom: none; padding-bottom: 6px; }

  section { padding: 48px 20px; }

  .service-block { grid-template-columns: 1fr; gap: 16px; }
  .service-block-head svg { width: 44px; height: 44px; }

  .svc-grid { grid-template-columns: 1fr; gap: 20px; }
  .svc-card { padding: 32px 26px; }

  .about-hero { grid-template-columns: 1fr; min-height: auto; }
  .about-hero-photo { order: 1; min-height: 320px; }
  .about-hero-copy { order: 2; padding: 44px 24px; max-width: none; }
  .about-hero-copy h1 { font-size: 36px; }
  .about-values-grid { grid-template-columns: 1fr; gap: 28px; }
  .value-item { border-right: none; padding: 0; }

  .why .section-inner { grid-template-columns: 1fr; gap: 32px; }

  .approach .section-inner { grid-template-columns: 1fr; }
  .approach-copy { padding-right: 0; }

  .about .section-inner { grid-template-columns: 1fr; }
  .about-copy { padding: 36px 20px; }

  .connect .section-inner { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .footer-middle, .footer-script { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 30px; }
  .service-list.cols { grid-template-columns: 1fr; }
  .intro h2 { font-size: 26px; }
}
