/* Elder Ease Concierge — senior-friendly, warm, high-contrast */

:root {
  --cream: #faf7f0;
  --cream-deep: #f3eee1;
  --sage: #a9bca9;
  --sage-soft: #cdd9cd;
  --green: #4e6b4e;
  --green-deep: #33472f;
  --ink: #22301f;
  --btn-dark: #1e2521;
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--green-deep);
  line-height: 1.15;
}

h2 { font-size: clamp(2rem, 4vw, 2.6rem); text-align: center; margin-bottom: 0.75em; }
h3 { font-size: 1.5rem; margin-bottom: 0.5em; }

section { padding: 4rem 1.25rem; }
section > p, .intro p { max-width: 46rem; margin-left: auto; margin-right: auto; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green-deep); color: #fff; padding: 0.6rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

/* Promo banner */
.promo-banner {
  background: var(--sage);
  color: var(--ink);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Header */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  padding: 1.4rem 1.25rem 1.1rem;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  text-decoration: none;
}
.brand-emblem { height: 68px; width: auto; mix-blend-mode: multiply; }

.header-links { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; justify-content: center; }
.brand-name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
}
.brand-tag {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--green);
}

.site-nav { display: flex; gap: 1.4rem; }
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.02rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a:focus { border-bottom-color: var(--green); }

.phone-pill {
  background: var(--green-deep);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.phone-pill:hover { background: var(--green); }

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, var(--sage-soft), transparent 70%),
    linear-gradient(160deg, var(--cream) 0%, var(--sage-soft) 60%, var(--sage) 100%);
  padding: 6rem 1.25rem 5.5rem;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-photo {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(40, 60, 40, 0.25);
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); max-width: 16ch; }
.hero-sub { max-width: 38rem; font-size: 1.15rem; margin: 1.2rem 0 2rem; }

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid var(--btn-dark);
  cursor: pointer;
}
.btn-primary { background: var(--btn-dark); color: #fff; }
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn-secondary { background: transparent; color: var(--btn-dark); }
.btn-secondary:hover { background: rgba(0,0,0,0.06); }

/* Intro */
.intro { text-align: center; background: var(--cream); }

/* Services */
.services { background: var(--cream-deep); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
}
.service-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 10px rgba(40, 60, 40, 0.07);
}
.service-photo {
  width: calc(100% + 3.5rem);
  margin: -2rem -1.75rem 1.2rem;
  height: 200px;
  object-fit: cover;
  border-radius: 14px 14px 0 0;
}
.service-card ul { list-style: none; }
.service-card li { padding: 0.28rem 0; border-bottom: 1px dashed var(--sage-soft); }
.service-card li:last-child { border-bottom: none; }
.service-more { margin-top: 0.6rem; color: var(--green); font-style: italic; }
.services-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--green-deep);
  font-weight: 500;
}

/* About */
.about-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  margin-bottom: 2.2rem;
}
.about-brand .brand-name { font-size: 2.3rem; }
.about-brand .brand-tag { font-size: 0.95rem; }
.about-emblem { height: 84px; width: auto; mix-blend-mode: multiply; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}
.about-col { text-align: center; }
.owner-blurb { background: var(--sage-soft); border-radius: 14px; padding: 1.5rem; }

/* FAQ */
.faq { background: var(--cream-deep); }
.faq details {
  max-width: 46rem;
  margin: 0 auto 0.8rem;
  background: var(--cream);
  border-radius: 10px;
  padding: 1rem 1.3rem;
  box-shadow: 0 1px 6px rgba(40, 60, 40, 0.06);
}
.faq summary {
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--green-deep);
}
.faq details[open] summary { margin-bottom: 0.5rem; }

/* Contact */
.contact { text-align: center; }
.contact-lines { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.6rem; }
.contact-line { color: var(--green-deep); font-size: 1.15rem; font-weight: 600; text-decoration: none; }
.contact-line:hover { text-decoration: underline; }
.contact-area { color: var(--green); margin-bottom: 2rem; }

.contact-form {
  max-width: 34rem;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 1.1rem;
}
.contact-form label { display: block; font-weight: 500; }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.7rem 0.85rem;
  font: inherit;
  border: 1.5px solid var(--sage);
  border-radius: 8px;
  background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 3px solid var(--sage-soft);
  border-color: var(--green);
}
.req { color: #a33; }
.hidden-field { display: none; }
.contact-form .btn { justify-self: center; }
.form-status { text-align: center; font-weight: 600; color: var(--green-deep); min-height: 1.5em; }

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  padding: 2.2rem 1.25rem;
  font-size: 0.95rem;
}
.fb-link { color: var(--cream); font-weight: 600; display: inline-block; margin-bottom: 0.6rem; }

/* Mobile */
@media (max-width: 840px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }   /* contact pill + anchor scrolling keep nav simple on mobile */
  .hero { padding: 4rem 1.25rem; }
  .brand-emblem { height: 52px; }
  .brand-name { font-size: 1.5rem; }
}
