:root {
  --bg: #f8f2ea;
  --bg-soft: #f3ece3;
  --surface: #fffdf9;
  --surface-alt: #f7efe5;
  --text: #2f271f;
  --text-soft: #6c6055;
  --accent: #ad604b;
  --accent-strong: #914935;
  --accent-soft: #f4ddd0;
  --sage: #2f6d5e;
  --sage-soft: #d9ece5;
  --warn: #b45d4f;
  --success: #2e7358;
  --border: #e6d7c8;
  --shadow-sm: 0 8px 24px rgba(80, 49, 22, 0.08);
  --shadow-lg: 0 24px 48px rgba(80, 49, 22, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body {
  min-height: 100vh;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.page {
  padding: 2.5rem 0 4rem;
}

.page-header {
  margin-bottom: 1.6rem;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.15rem);
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0.2px;
}

.page-header p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  max-width: 72ch;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transform: translateY(0);
  transition: transform 240ms ease;
  will-change: transform;
}

#site-header.is-hidden {
  transform: translateY(calc(-100% - 0.5rem));
  pointer-events: none;
}

body.shell-ready {
  padding-top: var(--header-offset, 0px);
}

.site-header {
  position: relative;
  background: rgba(248, 242, 234, 0.92);
  border-bottom: 1px solid rgba(230, 215, 200, 0.7);
  backdrop-filter: blur(12px);
}
.top-trust {
  border-bottom: 1px solid rgba(230, 215, 200, 0.75);
  background: linear-gradient(90deg, rgba(244, 221, 208, 0.55), rgba(217, 236, 229, 0.6));
}

.top-trust .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.45rem 0;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.trust-pill {
  border: 1px solid rgba(47, 39, 31, 0.12);
  padding: 0.18rem 0.52rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
}

.navbar {
  padding: 0.8rem 0 0.95rem;
}

.navbar .container {
  position: relative;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.72rem 1rem;
  border: 1px solid rgba(67, 52, 105, 0.7);
  border-radius: 22px;
  padding: 0.58rem 0.72rem;
  background: linear-gradient(140deg, rgba(22, 18, 37, 0.93), rgba(14, 12, 25, 0.95));
  box-shadow: 0 16px 36px rgba(4, 3, 10, 0.45);
  position: relative;
  overflow: hidden;
}

.nav-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(169, 102, 255, 0.15), rgba(93, 199, 180, 0.12));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  padding: 1px;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--accent), #8141dc);
  box-shadow: 0 10px 22px rgba(74, 29, 145, 0.42);
}

.logo-wording {
  display: grid;
  line-height: 1.05;
}

.logo-wording strong {
  font-size: 0.94rem;
  letter-spacing: 0.2px;
}

.logo-wording small {
  display: block;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.72rem;
}

.nav-service-pill {
  border: 1px solid rgba(169, 102, 255, 0.34);
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  font-size: 0.72rem;
  color: #d8ccf6;
  background: rgba(169, 102, 255, 0.15);
  white-space: nowrap;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0.2rem;
  border: 1px solid rgba(90, 70, 136, 0.55);
  border-radius: 999px;
  padding: 0.24rem;
  background: rgba(15, 12, 25, 0.78);
}

.nav-links a {
  padding: 0.46rem 0.76rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-soft);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(169, 102, 255, 0.22);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 0.5rem;
}

.mobile-toggle {
  display: none;
  border: 1px solid rgba(169, 102, 255, 0.34);
  background: rgba(169, 102, 255, 0.12);
  color: #ece3ff;
  border-radius: 999px;
  padding: 0.48rem 0.86rem;
  min-height: 40px;
  font-weight: 600;
}

.mobile-toggle:hover {
  background: rgba(169, 102, 255, 0.2);
}

.notification-badge {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  padding: 0 0.36rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(140deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 12px 18px rgba(145, 73, 53, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 20px rgba(145, 73, 53, 0.3);
}

.btn-secondary {
  border-color: var(--border);
  background: var(--surface);
}

.btn-secondary:hover {
  background: var(--surface-alt);
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--text-soft);
}

.btn-soft {
  border-color: transparent;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.badge {
  border-radius: 999px;
  font-size: 0.76rem;
  padding: 0.22rem 0.6rem;
  border: 1px solid rgba(47, 39, 31, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-verified {
  background: var(--sage-soft);
  color: #205746;
  border-color: rgba(47, 109, 94, 0.2);
}

.badge-top {
  background: var(--accent-soft);
  color: #934f39;
  border-color: rgba(173, 96, 75, 0.25);
}

.badge-muted {
  background: rgba(47, 39, 31, 0.05);
  color: var(--text-soft);
}

.badge-success {
  background: rgba(46, 115, 88, 0.14);
  color: #2a664f;
  border-color: rgba(46, 115, 88, 0.23);
}

.badge-warn {
  background: rgba(180, 93, 79, 0.12);
  color: #8e4f43;
  border-color: rgba(180, 93, 79, 0.25);
}

.section {
  padding: 3.2rem 0;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-title h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
}

.section-title p {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
  max-width: 70ch;
}

.hero {
  position: relative;
  padding: 3.4rem 0 2.4rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(173, 96, 75, 0.18), transparent 68%);
  top: -120px;
  right: -90px;
}

.hero::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(47, 109, 94, 0.16), transparent 70%);
  left: -140px;
  bottom: -180px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.1;
}

.hero-copy p {
  margin: 1.1rem 0 0;
  max-width: 58ch;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-trust {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--surface), #fff7ef);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.panel-block {
  border: 1px solid rgba(230, 215, 200, 0.85);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 0.85rem;
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.col-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.col-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.card.highlight {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), #fff4ea);
}

.card h3,
.card h4 {
  margin: 0;
}

.card p {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
}

.icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(173, 96, 75, 0.16);
  color: var(--accent-strong);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.testimonial {
  display: grid;
  gap: 0.65rem;
}

.testimonial blockquote {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.testimonial footer {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(247, 239, 229, 0.6), rgba(248, 242, 234, 0.95));
}

.footer .container {
  padding: 2rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 1.2rem;
}

.footer-col h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 0.4rem;
}

.footer-meta {
  border-top: 1px solid var(--border);
  margin-top: 1rem;
  padding-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.auth-wrap {
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.auth-card {
  width: min(520px, 95vw);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.3rem;
  box-shadow: var(--shadow-lg);
}

.auth-card h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
}

.auth-card p {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
}

.auth-divider {
  margin: 1rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  position: relative;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}

.auth-divider::before {
  left: 0;
}

.auth-divider::after {
  right: 0;
}

.social-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

.form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.input-group {
  display: grid;
  gap: 0.38rem;
}

.input-group label {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 0.64rem 0.74rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(173, 96, 75, 0.5);
  box-shadow: 0 0 0 4px rgba(173, 96, 75, 0.12);
  outline: none;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.check input {
  width: 18px;
  height: 18px;
}

.alert {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
}

.alert-success {
  background: rgba(46, 115, 88, 0.12);
  border-color: rgba(46, 115, 88, 0.24);
  color: #245642;
}

.alert-warn {
  background: rgba(180, 93, 79, 0.14);
  border-color: rgba(180, 93, 79, 0.25);
  color: #7f4337;
}

.helper-link {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
}

.kpi {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem;
  background: var(--surface);
}

.kpi strong {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.24rem;
}

.kpi span {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.stack {
  display: grid;
  gap: 0.9rem;
}

.booking-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
}

.booking-card header {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #47382d;
  font-size: 0.92rem;
}

.avatar.large {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  font-size: 1.2rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-soft);
  font-size: 0.84rem;
}

.quick-links {
  display: grid;
  gap: 0.6rem;
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 0.66rem 0.72rem;
  font-size: 0.9rem;
}

.filter-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.tag {
  font-size: 0.75rem;
  color: var(--text-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  background: #fff;
}

.tag.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: rgba(173, 96, 75, 0.25);
}

.companion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.companion-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 0.92rem;
  display: grid;
  gap: 0.72rem;
}

.companion-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.identity {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.identity h3 {
  margin: 0;
  font-size: 1.02rem;
}

.identity p {
  margin: 0.28rem 0 0;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.44rem;
}

.metric {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.45rem;
}

.metric span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.metric strong {
  font-size: 0.94rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.price-set {
  display: grid;
  gap: 0.18rem;
}

.price-set strong {
  font-size: 1rem;
}

.price-set span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.rating-line {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.stars {
  letter-spacing: 1px;
  color: #d0944d;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 1rem;
}

.profile-hero {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--surface), #fff5ec);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.profile-top {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.profile-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stat-strip {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.stat-box {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 0.55rem;
}

.progress-list {
  display: grid;
  gap: 0.5rem;
}

.progress-row {
  display: grid;
  grid-template-columns: 120px 1fr 44px;
  align-items: center;
  gap: 0.45rem;
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(47, 39, 31, 0.1);
  overflow: hidden;
}

.progress-value {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #c78667);
}

.booking-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.summary-card {
  position: sticky;
  top: 118px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.45rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.summary-line strong {
  color: var(--text);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0.72rem 0;
}

.chat-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  min-height: 72vh;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.chat-list {
  border-right: 1px solid var(--border);
  padding: 0.8rem;
  display: grid;
  gap: 0.55rem;
  background: #fff;
}

.thread {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem;
  cursor: pointer;
  display: grid;
  gap: 0.32rem;
}

.thread.active {
  border-color: rgba(173, 96, 75, 0.4);
  background: var(--accent-soft);
}

.thread small {
  color: var(--text-soft);
}

.chat-main {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.chat-head {
  border-bottom: 1px solid var(--border);
  padding: 0.78rem 0.86rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.chat-messages {
  padding: 1rem;
  overflow: auto;
  background: linear-gradient(180deg, #fffdfb, #fef8f2);
  display: grid;
  gap: 0.65rem;
}

.bubble {
  width: fit-content;
  max-width: 74%;
  padding: 0.6rem 0.72rem;
  border-radius: 12px;
  font-size: 0.91rem;
  position: relative;
}

.bubble.user {
  margin-left: auto;
  background: #f2d7c8;
  color: #4d3126;
}

.bubble.companion {
  background: #fff;
  border: 1px solid var(--border);
}

.msg-meta {
  margin-top: 0.28rem;
  font-size: 0.72rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.34rem;
}

.chat-compose {
  border-top: 1px solid var(--border);
  padding: 0.72rem;
  display: grid;
  gap: 0.55rem;
}

.compose-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.read-state {
  color: var(--sage);
}

.typing {
  color: var(--text-soft);
  font-size: 0.83rem;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.rating-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.star-input {
  display: inline-flex;
  gap: 0.15rem;
}

.star-input button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.18rem;
  color: #d0c2b2;
  padding: 0;
  line-height: 1;
}

.star-input button.active {
  color: #d0944d;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.empty-state {
  border: 1px dashed var(--border);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.7);
}

.compare-bar {
  position: sticky;
  bottom: 14px;
  z-index: 10;
  margin-top: 0.8rem;
  border: 1px solid rgba(173, 96, 75, 0.35);
  border-radius: 14px;
  background: #fff6ef;
  box-shadow: var(--shadow-sm);
  padding: 0.72rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.compare-items {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.compare-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.78rem;
  padding: 0.22rem 0.55rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  border-bottom: 1px solid var(--border);
  padding: 0.52rem 0.4rem;
  font-size: 0.9rem;
  text-align: left;
}

.accordion details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 0.72rem 0.82rem;
}

.accordion details + details {
  margin-top: 0.62rem;
}

.accordion summary {
  font-weight: 600;
  cursor: pointer;
}

.legal-wrap {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 1rem;
}

.legal-wrap h2 {
  margin-top: 1.2rem;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--text-soft);
}

.legal-wrap ul {
  padding-left: 1.1rem;
}

.toast-wrap {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: grid;
  gap: 0.5rem;
}

.toast {
  min-width: 230px;
  border: 1px solid rgba(47, 39, 31, 0.16);
  border-radius: 10px;
  background: #fff;
  padding: 0.65rem 0.72rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.86rem;
}

.toast.success {
  border-color: rgba(46, 115, 88, 0.35);
}

.skeleton {
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(228, 216, 202, 0.3), rgba(255, 255, 255, 0.75), rgba(228, 216, 202, 0.3));
  background-size: 220% 100%;
  animation: pulse 1.1s infinite;
}

.skeleton-line {
  height: 12px;
}

.skeleton-card {
  height: 260px;
}

@keyframes pulse {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.hidden {
  display: none !important;
}

.center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.6rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.35rem;
}

@media (max-width: 1100px) {
  .companion-grid,
  .favorites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.col-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-layout,
  .profile-layout,
  .booking-layout,
  .checkout-layout,
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chat-shell {
    grid-template-columns: 1fr;
  }

  .chat-list {
    border-right: none;
    border-bottom: 1px solid var(--border);
    max-height: 230px;
    overflow: auto;
  }
}

@media (max-width: 1120px) {
  .nav-service-pill {
    display: none;
  }

  .nav-links a {
    padding: 0.42rem 0.66rem;
  }
}
@media (max-width: 820px) {
  .top-trust .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
    padding: 0.56rem;
  }

  .nav-brand {
    min-width: 0;
  }

  .nav-service-pill {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links,
  .nav-cta {
    display: none;
    grid-column: 1 / -1;
  }

  .navbar.open .nav-links,
  .navbar.open .nav-cta {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-top: 0.36rem;
  }

  .navbar.open .nav-links {
    border-radius: 16px;
    border: 1px solid rgba(90, 70, 136, 0.55);
    background: rgba(13, 11, 23, 0.78);
    padding: 0.4rem;
    gap: 0.2rem;
  }

  .navbar.open .nav-links a,
  .navbar.open .nav-cta .btn,
  .navbar.open .nav-cta .badge {
    width: 100%;
    justify-content: center;
  }

  .companion-grid,
  .favorites-grid,
  .card-grid.col-3,
  .card-grid.col-2,
  .footer-grid,
  .rating-row,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .form-grid.two-col {
    grid-template-columns: 1fr;
  }

  .progress-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .filter-grid {
    grid-template-columns: 1fr;
  }

  .companion-grid,
  .favorites-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .auth-card {
    padding: 1rem;
  }

  .social-row {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  #site-header {
    transition: none;
  }
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}




/* Comfy Image-First Redesign */
:root {
  --bg: #fff8ea;
  --bg-soft: #fff1d8;
  --surface: #fffdf8;
  --surface-alt: #fff4df;
  --text: #2b251d;
  --text-soft: #6e6558;
  --accent: #ffc933;
  --accent-strong: #e3b425;
  --accent-soft: #ffe9ad;
  --sage: #4f7a68;
  --sage-soft: #e3f0e8;
  --border: #f0dfbd;
  --shadow-sm: 0 12px 26px rgba(72, 48, 17, 0.08);
  --shadow-lg: 0 24px 44px rgba(72, 48, 17, 0.14);
}

html,
body {
  font-family: "Nunito", "Segoe UI", sans-serif;
}

body {
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 201, 51, 0.22), transparent 36%),
    radial-gradient(circle at 90% 0%, rgba(255, 180, 80, 0.16), transparent 35%),
    var(--bg);
}

.site-header {
  background: rgba(255, 248, 234, 0.92);
  border-bottom: 1px solid rgba(240, 223, 189, 0.8);
}

.top-trust {
  background: linear-gradient(90deg, rgba(255, 201, 51, 0.2), rgba(255, 243, 208, 0.72));
}

.logo-mark {
  color: #342717;
  background: linear-gradient(145deg, #ffd447, #f4be2e);
  box-shadow: 0 8px 16px rgba(155, 114, 17, 0.25);
}

.btn {
  border-radius: 999px;
}

.btn-primary {
  color: #2f2418;
  background: linear-gradient(145deg, #ffd750, #f0bf2f);
  box-shadow: 0 12px 20px rgba(166, 119, 17, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 14px 22px rgba(166, 119, 17, 0.31);
}

.card,
.kpi,
.filter-shell,
.summary-card,
.profile-hero,
.companion-card {
  border-radius: 24px;
  border-color: var(--border);
}

.hero-copy h1 {
  line-height: 1.04;
}

.hero-panel {
  background: linear-gradient(160deg, #fffefb, #fff2cf);
}

.filter-shell {
  background: linear-gradient(160deg, #fffdf8, #fff5e1);
}

.tag {
  background: #fff9ed;
  border-color: #f2ddb3;
}

.tag.active {
  background: #ffe9ac;
  color: #3d2c16;
  border-color: rgba(255, 201, 51, 0.5);
}

.companion-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.companion-card.image-first {
  padding: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fffefb, #fff9ef);
}

.companion-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f8e4be;
}

.companion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.companion-card.image-first:hover .companion-media img {
  transform: scale(1.04);
}

.companion-overlay-tags {
  position: absolute;
  inset: 0 auto auto 0;
  padding: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.companion-card .companion-body {
  padding: 0.95rem;
  display: grid;
  gap: 0.68rem;
}

.companion-card .companion-header {
  align-items: flex-start;
}

.companion-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.companion-card p {
  margin: 0.32rem 0 0;
  color: var(--text-soft);
}

.price-row {
  align-items: flex-end;
}

.price-set strong {
  font-size: 1.08rem;
}

.profile-hero {
  background: linear-gradient(160deg, #fffefb, #fff3d1);
}

.profile-top {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  align-items: center;
  gap: 1rem;
}

.profile-portrait {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(240, 223, 189, 0.95);
  background: #fae5bc;
  box-shadow: 0 14px 26px rgba(80, 48, 18, 0.16);
}

.profile-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-intro h1 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  margin: 0.35rem 0 0;
}

.profile-actions {
  margin-top: 1.2rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(169, 102, 255, 0.22);
}

.footer {
  background: linear-gradient(180deg, rgba(255, 243, 210, 0.66), rgba(255, 248, 234, 0.94));
}

@media (max-width: 1100px) {
  .profile-top {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    max-width: 420px;
  }
}

@media (max-width: 1120px) {
  .nav-service-pill {
    display: none;
  }

  .nav-links a {
    padding: 0.42rem 0.66rem;
  }
}
@media (max-width: 820px) {
  .companion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .companion-card .companion-body {
    padding: 0.82rem;
  }
}

/* Comfy Image-First Refinements */
.hero-panel {
  gap: 1rem;
}

.hero-face-stack {
  display: grid;
  gap: 0.55rem;
}

.hero-face-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 0.62rem;
  align-items: center;
  border: 1px solid rgba(240, 223, 189, 0.9);
  border-radius: 18px;
  padding: 0.52rem;
  background: rgba(255, 255, 255, 0.82);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-face-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(87, 62, 24, 0.14);
}

.hero-face-img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(240, 223, 189, 0.94);
  background: #fae4bb;
}

.hero-face-copy {
  display: grid;
  gap: 0.14rem;
}

.hero-face-copy strong {
  font-size: 0.94rem;
  line-height: 1.2;
}

.hero-face-copy small {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.avatar-photo {
  object-fit: cover;
  border: 1px solid rgba(240, 223, 189, 0.95);
  background: #fae4bb;
}

.avatar.avatar-photo,
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.companion-media {
  position: relative;
}

.companion-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 14, 9, 0.03) 34%, rgba(19, 14, 9, 0.72) 100%);
  pointer-events: none;
}

.companion-overlay-main {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.72rem;
  display: grid;
  gap: 0.24rem;
  z-index: 1;
}

.companion-overlay-main h3 {
  margin: 0;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
}

.rating-chip {
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(24, 18, 12, 0.46);
  color: #fff;
  font-size: 0.76rem;
  padding: 0.15rem 0.52rem;
}

.companion-card .companion-body {
  gap: 0.72rem;
}

.companion-intro {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.metric {
  background: rgba(255, 255, 255, 0.84);
}

.profile-portrait-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
}

img.profile-portrait-media {
  object-fit: cover;
}

div.profile-portrait-media {
  display: grid;
  place-items: center;
  font-size: 2.8rem;
  font-weight: 800;
  color: #4a321d;
  background: linear-gradient(180deg, #fde6b9, #f3cd86);
}

.thread {
  text-align: left;
}

.thread-main {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.56rem;
}

.thread-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.thread-copy {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.thread-copy strong,
.thread-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.thread-copy small {
  color: var(--text-soft);
}

@media (max-width: 520px) {
  .hero-face-card {
    grid-template-columns: 54px 1fr;
  }

  .hero-face-img {
    width: 54px;
    height: 54px;
  }

  .thread-main {
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .thread-avatar {
    width: 38px;
    height: 38px;
  }
}

.hero-face-img:not(img) {
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #4a321d;
}


/* Midnight Violet Theme Override */
:root {
  --bg: #0b0913;
  --bg-soft: #130f22;
  --surface: #171327;
  --surface-alt: #211a37;
  --text: #f3efff;
  --text-soft: #b9b0d2;
  --accent: #a966ff;
  --accent-strong: #7f39dc;
  --accent-soft: rgba(169, 102, 255, 0.2);
  --sage: #5dc7b4;
  --sage-soft: rgba(93, 199, 180, 0.2);
  --warn: #d07b90;
  --success: #5dc7b4;
  --border: #332a51;
  --shadow-sm: 0 12px 26px rgba(5, 4, 12, 0.45);
  --shadow-lg: 0 26px 52px rgba(5, 4, 12, 0.55);
}

html,
body {
  color: var(--text);
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(169, 102, 255, 0.22), transparent 38%),
    radial-gradient(circle at 88% 2%, rgba(93, 199, 180, 0.11), transparent 30%),
    linear-gradient(180deg, #0b0913, #090711 55%, #090711);
}

.site-header {
  background: rgba(11, 9, 19, 0.86);
  border-bottom: 1px solid rgba(51, 42, 81, 0.72);
}

.top-trust {
  border-bottom: 1px solid rgba(51, 42, 81, 0.72);
  background: linear-gradient(90deg, rgba(169, 102, 255, 0.16), rgba(93, 199, 180, 0.08));
}

.trust-pill {
  border-color: rgba(185, 176, 210, 0.35);
  background: rgba(22, 18, 35, 0.7);
  color: var(--text-soft);
}

.nav-shell {
  border-color: rgba(74, 60, 114, 0.76);
  background: linear-gradient(140deg, rgba(23, 18, 38, 0.94), rgba(13, 11, 23, 0.95));
  box-shadow: 0 20px 36px rgba(4, 3, 10, 0.52);
}

.nav-shell::before {
  background: linear-gradient(120deg, rgba(169, 102, 255, 0.22), rgba(93, 199, 180, 0.14));
}

.logo-mark {
  color: #f5f1ff;
  background: linear-gradient(145deg, #aa67ff, #8141dc);
  box-shadow: 0 10px 24px rgba(74, 29, 145, 0.46);
}

.logo-wording small {
  color: var(--text-soft);
}

.nav-service-pill {
  border-color: rgba(169, 102, 255, 0.42);
  background: rgba(169, 102, 255, 0.2);
  color: #dfd0ff;
}

.nav-links {
  border-color: rgba(90, 70, 136, 0.62);
  background: rgba(12, 10, 21, 0.82);
}

.nav-links a {
  color: var(--text-soft);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(169, 102, 255, 0.24);
}

.mobile-toggle {
  border-color: rgba(169, 102, 255, 0.42);
  background: rgba(169, 102, 255, 0.18);
  color: #ece2ff;
}

.mobile-toggle:hover {
  background: rgba(169, 102, 255, 0.28);
}

.hero::before {
  background: radial-gradient(circle, rgba(169, 102, 255, 0.26), transparent 68%);
}

.hero::after {
  background: radial-gradient(circle, rgba(93, 199, 180, 0.16), transparent 70%);
}

.hero-copy h1 {
  line-height: 1.05;
  letter-spacing: 0.2px;
}

.hero-copy p {
  color: #cdc5e3;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(169, 102, 255, 0.38);
  border-radius: 999px;
  padding: 0.28rem 0.72rem;
  background: rgba(169, 102, 255, 0.14);
  font-size: 0.78rem;
  color: #ddccff;
  margin-bottom: 0.65rem;
}

.hero-proof {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.hero-proof-item {
  border: 1px solid rgba(169, 102, 255, 0.3);
  border-radius: 16px;
  background: rgba(169, 102, 255, 0.08);
  padding: 0.58rem 0.62rem;
  display: grid;
  gap: 0.18rem;
}

.hero-proof-item strong {
  font-size: 0.83rem;
}

.hero-proof-item span {
  font-size: 0.74rem;
  color: var(--text-soft);
  line-height: 1.3;
}

.hero-panel {
  background: linear-gradient(165deg, rgba(31, 25, 53, 0.92), rgba(18, 14, 32, 0.95));
  border-color: rgba(73, 58, 112, 0.62);
}

.panel-block {
  border-color: rgba(73, 58, 112, 0.6);
  background: rgba(20, 15, 35, 0.85);
}

.panel-block p {
  color: #c7bddf;
}

.card,
.kpi,
.filter-shell,
.summary-card,
.profile-hero,
.booking-card,
.review-card,
.empty-state,
.quick-links a,
.thread,
.chat-shell,
.chat-list,
.legal-wrap,
.accordion details,
.compare-bar {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.card.highlight {
  background: linear-gradient(165deg, rgba(39, 31, 63, 0.95), rgba(24, 19, 41, 0.95));
}

.card p,
.page-header p,
.section-title p,
.meta-row,
.form-note,
.footer-col a,
.footer-meta,
.quick-links a,
.review-card p,
.alert {
  color: var(--text-soft);
}

.icon-circle {
  background: rgba(169, 102, 255, 0.18);
  color: #e5d3ff;
}

.input,
.select,
.textarea {
  background: #120f20;
  border-color: #3a2f58;
  color: var(--text);
}

.input::placeholder,
.textarea::placeholder {
  color: #9488b3;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(169, 102, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(169, 102, 255, 0.2);
}

.badge {
  border-color: rgba(185, 176, 210, 0.32);
}

.badge-muted {
  background: rgba(185, 176, 210, 0.12);
  color: #d7cfea;
}

.badge-verified {
  background: rgba(93, 199, 180, 0.16);
  color: #93e5d8;
  border-color: rgba(93, 199, 180, 0.32);
}

.badge-top {
  background: rgba(169, 102, 255, 0.2);
  color: #e4d0ff;
  border-color: rgba(169, 102, 255, 0.42);
}

.badge-success {
  background: rgba(93, 199, 180, 0.16);
  color: #a6ebdf;
  border-color: rgba(93, 199, 180, 0.32);
}

.badge-warn {
  background: rgba(208, 123, 144, 0.18);
  color: #f4c6d3;
  border-color: rgba(208, 123, 144, 0.35);
}

.btn {
  border-radius: 999px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, #aa67ff, #8040dc);
  box-shadow: 0 14px 24px rgba(71, 32, 137, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 16px 26px rgba(71, 32, 137, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: #4a3d70;
  color: #e6ddfa;
}

.btn-secondary:hover {
  background: rgba(169, 102, 255, 0.12);
}

.btn-soft {
  background: rgba(169, 102, 255, 0.2);
  color: #e7d7ff;
}

.hero-face-card {
  border-color: rgba(73, 58, 112, 0.62);
  background: rgba(18, 14, 31, 0.82);
}

.hero-face-card:hover {
  box-shadow: 0 10px 18px rgba(9, 7, 18, 0.5);
}

.hero-face-img,
.avatar-photo,
.profile-portrait {
  border-color: rgba(73, 58, 112, 0.6);
  background: #241c3f;
}

.companion-card.image-first {
  background: linear-gradient(180deg, rgba(28, 22, 44, 0.98), rgba(20, 16, 34, 0.98));
}

.companion-media {
  background: #1e1733;
}

.companion-overlay-gradient {
  background: linear-gradient(180deg, rgba(8, 6, 14, 0.06) 30%, rgba(8, 6, 14, 0.88) 100%);
}

.rating-chip {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(8, 6, 14, 0.62);
  color: #f3efff;
}

.tag {
  background: #1e1833;
  border-color: #3d2f5f;
  color: #cfc5e6;
}

.tag.active {
  background: rgba(169, 102, 255, 0.24);
  border-color: rgba(169, 102, 255, 0.48);
  color: #f0e6ff;
}

.metric {
  background: rgba(255, 255, 255, 0.02);
}

.metric span {
  color: #b6accf;
}

.stars {
  color: #ffd27a;
}

.progress-track {
  background: rgba(243, 239, 255, 0.15);
}

.progress-value {
  background: linear-gradient(90deg, #aa67ff, #7d3ed8);
}

.chat-messages {
  background: linear-gradient(180deg, #171228, #120e20);
}

.bubble.user {
  background: rgba(169, 102, 255, 0.23);
  color: #f3efff;
}

.bubble.companion {
  background: rgba(255, 255, 255, 0.04);
  border-color: #42345f;
}

.thread.active {
  border-color: rgba(169, 102, 255, 0.52);
  background: rgba(169, 102, 255, 0.12);
}

.compare-bar {
  background: rgba(24, 19, 40, 0.96);
  border-color: rgba(169, 102, 255, 0.4);
}

.footer {
  background: linear-gradient(180deg, rgba(18, 14, 32, 0.8), rgba(11, 9, 19, 0.96));
  border-top-color: rgba(51, 42, 81, 0.75);
}

@media (max-width: 1100px) {
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .nav-service-pill {
    display: none;
  }

  .nav-links a {
    padding: 0.42rem 0.66rem;
  }
}
@media (max-width: 820px) {
  .hero-proof {
    grid-template-columns: 1fr;
  }
}

/* Homepage Flow Rearrangement */
.section-tight {
  padding-top: 1.4rem;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.1rem;
}

.step-list {
  display: grid;
  gap: 0.72rem;
}

.step-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 0.82rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.68rem;
  align-items: start;
}

.step-item h3 {
  margin: 0;
  font-size: 1rem;
}

.step-item p {
  margin: 0.32rem 0 0;
  color: var(--text-soft);
}

.step-index {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.84rem;
  font-weight: 700;
  color: #efe6ff;
  background: linear-gradient(145deg, #a665ff, #7e3fd9);
}

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

@media (max-width: 520px) {
  .step-item {
    grid-template-columns: 1fr;
  }
}

.skip-link {
  position: absolute;
  left: 14px;
  top: -44px;
  z-index: 60;
  background: #ffffff;
  color: #1b1230;
  border-radius: 10px;
  padding: 0.45rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 10px;
}


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

/* Enterprise Expansion */
.badge-match {
  background: rgba(93, 199, 180, 0.18);
  color: #9ce5d8;
  border-color: rgba(93, 199, 180, 0.35);
}

.fit-reason-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.fit-reason {
  border: 1px solid rgba(169, 102, 255, 0.34);
  border-radius: 999px;
  padding: 0.18rem 0.58rem;
  font-size: 0.74rem;
  color: #d8cbf8;
  background: rgba(169, 102, 255, 0.14);
}

.match-lab {
  margin-bottom: 1rem;
}

.match-lab .match-cta {
  align-self: end;
}

.match-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.match-reco {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.62rem 0.72rem;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.18rem;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.match-reco strong {
  color: #d7c8fb;
}

.match-reco small {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.match-reco:hover {
  border-color: rgba(169, 102, 255, 0.45);
  background: rgba(169, 102, 255, 0.08);
  transform: translateY(-1px);
}

.quick-links > span {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem 0.72rem;
  background: var(--surface);
  gap: 0.16rem;
}

.quick-links > span strong {
  font-size: 1rem;
}

.quick-links > span small {
  color: var(--text-soft);
}

.playbook-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem 0.72rem;
  background: rgba(169, 102, 255, 0.08);
  color: var(--text);
}

.quick-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.quick-prompts .btn {
  padding: 0.36rem 0.64rem;
  min-height: 34px;
  font-size: 0.82rem;
}

@media (max-width: 1024px) {
  .match-insights {
    grid-template-columns: 1fr;
  }
}


.topic-grid .card {
  min-height: 170px;
}

.plan-card {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.plan-card .btn {
  margin-top: auto;
}



html,
body {
  font-family: 'Avenir Next', 'Segoe UI', 'Noto Sans', sans-serif;
}

.page-header h1,
.section-title h2,
.hero-copy h1,
h1,
h2,
h3,
h4 {
  font-family: 'Iowan Old Style', 'Georgia', serif;
}


.footer-heading {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  font-family: inherit;
}




