/* ==========================================================================
   KindnessRavens — main stylesheet
   Theme: LIGHT (warm ivory) with gild-gold accent, parchment panels, ink-slate text
   Palette: ivory #FAF8F2 / ink #26221A / gild-gold #C9A24B / parchment #F1ECDD /
            ink-slate #6E6757 / hairline #E4DCC8
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #FAF8F2;
  color: #26221A;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #26221A;
  line-height: 1.2;
  margin: 0;
  font-weight: bold;
}

p {
  margin: 0 0 16px;
}

a {
  color: #C9A24B;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------
   Scroll reveal (fade-up) — safe without JavaScript
   ---------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   LEFT SIDEBAR NAVIGATION (.side-nav)
   ========================================================================== */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100%;
  background-color: #FAF8F2;
  border-right: 1px solid #E4DCC8;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 26px;
  z-index: 50;
}

.side-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  background-color: #26221A;
  flex: none;
  margin-top: 6px;
}

.brand-wordmark {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: #C9A24B;
  text-decoration: none;
  white-space: pre-line;
}

.brand-wordmark:hover {
  text-decoration: none;
  color: #b89038;
}

.brand-tagline {
  margin: 12px 0 0;
  font-size: 12px;
  color: #6E6757;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.side-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 38px;
  flex: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #6E6757;
  text-decoration: none;
  padding: 9px 0;
  border: 0;
  background: none;
  font-family: inherit;
  text-align: left;
}

.nav-link:hover {
  color: #26221A;
  text-decoration: none;
}

.nav-marker {
  width: 10px;
  height: 10px;
  background-color: #E4DCC8;
  flex: none;
}

.nav-link.active {
  color: #C9A24B;
  font-weight: bold;
}

.nav-link.active .nav-marker {
  background-color: #C9A24B;
}

.side-cta {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #C9A24B;
  color: #26221A;
  font-weight: bold;
  font-size: 14px;
  padding: 13px 10px;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.side-cta:hover {
  background-color: #b89038;
  color: #26221A;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid #E4DCC8;
  background-color: #F1ECDD;
  cursor: pointer;
  padding: 0;
  flex: none;
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #26221A;
  margin: 4px auto;
}

.nav-toggle .bar:first-child {
  margin-top: 11px;
}

.nav-toggle .bar:last-child {
  margin-bottom: 11px;
}

/* Main content sits to the right of the fixed sidebar */
.site-main {
  margin-left: 240px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.btn-gold {
  background-color: #C9A24B;
  color: #26221A;
}

.btn-gold:hover {
  background-color: #b89038;
  color: #26221A;
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: #C9A24B;
  border: 1px solid #C9A24B;
}

.btn-outline:hover {
  background-color: #C9A24B;
  color: #26221A;
  text-decoration: none;
}

.btn-ink {
  background-color: #26221A;
  color: #FAF8F2;
}

.btn-ink:hover {
  background-color: #3a352c;
  color: #FAF8F2;
  text-decoration: none;
}

/* ==========================================================================
   HERO — MIRRORED SPLIT (.mirror-hero) graphic left, text right
   ========================================================================== */
.mirror-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  padding: 96px clamp(24px, 6vw, 96px) 88px;
  background-color: #FAF8F2;
}

.hero-graphic {
  background-color: #F1ECDD;
  border-radius: 6px;
  padding: 72px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-graphic::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background-color: #C9A24B;
}

.hero-graphic::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #C9A24B;
}

.hero-copy {
  padding: 8px 0;
}

.eyebrow {
  display: inline-block;
  background-color: #C9A24B;
  color: #26221A;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
}

.hero-title {
  font-size: 46px;
  margin: 24px 0 18px;
  max-width: 620px;
}

.hero-sub {
  font-size: 18px;
  color: #6E6757;
  margin: 0 0 16px;
  max-width: 600px;
}

.hero-detail {
  font-size: 16px;
  color: #6E6757;
  margin: 0 0 30px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-location {
  margin: 22px 0 0;
  font-size: 14px;
  color: #6E6757;
}

/* --- CSS raven graphic (all solid colors) --- */
.raven {
  position: relative;
  width: 210px;
  height: 150px;
}

.raven-perch {
  position: absolute;
  left: 22px;
  bottom: 10px;
  width: 120px;
  height: 4px;
  background-color: #C9A24B;
  border-radius: 2px;
}

.raven-body {
  position: absolute;
  left: 48px;
  top: 42px;
  width: 130px;
  height: 70px;
  background-color: #26221A;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.raven-head {
  position: absolute;
  left: 34px;
  top: 34px;
  width: 34px;
  height: 34px;
  background-color: #26221A;
  border-radius: 50%;
}

.raven-eye {
  position: absolute;
  left: 54px;
  top: 46px;
  width: 5px;
  height: 5px;
  background-color: #C9A24B;
  border-radius: 50%;
}

.raven-beak {
  position: absolute;
  left: 12px;
  top: 42px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 16px solid #C9A24B;
}

.raven-tail {
  position: absolute;
  left: 158px;
  top: 86px;
  width: 0;
  height: 0;
  border-left: 26px solid #26221A;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: rotate(-24deg);
}

/* ==========================================================================
   STEP PROGRESSION (.step-progression)
   ========================================================================== */
.step-progression {
  padding: 96px clamp(24px, 6vw, 96px) 64px;
  background-color: #FAF8F2;
}

.section-head {
  max-width: 800px;
  margin-bottom: 30px;
}

.section-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9A24B;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 18px;
  color: #6E6757;
  margin: 0;
}

.step-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  align-items: start;
  padding: 44px 0 40px;
  border-top: 1px solid #E4DCC8;
}

.step-row:last-of-type {
  border-bottom: 1px solid #E4DCC8;
}

.step-numeral {
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
  color: #C9A24B;
}

.step-body h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.step-body p {
  color: #6E6757;
  font-size: 16px;
  margin: 0;
  max-width: 720px;
}

.step-progress {
  grid-column: 2;
  width: 160px;
  height: 2px;
  background-color: #E4DCC8;
  margin-top: 16px;
  position: relative;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background-color: #C9A24B;
  width: 0;
}

/* ==========================================================================
   METRIC BAND (.metric-band)
   ========================================================================== */
.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #C9A24B;
}

.metric-item {
  text-align: center;
  padding: 56px 24px;
}

.metric-item + .metric-item {
  border-left: 1px solid #FAF8F2;
}

.metric-num {
  display: block;
  font-size: 44px;
  font-weight: bold;
  color: #26221A;
  line-height: 1.1;
}

.metric-label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #26221A;
}

/* ==========================================================================
   STATEMENT BAND (.statement-band)
   ========================================================================== */
.statement-band {
  background-color: #F1ECDD;
  padding: 88px clamp(24px, 6vw, 96px);
}

.statement {
  font-size: 30px;
  font-weight: bold;
  color: #26221A;
  margin: 0 0 18px;
  max-width: 860px;
}

.statement-support {
  font-size: 17px;
  color: #6E6757;
  max-width: 780px;
  margin: 0;
}

/* ==========================================================================
   CTA BAND (.cta-band)
   ========================================================================== */
.cta-band {
  background-color: #C9A24B;
  padding: 92px clamp(24px, 6vw, 96px);
  text-align: center;
}

.cta-band h2 {
  font-size: 36px;
  color: #26221A;
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 17px;
  color: #26221A;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* ==========================================================================
   LINK-ROW FOOTER (.link-row-footer)
   ========================================================================== */
.link-row-footer {
  background-color: #FAF8F2;
  border-top: 1px solid #E4DCC8;
  padding: 46px 24px 58px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-links a {
  color: #6E6757;
  text-decoration: none;
}

.footer-links a:hover {
  color: #26221A;
  text-decoration: underline;
}

.dot {
  width: 5px;
  height: 5px;
  background-color: #E4DCC8;
  border-radius: 50%;
  flex: none;
}

.footer-legal {
  font-size: 13px;
  color: #6E6757;
  margin: 0;
}

.footer-legal a {
  color: #6E6757;
  text-decoration: underline;
}

.footer-legal a:hover {
  color: #26221A;
}

/* ==========================================================================
   SUB-PAGES — page head (shared by services and contact)
   ========================================================================== */
.page-head {
  padding: 92px clamp(24px, 6vw, 96px) 40px;
  background-color: #FAF8F2;
  border-bottom: 1px solid #E4DCC8;
}

.page-head .section-kicker {
  margin-bottom: 14px;
}

.page-title {
  font-size: 44px;
  max-width: 780px;
  margin-bottom: 18px;
}

.page-intro {
  font-size: 18px;
  color: #6E6757;
  max-width: 760px;
  margin: 0;
}

/* --- Services page --- */
.service-section {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 30px;
  align-items: start;
  padding: 52px clamp(24px, 6vw, 96px);
  border-top: 1px solid #E4DCC8;
  background-color: #FAF8F2;
}

.service-section:last-of-type {
  border-bottom: 1px solid #E4DCC8;
}

.service-num {
  font-size: 44px;
  font-weight: bold;
  color: #C9A24B;
  line-height: 1.1;
}

.service-body h2 {
  font-size: 27px;
  margin-bottom: 14px;
}

.service-body p {
  color: #6E6757;
  font-size: 16px;
  max-width: 760px;
}

.process-overview {
  background-color: #F1ECDD;
  padding: 84px clamp(24px, 6vw, 96px);
}

.process-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.process-head h2 {
  font-size: 32px;
  margin-bottom: 14px;
}

.process-head p {
  color: #6E6757;
  font-size: 17px;
  margin: 0;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid #E4DCC8;
}

.process-step:last-child {
  border-bottom: 1px solid #E4DCC8;
}

.process-step-num {
  font-size: 32px;
  font-weight: bold;
  color: #C9A24B;
  line-height: 1;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.process-step p {
  color: #6E6757;
  font-size: 16px;
  margin: 0;
  max-width: 720px;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  padding: 72px clamp(24px, 6vw, 96px);
  background-color: #FAF8F2;
}

.contact-info .section-kicker {
  margin-bottom: 14px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info p {
  color: #6E6757;
}

.info-block {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid #E4DCC8;
}

.info-label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A24B;
  margin-bottom: 8px;
}

.info-value {
  font-size: 17px;
  color: #26221A;
  margin: 0;
}

.info-value a {
  color: #26221A;
  text-decoration: underline;
}

.info-value a:hover {
  color: #C9A24B;
}

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  color: #26221A;
  padding: 7px 0;
  border-bottom: 1px solid #E4DCC8;
}

.hours-list li:last-child {
  border-bottom: 0;
}

.hours-list .hours-days {
  color: #6E6757;
}

.contact-form-panel {
  background-color: #F1ECDD;
  border: 1px solid #E4DCC8;
  border-top: 4px solid #C9A24B;
  padding: 40px 38px;
}

.contact-form-panel h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-form-panel > p {
  color: #6E6757;
  font-size: 15px;
  margin-bottom: 26px;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #26221A;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 16px;
  color: #26221A;
  background-color: #FAF8F2;
  border: 1px solid #C9A24B;
  border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #C9A24B;
  outline-offset: 0;
  border-color: #26221A;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: #6E6757;
  margin-top: 16px;
}

.form-status {
  font-size: 14px;
  font-weight: bold;
  color: #26221A;
  background-color: #C9A24B;
  padding: 10px 14px;
  margin-bottom: 20px;
}

/* --- FAQ accordion --- */
.faq-section {
  padding: 76px clamp(24px, 6vw, 96px) 88px;
  background-color: #FAF8F2;
  border-top: 1px solid #E4DCC8;
}

.faq-section .section-kicker {
  margin-bottom: 14px;
}

.faq-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.faq-list {
  max-width: 820px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  border-top: 1px solid #E4DCC8;
}

.faq-item:last-child {
  border-bottom: 1px solid #E4DCC8;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
  font-weight: bold;
  color: #26221A;
  padding: 22px 4px;
}

.faq-question .faq-arrow {
  color: #C9A24B;
  font-size: 20px;
  font-weight: bold;
  flex: none;
}

.faq-answer {
  display: none;
  color: #6E6757;
  font-size: 16px;
  padding: 0 4px 24px;
  max-width: 760px;
}

.faq-answer p {
  margin: 0;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   RESPONSIVE — tablet and mobile
   ========================================================================== */
@media (max-width: 1080px) {
  .mirror-hero {
    gap: 40px;
  }

  .metric-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-item + .metric-item {
    border-left: 0;
  }

  .metric-item:nth-child(even) {
    border-left: 1px solid #FAF8F2;
  }

  .metric-item:nth-child(n + 3) {
    border-top: 1px solid #FAF8F2;
  }
}

@media (max-width: 900px) {
  /* Sidebar becomes a static top bar with hamburger */
  .side-nav {
    position: static;
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px solid #E4DCC8;
    padding: 16px 20px;
  }

  .side-brand {
    margin-right: auto;
  }

  .brand-tagline {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .side-links {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #E4DCC8;
  }

  .side-nav.open .side-links {
    display: flex;
  }

  .side-cta {
    display: none;
  }

  .site-main {
    margin-left: 0;
  }

  .mirror-hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 64px 24px 60px;
  }

  .hero-graphic {
    padding: 56px 24px;
  }

  .hero-title {
    font-size: 38px;
  }

  .step-progression {
    padding: 72px 24px 48px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .step-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 36px 0;
  }

  .step-progress {
    grid-column: 1;
  }

  .statement-band {
    padding: 64px 24px;
  }

  .statement {
    font-size: 26px;
  }

  .cta-band {
    padding: 72px 24px;
  }

  .cta-band h2 {
    font-size: 30px;
  }

  .service-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 44px 24px;
  }

  .process-overview {
    padding: 64px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 24px;
  }

  .faq-section {
    padding: 56px 24px 64px;
  }

  .page-head {
    padding: 64px 24px 32px;
  }

  .page-title {
    font-size: 36px;
  }
}

@media (max-width: 560px) {
  .metric-band {
    grid-template-columns: 1fr;
  }

  .metric-item + .metric-item,
  .metric-item:nth-child(even) {
    border-left: 0;
    border-top: 1px solid #FAF8F2;
  }

  .hero-title {
    font-size: 34px;
  }

  .metric-num {
    font-size: 38px;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .contact-form-panel {
    padding: 28px 22px;
  }
}
