:root {
  --cream: #faf7f1;
  --cream-deep: #f1ead9;
  --ink: #2c3a3a;
  --sage: #6f8f7c;
  --sage-deep: #4f6b5a;
  --navy: #2a3642;
  --terracotta: #c67c4e;
  --line: #e4dbc9;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Karla", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--sage-deep); }
a:hover { color: var(--terracotta); }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 1.05rem + 1vw, 1.85rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.brand-tagline {
  font-size: clamp(0.78rem, 0.68rem + 0.35vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--sage-deep);
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: var(--sage-deep);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s ease, transform 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--sage-deep);
  color: var(--sage-deep);
}

.btn-ghost:hover {
  background: var(--sage-deep);
  color: #fff;
  border-color: var(--sage-deep);
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.8rem, 0.68rem + 0.4vw, 1.05rem);
  color: var(--sage-deep);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 1rem;
}

.hero p.lead {
  font-size: 1.1rem;
  color: #3f4d4d;
  margin-bottom: 1.75rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px -18px rgba(42, 54, 66, 0.35);
}

.hero-photo .credential-pill {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.2);
}

/* Sunset band */
.calm-band {
  position: relative;
  min-height: 320px;
  background: #3a2f22;
}

.calm-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.calm-band .overlay {
  position: relative;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(30,25,15,0.15) 0%, rgba(30,25,15,0.55) 100%);
  display: flex;
  align-items: center;
}

.calm-band .wrap {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.calm-band .kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.78rem, 0.66rem + 0.4vw, 1.02rem);
  color: #f1ead9;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.calm-band h2 {
  color: #fff;
  font-size: 2rem;
  margin: 0 0 0.9rem;
}

.calm-band .swahili {
  font-style: italic;
  color: #ffe9c7;
  font-weight: 600;
}

.calm-band p {
  color: #f4efe4;
  max-width: 62ch;
  font-size: 1.05rem;
}

/* Sections */
section.panel {
  padding: 4rem 0;
}

section.panel.alt {
  background: var(--cream-deep);
}

.section-head {
  max-width: 60ch;
  margin-bottom: 2.25rem;
}

.section-head .kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(0.78rem, 0.66rem + 0.4vw, 1.02rem);
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-size: 1.9rem;
  margin: 0 0 0.75rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.credentials-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
}

.credentials-card h3 {
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.credentials-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  font-size: 0.95rem;
}

.credentials-card dt {
  font-weight: 700;
  color: var(--sage-deep);
  white-space: nowrap;
}

.credentials-card dd {
  margin: 0;
  color: #444;
}

/* Services grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.75rem;
}

.card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.card p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

/* Insurance */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
  color: var(--navy);
}

/* CTA */
.cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta h2 {
  color: #fff;
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.cta p {
  color: #d9e0dd;
  max-width: 55ch;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta .btn {
  background: var(--terracotta);
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
}

.cta .btn:hover {
  background: var(--sage);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-grid h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sage-deep);
  margin: 0 0 0.5rem;
}

.contact-grid p {
  margin: 0;
  color: #333;
}

/* Footer */
footer.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: #666;
}

footer.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer.site-footer .disclaimer {
  max-width: 60ch;
  margin: 1rem auto 0;
  text-align: center;
  color: #888;
}

/* Responsive */
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 3.5rem; }
  .hero-photo { max-width: 320px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .site-header { flex-direction: column; gap: 1rem; text-align: center; }
  .hero h1 { font-size: 2.1rem; }
}
