/* ==========================================================================
   Lumière Wellness — Design System
   Serene, warm, modern minimalist. Soft neutrals, generous whitespace.
   ========================================================================== */

:root {
  /* Palette */
  --ivory: #faf7f1;
  --ivory-deep: #f3ede3;
  --sand: #e9e0d2;
  --taupe: #8a7a6a;
  --taupe-soft: #b3a594;
  --clay: #b07d5e;
  --clay-deep: #96664a;
  --sage: #93a188;
  --ink: #2e2a26;
  --ink-soft: #5c554d;
  --white: #ffffff;
  --line: rgba(46, 42, 38, 0.12);
  --shadow: 0 18px 50px -24px rgba(46, 42, 38, 0.28);
  --shadow-soft: 0 10px 30px -18px rgba(46, 42, 38, 0.22);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1120px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 var(--space-2);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

p { margin: 0 0 var(--space-2); color: var(--ink-soft); }

a { color: var(--clay-deep); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--clay); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(var(--maxw), calc(100% - 2.5rem));
  margin-inline: auto;
}

section { padding: var(--space-6) 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: var(--space-2);
}

.section-intro { max-width: 56ch; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--clay-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.btn-light:hover { border-color: var(--ink); }

.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0.9rem 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.brand:hover { color: var(--clay-deep); }
.brand span { color: var(--clay); }

.main-nav { display: flex; align-items: center; gap: 1.8rem; }

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--ink); }

.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1.25rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.7rem 0; width: 100%; }
  .nav-cta { margin: 0.6rem 0 0; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: var(--space-6) 0 var(--space-5);
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(176, 125, 94, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(147, 161, 136, 0.12), transparent 60%),
    var(--ivory);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
  align-items: center;
}

.hero h1 { margin-bottom: var(--space-3); }
.hero h1 em { font-style: italic; color: var(--clay-deep); }

.hero-lede {
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: var(--space-4);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-3); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  font-size: 0.88rem;
  color: var(--taupe);
  letter-spacing: 0.04em;
}
.hero-meta span::before { content: "—"; margin-right: 0.5rem; color: var(--sand); }
.hero-meta span:first-child::before { content: none; }

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow);
}
.hero-card h3 { margin-bottom: var(--space-2); }
.hero-card ul { list-style: none; margin: 0 0 var(--space-3); padding: 0; }
.hero-card li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hero-card li:last-child { border-bottom: none; }
.hero-card li strong { font-weight: 600; color: var(--ink); }
.hero-card li span { color: var(--taupe); white-space: nowrap; }
.hero-card .btn { width: 100%; }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Service cards
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3) var(--space-3);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--sand);
}

.service-card .service-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ivory-deep);
  color: var(--clay-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: var(--space-2);
}

.service-card h3 { margin-bottom: 0.35rem; }

.service-meta {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: var(--space-2);
}

.service-card p { font-size: 0.97rem; flex-grow: 1; }

.service-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.service-price small { font-family: var(--font-body); font-size: 0.8rem; color: var(--taupe); }

/* --------------------------------------------------------------------------
   Detail rows (services page)
   -------------------------------------------------------------------------- */
.service-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.service-detail:last-of-type { border-bottom: 1px solid var(--line); }
.service-detail .price-line {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.service-detail ul { margin: 0 0 var(--space-2); padding-left: 1.2rem; color: var(--ink-soft); }
.service-detail li { margin-bottom: 0.4rem; font-size: 0.97rem; }

@media (max-width: 760px) {
  .service-detail { grid-template-columns: 1fr; gap: var(--space-2); }
}

/* --------------------------------------------------------------------------
   Trust / pillars
   -------------------------------------------------------------------------- */
.band {
  background: var(--ivory-deep);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
}
.pillar h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.pillar p { font-size: 0.95rem; margin: 0; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  text-align: center;
}
.cta-band h2 { color: var(--ivory); }
.cta-band p { color: rgba(250, 247, 241, 0.75); max-width: 52ch; margin-inline: auto; }
.cta-band .btn-primary { background: var(--ivory); color: var(--ink); margin-top: var(--space-2); }
.cta-band .btn-primary:hover { background: var(--clay); color: var(--white); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}
.form-grid .full { grid-column: 1 / -1; }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

input, select, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
input:hover, select:hover, textarea:hover { border-color: var(--taupe-soft); }
input:focus, select:focus, textarea:focus { border-color: var(--clay); outline: none; }

textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 0.85rem; color: var(--taupe); margin-top: var(--space-1); }

.form-status {
  margin-top: var(--space-2);
  font-size: 0.95rem;
  font-weight: 500;
  display: none;
}
.form-status.ok { display: block; color: #4a6741; }
.form-status.err { display: block; color: #9c4a2f; }

/* --------------------------------------------------------------------------
   Contact split
   -------------------------------------------------------------------------- */
.contact-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 820px) { .contact-split { grid-template-columns: 1fr; } }

.info-list { list-style: none; margin: var(--space-3) 0 0; padding: 0; }
.info-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.info-list li strong { color: var(--ink); display: block; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.2rem; }

/* --------------------------------------------------------------------------
   Booking flow
   -------------------------------------------------------------------------- */
.booking-steps {
  display: flex;
  gap: var(--space-2);
  margin: var(--space-3) 0 var(--space-4);
  flex-wrap: wrap;
}
.booking-step-indicator {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--taupe);
}
.booking-step-indicator .num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  background: var(--white);
}
.booking-step-indicator.active { color: var(--ink); }
.booking-step-indicator.active .num { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.booking-step-indicator.done .num { background: var(--sage); color: var(--white); border-color: var(--sage); }

.booking-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
}

.booking-stage { display: none; }
.booking-stage.active { display: block; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-2);
}

.choice-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  padding: var(--space-3);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.choice-card:hover { border-color: var(--taupe-soft); transform: translateY(-2px); }
.choice-card.selected { border-color: var(--clay-deep); background: var(--white); box-shadow: var(--shadow-soft); }
.choice-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.choice-card .meta { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--taupe); margin-bottom: 0.4rem; }
.choice-card .price { font-family: var(--font-display); font-size: 1.4rem; color: var(--ink); }

.date-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.6rem;
  margin-bottom: var(--space-3);
}
.date-pill {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--ivory);
  padding: 0.6rem 0.4rem;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink-soft);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.date-pill strong { display: block; font-size: 1.05rem; color: var(--ink); }
.date-pill:hover { border-color: var(--taupe-soft); }
.date-pill.selected { border-color: var(--clay-deep); background: var(--white); box-shadow: var(--shadow-soft); }

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 0.6rem;
}
.time-pill {
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--ivory);
  padding: 0.55rem 0.4rem;
  text-align: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.time-pill:hover { border-color: var(--taupe-soft); }
.time-pill.selected { border-color: var(--clay-deep); background: var(--ink); color: var(--ivory); }

.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.booking-summary {
  background: var(--ivory-deep);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: 0.95rem;
}
.booking-summary strong { color: var(--ink); }

.booking-confirm {
  text-align: center;
  padding: var(--space-4) 0;
}
.booking-confirm .confirm-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-3);
}

/* --------------------------------------------------------------------------
   Dashboard
   -------------------------------------------------------------------------- */
.dash-gate {
  max-width: 420px;
  margin: var(--space-5) auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow-soft);
}
.metric-card .metric-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.5rem;
}
.metric-card .metric-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--ink);
}
.metric-card .metric-sub { font-size: 0.85rem; color: var(--taupe); margin-top: 0.5rem; }
.metric-card.accent { background: var(--ink); border-color: var(--ink); }
.metric-card.accent .metric-label { color: rgba(250,247,241,0.6); }
.metric-card.accent .metric-value { color: var(--ivory); }
.metric-card.accent .metric-sub { color: rgba(250,247,241,0.55); }

.dash-updated { font-size: 0.85rem; color: var(--taupe); margin-top: var(--space-3); }

.empty-state {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  color: var(--taupe);
  margin-top: var(--space-4);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 247, 241, 0.7);
  padding: var(--space-5) 0 var(--space-3);
  margin-top: var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(250, 247, 241, 0.12);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .brand { color: var(--ivory); }
.site-footer h4 {
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 0.3rem 0; font-size: 0.93rem; }
.site-footer a { color: rgba(250, 247, 241, 0.7); }
.site-footer a:hover { color: var(--ivory); }
.footer-bottom {
  padding-top: var(--space-3);
  font-size: 0.82rem;
  color: rgba(250, 247, 241, 0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* --------------------------------------------------------------------------
   Chat widget
   -------------------------------------------------------------------------- */
#orion-chat { position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 90; }

.chat-launch {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, transform 0.2s ease;
}
.chat-launch:hover { background: var(--clay-deep); transform: translateY(-2px); }
.chat-launch .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--sage);
}

.chat-panel {
  position: fixed;
  bottom: 5.4rem;
  right: 1.4rem;
  width: min(380px, calc(100vw - 2rem));
  height: min(540px, calc(100vh - 8rem));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-panel.open { display: flex; }

.chat-head {
  background: var(--ink);
  color: var(--ivory);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-head h3 {
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}
.chat-head p { color: rgba(250,247,241,0.6); font-size: 0.78rem; margin: 0.15rem 0 0; }
.chat-close {
  background: none;
  border: none;
  color: rgba(250,247,241,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem;
}
.chat-close:hover { color: var(--ivory); }

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--ivory);
}

.chat-msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.chat-msg.bot {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--ink);
  color: var(--ivory);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg.typing { color: var(--taupe); font-style: italic; }

.chat-input-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.chat-input-row input { flex: 1; border-radius: 999px; padding: 0.65rem 1.1rem; }
.chat-input-row button {
  background: var(--ink);
  color: var(--ivory);
  border: none;
  border-radius: 999px;
  padding: 0 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.chat-input-row button:hover { background: var(--clay-deep); }

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: var(--space-5) 0 var(--space-4);
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(176, 125, 94, 0.1), transparent 60%),
    var(--ivory);
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 58ch; font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.center { text-align: center; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.muted { color: var(--taupe); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
