/* Concierge Senior Home Care — beige / teal / gold design system */
:root {
  --beige: #F3EDE2;          /* page background */
  --beige-deep: #EAE1D1;     /* alternating bands */
  --cream: #FAF7F0;          /* cards */
  --ink: #2B2A26;            /* body text */
  --muted: #6E675C;
  --teal: #1F5F5B;
  --teal-deep: #143F3C;
  --gold: #B08A3E;
  --gold-soft: #C9A55C;
  --line: #DDD2BF;
  --shadow: 0 10px 30px rgba(43, 42, 38, 0.07);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--teal-deep); line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); letter-spacing: -0.01em; }
h1 em, h2 em { font-style: italic; color: var(--gold); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 0.5em; }
h3 { font-size: 1.45rem; margin-bottom: 0.35em; }
h4 { font-family: var(--sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.6em; }
p { margin-bottom: 1em; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.eyebrow {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--gold); font-weight: 600; margin-bottom: 1.1em;
}
.lede { font-size: 1.18rem; color: var(--muted); max-width: 46em; }

/* ---------- header ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(243, 237, 226, 0.92);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.25rem; color: var(--teal-deep); }
.brand em { font-style: italic; color: var(--gold); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal); color: var(--cream);
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.04em;
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a { font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.main-nav a.active { color: var(--teal); border-bottom: 2px solid var(--gold); padding-bottom: 3px; }
.main-nav a:hover { color: var(--teal); }
.inline-form { display: inline; }
.linklike { background: none; border: none; font: inherit; font-size: 0.95rem; color: var(--muted); cursor: pointer; }
.linklike:hover { color: var(--teal); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  padding: 10px 22px; transition: all 0.18s ease; border: 1.5px solid transparent; cursor: pointer;
}
.btn-lg { padding: 14px 30px; font-size: 1.02rem; }
.btn-solid { background: var(--teal); color: #fff !important; }
.btn-solid:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-outline { border-color: var(--teal); color: var(--teal) !important; background: transparent; }
.btn-outline:hover { background: var(--teal); color: #fff !important; }

/* ---------- hero ---------- */
.hero { padding: 110px 0 90px; }
.hero-inner { max-width: 820px; }
.hero h1 { margin-bottom: 0.35em; }
.hero-actions { display: flex; gap: 14px; margin: 1.8em 0 1.2em; flex-wrap: wrap; }
.hero-note { font-size: 0.9rem; color: var(--gold); font-style: italic; }

/* ---------- bands & cards ---------- */
.band { padding: 72px 0; }
.band-alt { background: var(--beige-deep); }
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
  padding: 30px 28px; box-shadow: var(--shadow);
}
.card h3 { color: var(--teal); }
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.check-list { list-style: none; }
.check-list li {
  padding: 11px 0 11px 34px; position: relative; border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "✓"; position: absolute; left: 4px; color: var(--gold); font-weight: 700;
}
.aside-panel {
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px;
  padding: 32px 30px; box-shadow: var(--shadow);
}
.aside-panel h3 { font-size: 1.15rem; margin-top: 1em; }
.aside-panel h3:first-child { margin-top: 0; }
.cta-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  background: var(--teal); border-radius: 18px; padding: 52px 56px; flex-wrap: wrap;
}
.cta-strip h2, .cta-strip p { color: var(--cream); }
.cta-strip p { margin-bottom: 0; max-width: 38em; opacity: 0.85; }
.cta-strip .btn-solid { background: var(--gold-soft); color: var(--teal-deep) !important; }
.cta-strip .btn-solid:hover { background: #d8b76e; }

/* ---------- photos ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.photo-strip img {
  width: 100%; height: 230px; object-fit: cover;
  border-radius: 14px; box-shadow: var(--shadow); display: block;
}
.photo-inline {
  width: 100%; max-height: 300px; object-fit: cover;
  border-radius: 14px; box-shadow: var(--shadow); display: block; margin-bottom: 18px;
}
@media (max-width: 860px) { .photo-strip { grid-template-columns: 1fr; } }

/* ---------- page head ---------- */
.page-head { padding: 90px 0 30px; }
.page-head h1 { margin-bottom: 0.3em; }

/* ---------- founders ---------- */
.founder {
  display: grid; grid-template-columns: 240px 1fr; gap: 48px;
  align-items: start; padding-bottom: 64px;
}
.founder-flip { grid-template-columns: 240px 1fr; }
.founder-photo {
  width: 240px; height: 280px; border-radius: 14px;
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.founder-photo span { font-family: var(--serif); font-size: 3.4rem; color: var(--gold-soft); letter-spacing: 0.05em; }
.founder-photo-img { object-fit: cover; background: none; }
.role-line { color: var(--gold); font-weight: 600; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1em; }
.contact-line a { font-weight: 600; }

/* ---------- forms ---------- */
.form label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 18px; color: var(--teal-deep); }
.form input, .form select, .form textarea {
  display: block; width: 100%; margin-top: 6px;
  font: inherit; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 12px 14px; transition: border-color 0.15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--teal);
}
.flash { border-radius: 10px; padding: 14px 18px; margin-bottom: 22px; font-size: 0.95rem; }
.flash-ok { background: #E7EFE4; border: 1px solid #BFD4B8; color: #2F5530; }
.flash-err { background: #F7E8E3; border: 1px solid #E0BCB0; color: #7C3A26; }
.big-link { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }

/* ---------- auth ---------- */
.auth-band { padding: 90px 0; }
.auth-wrap { display: flex; justify-content: center; }
.auth-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: 18px;
  padding: 46px 44px; max-width: 480px; width: 100%; box-shadow: var(--shadow);
}
.auth-card-wide { max-width: 760px; }
.auth-card h1 { font-size: 2.2rem; margin-bottom: 0.3em; }

/* ---------- role choice ---------- */
.role-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 26px; }
.role-card {
  display: flex; flex-direction: column; gap: 8px; text-align: left;
  background: var(--beige); border: 2px solid var(--line); border-radius: 14px;
  padding: 28px 24px; cursor: pointer; font: inherit; transition: all 0.15s ease;
}
.role-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow); }
.role-icon { font-size: 1.8rem; color: var(--gold); }
.role-title { font-family: var(--serif); font-size: 1.4rem; color: var(--teal-deep); font-weight: 600; }
.role-desc { color: var(--muted); font-size: 0.92rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--teal-deep); color: #D8E0DC; margin-top: 40px; }
.site-footer a { color: var(--gold-soft); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding: 60px 24px 30px;
}
.footer-brand { color: var(--cream); margin-bottom: 12px; }
.footer-brand .brand-mark { background: var(--gold-soft); color: var(--teal-deep); }
.site-footer h4 { color: var(--gold-soft); }
.site-footer .muted { color: #9FB3AD; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 18px; padding-bottom: 26px; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .three-up, .service-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .founder, .founder-flip { grid-template-columns: 1fr; }
  .founder-photo { width: 100%; height: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .role-choice { grid-template-columns: 1fr; }
  .cta-strip { padding: 36px 28px; }
  /* header: brand on top, the full menu on ONE line below */
  .site-header .wrap { height: auto; flex-direction: column; align-items: center; gap: 7px; padding: 10px 6px 11px; }
  .brand { font-size: 1.05rem; gap: 8px; }
  .brand-mark { width: 34px; height: 34px; font-size: 0.88rem; }
  .main-nav { flex-wrap: nowrap; gap: 8px; max-width: 100%; justify-content: center; }
  .main-nav a { font-size: 0.75rem; white-space: nowrap; }
  .main-nav .btn { padding: 5px 9px; font-size: 0.7rem; }
  .linklike { font-size: 0.75rem; white-space: nowrap; }
  .hero { padding: 70px 0 60px; }
}

@media (max-width: 400px) {
  .main-nav { gap: 6px; }
  .main-nav a { font-size: 0.7rem; }
  .main-nav .btn { padding: 4px 8px; font-size: 0.66rem; }
}
