/* LTM Group — warm, compassionate palette for senior-transition concierge */

:root {
  --cream: #FBF7F1;
  --cream-2: #F4ECE1;
  --espresso: #3B342E;
  --espresso-soft: #5C534A;
  --terracotta: #C57B57;
  --terracotta-dark: #A9623F;
  --sage: #8A9A7B;
  --gold: #D9A566;
  --line: #E6DBCB;
  --shadow: rgba(59, 52, 46, 0.10);

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;

  --maxw: 1040px;
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.7;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--espresso);
}

a { color: var(--terracotta-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Preview / coming-soon ribbon ---------- */
.preview-ribbon {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
}
.preview-ribbon strong { color: var(--gold); }

/* ---------- Header / nav ---------- */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  gap: 16px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.brand .wordmark {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.01em;
}
.badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
}
nav.main-nav a {
  color: var(--espresso-soft);
  margin-left: 22px;
  font-size: 0.98rem;
}
nav.main-nav a:first-child { margin-left: 0; }
nav.main-nav a.active { color: var(--terracotta-dark); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(217, 165, 102, 0.18), transparent),
    var(--cream);
  padding: 88px 0 72px;
}
.hero .launch-line {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 20px;
  max-width: 18ch;
}
.hero p.lede {
  font-size: 1.2rem;
  color: var(--espresso-soft);
  max-width: 60ch;
  margin: 0 0 32px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 8px 20px var(--shadow);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta-dark);
  margin-left: 12px;
}
.btn-ghost:hover { background: var(--cream-2); text-decoration: none; }

/* ---------- Sections ---------- */
section.block { padding: 64px 0; }
section.block.alt { background: var(--cream-2); }
.block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 16px;
}
.block .intro {
  font-size: 1.1rem;
  color: var(--espresso-soft);
  max-width: 64ch;
}

/* ---------- Services grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 6px 16px var(--shadow);
}
.service-card .dot {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--gold);
  opacity: 0.85;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.2rem; margin: 0 0 8px; }
.service-card p { margin: 0; color: var(--espresso-soft); font-size: 0.98rem; }

/* ---------- Generic prose page ---------- */
.page-head { padding: 72px 0 24px; }
.page-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 12px; }
.prose { padding-bottom: 72px; max-width: 70ch; }
.prose p { color: var(--espresso-soft); }

/* ---------- Contact ---------- */
.contact-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 28px;
  max-width: 540px;
}
.contact-card dl { margin: 0; }
.contact-card dt {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-top: 18px;
}
.contact-card dt:first-child { margin-top: 0; }
.contact-card dd { margin: 4px 0 0; font-size: 1.15rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 36px 0;
  color: var(--espresso-soft);
  font-size: 0.92rem;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer .preview-note { color: var(--terracotta-dark); font-style: italic; }

@media (max-width: 600px) {
  .site-header .container { justify-content: center; text-align: center; }
  .btn-ghost { margin-left: 0; margin-top: 12px; }
}
