/* Senior Helpers Henderson — approved mock convergence
   Target: ≥80% visual match on homepage hero/type/buttons/discover band */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --navy: #2a2658;
  --navy-2: #34316a;
  --terra: #c45a22;
  --terra-2: #a84818;
  --purple: #5b3d8f;
  --purple-2: #4a3180;
  --cream: #f7f1e8;
  --cream-2: #faf7f2;
  --white: #ffffff;
  --text: #2c2948;
  --muted: #5c5872;
  --border: #e6dccf;
  --font-d: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-b: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1180px;
  /* Mock buttons are softly rounded rectangles — NOT full pills */
  --radius-btn: 0.65rem;
  --radius-card: 0.9rem;
  --radius-img: 1rem;
  --shadow: 0 20px 48px rgba(42, 38, 88, 0.12);
  --shadow-sm: 0 8px 26px rgba(42, 38, 88, 0.07);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--terra);
}

.wrap {
  width: min(100% - 2.75rem, var(--max));
  margin-inline: auto;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 241, 232, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(230, 220, 207, 0.95);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  min-height: 4.45rem;
  padding: 0.6rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  line-height: 1;
}

.brand:hover {
  color: inherit;
}

.brand__row {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.48rem;
  color: var(--navy);
}

.brand__row .accent {
  color: var(--terra);
}

.brand__heart {
  display: inline-flex;
  width: 0.9rem;
  height: 0.9rem;
  color: var(--terra);
  margin: 0 0.02rem 0.04rem;
}

.brand__heart svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand__loc {
  margin-top: 0.28rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
}

.site-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.1rem 1.4rem;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-bottom-color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-left: auto;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.btn--purple {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 3px 12px rgba(91, 61, 143, 0.22);
}

.btn--purple:hover {
  background: var(--purple-2);
  color: #fff;
}

.btn--navy {
  background: var(--navy);
  color: #fff;
  padding: 0.78rem 1.4rem;
  font-size: 0.9rem;
  box-shadow: 0 3px 12px rgba(42, 38, 88, 0.16);
}

.btn--navy:hover {
  background: var(--navy-2);
  color: #fff;
}

.link-explore {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

.link-explore:hover {
  color: var(--terra);
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--terra);
}

.header-phone svg {
  width: 1.02rem;
  height: 1.02rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  order: 3;
}

@media (max-width: 999px) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 4;
    width: 100%;
    flex-direction: column;
    display: none;
    gap: 0;
    border-top: 1px solid var(--border);
    margin: 0 -1.35rem;
    padding: 0.25rem 1.35rem 0.75rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.72rem 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (min-width: 1000px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
  }
}

/* ========== HERO: cream + blended desert ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}

/*
  Full-bleed desert scene, blended into cream from the LEFT and BOTTOM
  so copy sits on solid cream and the photo emerges on the right.
*/
.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__backdrop img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(72%, 52rem);
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.92) contrast(1.02);
}

/* Multi-stop cream blend — soft dissolve, not a hard crop */
.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      95deg,
      #f7f1e8 0%,
      #f7f1e8 30%,
      rgba(247, 241, 232, 0.97) 40%,
      rgba(247, 241, 232, 0.78) 50%,
      rgba(247, 241, 232, 0.4) 62%,
      rgba(247, 241, 232, 0.12) 78%,
      transparent 92%
    ),
    linear-gradient(
      180deg,
      rgba(247, 241, 232, 0.25) 0%,
      transparent 28%,
      transparent 72%,
      rgba(247, 241, 232, 0.88) 100%
    );
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding: 2.75rem 0 0.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.25rem;
    padding: 3.25rem 0 0.1rem;
    min-height: 30rem;
  }
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--terra);
}

.hero__sun {
  width: 0.95rem;
  height: 0.95rem;
  background: var(--terra);
  border-radius: 50%;
  box-shadow:
    0 -0.38rem 0 -0.26rem var(--terra),
    0 0.38rem 0 -0.26rem var(--terra),
    -0.38rem 0 0 -0.26rem var(--terra),
    0.38rem 0 0 -0.26rem var(--terra),
    -0.27rem -0.27rem 0 -0.26rem var(--terra),
    0.27rem -0.27rem 0 -0.26rem var(--terra),
    -0.27rem 0.27rem 0 -0.26rem var(--terra),
    0.27rem 0.27rem 0 -0.26rem var(--terra);
}

/* Large editorial display — mock-like scale */
.hero__title {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: clamp(2.9rem, 6vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
}

.hero__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--terra);
}

.hero__heart {
  margin: 0.4rem 0 0.9rem;
  color: var(--terra);
  font-size: 0.88rem;
  opacity: 0.92;
}

.hero__lead {
  margin: 0 0 1.55rem;
  max-width: 28.5rem;
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.15rem;
}

/*
  Foreground desert panel (also blended on left edge).
  On desktop the backdrop already paints the scene; this panel
  reinforces depth with a soft left feather.
*/
.hero__visual {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-img);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: transparent;
}

@media (min-width: 900px) {
  .hero__visual {
    aspect-ratio: 1.12 / 1;
    max-height: 27rem;
    width: 100%;
    /* Feather left edge into cream */
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.25) 6%,
      rgba(0, 0, 0, 0.75) 16%,
      #000 28%,
      #000 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.25) 6%,
      rgba(0, 0, 0, 0.75) 16%,
      #000 28%,
      #000 100%
    );
  }

  .hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      90deg,
      rgba(247, 241, 232, 0.65) 0%,
      rgba(247, 241, 232, 0.2) 22%,
      transparent 45%
    );
    pointer-events: none;
  }

  .hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      transparent 55%,
      rgba(247, 241, 232, 0.35) 100%
    );
    pointer-events: none;
  }
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.95);
}

@media (max-width: 899px) {
  .hero__backdrop img {
    width: 100%;
    opacity: 0.35;
  }

  .hero__backdrop::after {
    background:
      linear-gradient(
        180deg,
        #f7f1e8 0%,
        rgba(247, 241, 232, 0.92) 38%,
        rgba(247, 241, 232, 0.35) 70%,
        rgba(247, 241, 232, 0.15) 100%
      );
  }

  .hero__visual {
    box-shadow: var(--shadow);
  }
}

.hero__scroll {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0 1.4rem;
  text-decoration: none;
  color: var(--muted);
}

.hero__scroll:hover {
  color: var(--navy);
}

.hero__scroll-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll-btn {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  color: var(--navy);
}

/* ========== DISCOVER ========== */
.discover {
  background: var(--cream);
  padding: 0.1rem 0 3.4rem;
}

.discover__grid {
  display: grid;
  gap: 1.05rem;
}

@media (min-width: 900px) {
  .discover__grid {
    grid-template-columns: 1.08fr 1fr 1fr 1fr;
    gap: 1.05rem;
    align-items: stretch;
  }
}

.quote-card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(230, 220, 207, 0.95);
  padding: 1.4rem 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
}

.quote-card__mark {
  font-family: var(--font-d);
  font-size: 2.45rem;
  line-height: 0.75;
  color: var(--terra);
  opacity: 0.8;
  margin-bottom: 0.35rem;
}

.quote-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.62;
  color: var(--text);
  flex: 1;
}

.quote-card__rule {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.95rem 0 0.5rem;
  color: var(--terra);
  font-size: 0.76rem;
}

.quote-card__rule::before,
.quote-card__rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8c9b0;
}

.quote-card footer {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
}

.story-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(230, 220, 207, 0.95);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.story-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8dcc8;
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__body {
  padding: 0.9rem 0.95rem 1.05rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.story-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.24rem 0.48rem;
  border-radius: 0.3rem;
  margin-bottom: 0.5rem;
  background: #ebe4f6;
  color: var(--purple);
}

.story-card__tag--terra {
  background: #f3e2d2;
  color: var(--terra-2);
}

.story-card__tag--gold {
  background: #f5e9c8;
  color: #8a6a1e;
}

.story-card h3 {
  font-family: var(--font-d);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.38rem;
  color: var(--navy);
}

.story-card p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.48;
  flex: 1;
}

.story-card__more {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--terra);
}

.discover__foot {
  text-align: center;
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.discover__foot a {
  display: inline-block;
  margin-top: 0.25rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
}

/* ========== INNER ========== */
.page-hero {
  background: linear-gradient(180deg, #efe8dc, var(--cream));
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0 1.85rem;
}

.page-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.45rem;
  line-height: 1.12;
}

.page-hero .lede {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.site-main {
  padding: 2rem 0 3.4rem;
}

.wrap--narrow {
  width: min(100% - 2.75rem, 42rem);
  margin-inline: auto;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.95rem;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
}

.topics a {
  display: inline-block;
  padding: 0.24rem 0.55rem;
  border-radius: 0.3rem;
  background: #ebe4f6;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.prose {
  font-size: 1.05rem;
  line-height: 1.76;
}

.prose h2,
.prose h3 {
  font-family: var(--font-d);
  color: var(--navy);
  font-weight: 600;
  margin: 1.65rem 0 0.55rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose img {
  border-radius: var(--radius-card);
  margin: 1.15rem 0;
}

.post-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.post-list a {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.05rem 1.2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.post-list h2 {
  font-family: var(--font-d);
  font-size: 1.28rem;
  margin: 0 0 0.3rem;
  color: var(--navy);
  font-weight: 600;
}

.post-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-panel {
  margin-top: 2.3rem;
  padding: 1.4rem;
  background: linear-gradient(135deg, var(--navy), var(--purple));
  border-radius: var(--radius-card);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cta-panel p {
  margin: 0;
  max-width: 28rem;
}

.cta-panel .btn--purple {
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.consult-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  max-width: 36rem;
}

.consult-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.consult-form input[type="text"],
.consult-form input[type="tel"],
.consult-form input[type="email"],
.consult-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.62rem 0.72rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font: inherit;
}

.consult-form button[type="submit"] {
  display: inline-flex;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-btn);
  border: none;
  background: var(--purple);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #1a1838;
  color: #cdc8e2;
  padding: 2.7rem 0 1.8rem;
  font-size: 0.92rem;
}

.site-footer a {
  color: #efe9ff;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer__grid {
  display: grid;
  gap: 1.7rem;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1.35fr 1fr 1fr;
  }
}

.site-footer .brand__row {
  color: #fff;
  font-size: 1.35rem;
}

.site-footer .brand__loc {
  color: #e8a882;
}

.site-footer h3 {
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 0.6rem;
  font-weight: 600;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.38rem;
}

.site-footer__bottom {
  margin-top: 1.9rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: #9a95b4;
}

.franchise {
  font-style: italic;
  margin: 0.5rem 0 0;
  font-size: 0.84rem;
  color: #a39ebd;
}

.nap {
  margin: 0.85rem 0 0;
  line-height: 1.65;
}
