/* Zaidi Consulting Group — shared styles */
:root {
  --ink: #0e1a22;
  --ink-soft: #243640;
  --slate: #1c3340;
  --teal: #0f6b63;
  --teal-deep: #0a4f49;
  --teal-soft: #d8ebe8;
  --gold: #b8924a;
  --paper: #f5f3ef;
  --paper-warm: #ebe7df;
  --white: #ffffff;
  --muted: #5c6b73;
  --line: rgba(14, 26, 34, 0.12);
  --shadow: 0 18px 40px rgba(14, 26, 34, 0.12);
  --radius: 4px;
  --max: 1120px;
  --nav-h: 72px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

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

/* ——— Nav ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-scrolled .brand,
.site-header.solid .brand,
.site-header.is-scrolled .nav-link,
.site-header.solid .nav-link,
.site-header.is-scrolled .nav-toggle,
.site-header.solid .nav-toggle {
  color: var(--ink);
}

.nav-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--white);
  transition: color 0.3s ease;
  line-height: 1.15;
  white-space: nowrap;
}

.brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.is-active,
.site-header.solid .nav-link:hover,
.site-header.solid .nav-link.is-active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.btn-ink:hover {
  background: var(--slate);
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  animation: hero-slide 25s infinite;
}

.hero-media img:nth-child(1) {
  animation-delay: 0s;
}

.hero-media img:nth-child(2) {
  animation-delay: 5s;
}

.hero-media img:nth-child(3) {
  animation-delay: 10s;
}

.hero-media img:nth-child(4) {
  animation-delay: 15s;
}

.hero-media img:nth-child(5) {
  animation-delay: 20s;
}

.hero-media img.is-active {
  z-index: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(14, 26, 34, 0.45) 0%, rgba(14, 26, 34, 0.28) 35%, rgba(14, 26, 34, 0.78) 100%),
    linear-gradient(115deg, rgba(14, 26, 34, 0.55) 0%, transparent 55%);
}

@keyframes hero-slide {
  0% {
    opacity: 0;
  }
  3.2% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  23.2% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 0 4.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  white-space: nowrap;
  overflow: visible;
  max-width: none;
  width: max-content;
  opacity: 0;
  animation: rise 0.9s ease 0.15s forwards;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  max-width: 32ch;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  animation: rise 0.9s ease 0.35s forwards;
}

.hero-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42ch;
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 0.9s ease 0.5s forwards;
}

.hero .cta-group {
  opacity: 0;
  animation: rise 0.9s ease 0.65s forwards;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 26, 34, 0.5) 0%, rgba(14, 26, 34, 0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2.5rem) 0 2.75rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.65rem;
  opacity: 0;
  animation: rise 0.8s ease 0.1s forwards;
}

.page-hero p {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  opacity: 0;
  animation: rise 0.8s ease 0.25s forwards;
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(15, 107, 99, 0.08), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(184, 146, 74, 0.08), transparent 50%),
    linear-gradient(180deg, var(--paper-warm), var(--paper));
}

.section-ink {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(15, 107, 99, 0.22), transparent 55%),
    linear-gradient(160deg, var(--ink) 0%, var(--slate) 100%);
  color: var(--white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.section-ink .section-label {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 2.5rem;
}

.about-prose {
  display: grid;
  gap: 1.25rem;
  max-width: 68ch;
  margin-top: 0.5rem;
}

.about-prose p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* Clear gap between Our story and What we do */
#who-we-are {
  padding-bottom: 5.5rem;
}

#who-we-are + .section {
  padding-top: 5.5rem;
}

#who-we-are .about-prose {
  margin-bottom: 0;
}

.section-ink .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

/* Service preview list (home) — not cards, editorial rows */
.service-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-row.is-visible {
  opacity: 1;
  transform: none;
}

.service-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.service-row p {
  color: var(--muted);
  max-width: 52ch;
  font-size: 0.95rem;
}

.testimonial-carousel {
  position: relative;
  margin-top: 0.75rem;
  padding: 0 2.75rem 2.25rem;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
  padding: 1.25rem 0.15rem 0.35rem;
  border-top: 1px solid var(--line);
}

.testimonial-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 2.75rem;
  margin-bottom: 0.95rem;
}

.testimonial-logo img {
  max-height: 2.5rem;
  max-width: 9.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.testimonial .stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1rem;
  min-height: 6.5rem;
}

.testimonial-author {
  font-size: 0.88rem;
  color: var(--muted);
}

.testimonial-author strong {
  color: var(--ink-soft);
  font-weight: 600;
}

.carousel-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}

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

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(14, 26, 34, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dot.is-active {
  background: var(--teal);
  transform: scale(1.15);
}

.service-row .text-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
}

.service-row .text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Why us strip */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 0.5rem;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.why-item p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  max-width: 32ch;
}

/* Articles listing */
.articles-intro,
.article-groups {
  width: min(100%, 48rem);
}

.article-groups {
  display: grid;
  gap: 3.25rem;
  margin-top: 2.75rem;
}

.article-group h3 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.article-group-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(14, 26, 34, 0.12);
}

.article-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.article-list li + li {
  border-top: 1px solid rgba(14, 26, 34, 0.08);
}

.article-list a {
  display: grid;
  gap: 0.4rem;
  padding: 1.35rem 0;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-list a:hover .article-list-title {
  color: var(--teal);
}

.article-list-meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.article-list-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 1.65rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.2s ease;
}

.article-list-excerpt {
  color: var(--muted);
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Article detail */
.article-page .page-hero-content {
  width: min(100% - 2.5rem, 44rem);
}

.article-page .page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
}

.article-page .page-hero-content > p:not(.article-hero-meta) {
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.article-hero-meta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.article-layout {
  width: min(100%, 44rem);
  margin-inline: auto;
}

.article-lede {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.65rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.75rem;
}

.article-takeaways {
  margin: 0 0 2.75rem;
  padding: 1.35rem 1.4rem 1.45rem;
  background: rgba(15, 107, 99, 0.06);
  border-left: 3px solid var(--teal);
}

.article-takeaways h2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.article-takeaways ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.article-takeaways li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.article-takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--teal);
}

.article-section + .article-section {
  margin-top: 2.75rem;
}

.article-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(14, 26, 34, 0.12);
}

.article-section h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 1.5rem 0 0.65rem;
}

.article-section p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.article-section p:last-child {
  margin-bottom: 0;
}

.article-evidence {
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  background: var(--paper);
  border: 1px solid rgba(14, 26, 34, 0.08);
}

.section-alt .article-evidence,
.article-evidence {
  background: rgba(14, 26, 34, 0.03);
}

.article-evidence-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.55rem;
}

.article-evidence p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.65;
}

.article-evidence cite,
.article-evidence .evidence-source {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
  line-height: 1.45;
}

.article-steps {
  margin: 1.15rem 0 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.article-steps li {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  padding-left: 0.35rem;
}

.article-steps li strong {
  color: var(--ink);
  font-weight: 700;
}

.article-sources {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(14, 26, 34, 0.12);
}

.article-sources h2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
  border: 0;
  padding: 0;
}

.article-sources ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.article-sources li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.article-sources a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-footer {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14, 26, 34, 0.1);
}

.article-footer > p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.article-footer a {
  color: var(--teal);
  font-weight: 600;
}

/* CTA band */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  max-width: 16ch;
  line-height: 1.15;
}

.cta-band p {
  color: var(--muted);
  margin-top: 0.65rem;
  max-width: 36ch;
}

/* ——— Services page detail ——— */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.service-detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 107, 99, 0.18), transparent 60%);
}

.service-detail-copy .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.service-detail-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.service-detail-copy h2 a,
.service-row h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-detail-copy h2 a:hover,
.service-row h3 a:hover {
  color: var(--teal);
}

.service-detail-copy > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 48ch;
}

.feature-list {
  display: grid;
  gap: 0.65rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

/* ——— Dedicated service pages ——— */
.service-page-intro {
  max-width: 68ch;
}

.service-page-intro p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
}

.service-page-intro p:last-child {
  margin-bottom: 0;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
  margin-top: 2rem;
}

.service-page-block h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
}

.service-page-block p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 48ch;
}

.service-page-steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
  max-width: 72ch;
}

.service-page-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.service-page-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.service-page-step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-page-step .step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1.2;
}

.service-page-related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.service-detail-actions {
  margin-top: 1.25rem;
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 40ch;
}

.contact-details {
  display: grid;
  gap: 1.35rem;
}

.contact-details dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.contact-details dd {
  color: var(--ink-soft);
}

.contact-details a:hover {
  color: var(--teal);
}

.contact-form {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(245, 243, 239, 0.95)),
    var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 107, 99, 0.12);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success,
.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.form-success {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.form-error {
  background: #f8e6e6;
  color: #8a2f2f;
}

.form-success.is-visible,
.form-error.is-visible {
  display: block;
  animation: rise 0.45s ease;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand + p {
  max-width: 32ch;
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.footer-contact a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-contact-sep {
  margin: 0 0.45rem;
  opacity: 0.55;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.social-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ——— Animations ——— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    animation: none;
    opacity: 0;
  }

  .hero-media img:first-child,
  .hero-media img.is-active {
    opacity: 1;
  }
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .why-grid,
  .service-page-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .testimonial {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }

  .testimonial blockquote {
    min-height: 0;
  }

  .service-detail,
  .service-detail:nth-child(even),
  .contact-layout {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-row {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .service-row .text-link {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: rgba(245, 243, 239, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    color: var(--ink) !important;
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header:not(.is-scrolled):not(.solid) {
    background: rgba(14, 26, 34, 0.35);
    backdrop-filter: blur(8px);
  }

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

  .hero-content {
    padding-bottom: 3.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-contact {
    text-align: left;
  }

  .testimonial-carousel {
    padding: 0 2.4rem 2rem;
  }

  .testimonial {
    flex: 0 0 100%;
  }
}

/* AEP promo popup */
.aep-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.aep-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.aep-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 34, 0.62);
  backdrop-filter: blur(3px);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.aep-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 26.5rem);
  background:
    radial-gradient(circle at top right, rgba(184, 146, 74, 0.18), transparent 45%),
    linear-gradient(160deg, #10262f 0%, #0e1a22 55%, #12363a 100%);
  color: var(--white);
  padding: 2.25rem 1.85rem 1.85rem;
  box-shadow: 0 24px 60px rgba(14, 26, 34, 0.35);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.35s ease;
}

.aep-popup.is-open .aep-popup-dialog {
  transform: none;
}

.aep-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.aep-popup-close:hover {
  color: var(--white);
}

.aep-popup-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.aep-popup-dialog h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 auto 0.9rem;
  max-width: 14ch;
}

.aep-popup-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 auto 1.45rem;
  max-width: 28ch;
}

.aep-popup-form {
  display: grid;
  gap: 0.55rem;
  text-align: left;
  width: 100%;
}

.aep-popup-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.1rem;
}

.aep-popup-input {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  padding: 0.9rem 1rem;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aep-popup-input::placeholder {
  color: #7a8790;
}

.aep-popup-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 74, 0.28);
}

.aep-popup-input:disabled {
  opacity: 0.7;
}

.aep-popup-dialog .btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
}

.aep-popup-status {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.aep-popup-status.is-success {
  color: #b7e0d8;
}

.aep-popup-status.is-error {
  color: #f0c4c4;
}

body.aep-popup-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .aep-popup,
  .aep-popup-dialog {
    transition: none;
  }
}

/* Site chat widget */
.chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1400;
  font-family: var(--font-body);
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 0;
  cursor: pointer;
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 1.1rem;
  box-shadow: 0 10px 28px rgba(14, 26, 34, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.chat-launcher:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
}

.chat-launcher-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  flex-shrink: 0;
}

.chat-launcher-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.7rem);
  width: min(calc(100vw - 2rem), 24rem);
  height: min(72vh, 34rem);
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(14, 26, 34, 0.1);
  box-shadow: 0 20px 48px rgba(14, 26, 34, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  overflow: hidden;
}

.chat-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem 0.85rem;
  background: linear-gradient(160deg, #10262f 0%, #0e1a22 62%, #12363a 100%);
  color: var(--white);
  flex-shrink: 0;
}

.chat-header-copy {
  min-width: 0;
}

.chat-header-top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.28rem;
}

.chat-header h2 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

.chat-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #d9f3ef;
  background: rgba(15, 107, 99, 0.35);
  border: 1px solid rgba(217, 243, 239, 0.28);
  padding: 0.18rem 0.45rem;
  line-height: 1;
}

.chat-live-pill::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #7ddec9;
  box-shadow: 0 0 0 0 rgba(125, 222, 201, 0.55);
  animation: chat-live-pulse 1.8s ease-out infinite;
}

.chat-header p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.chat-close {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.05rem 0.15rem;
  margin-top: -0.1rem;
  flex-shrink: 0;
}

.chat-close:hover {
  color: var(--white);
}

.chat-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: #f7f8f7;
  scrollbar-width: thin;
  scrollbar-color: rgba(14, 26, 34, 0.22) transparent;
}

.chat-messages::-webkit-scrollbar {
  width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(14, 26, 34, 0.2);
  border-radius: 999px;
}

.chat-bubble {
  max-width: 86%;
  padding: 0.72rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 4px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.chat-bubble.is-bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid rgba(14, 26, 34, 0.08);
  color: var(--ink-soft);
  box-shadow: 0 1px 0 rgba(14, 26, 34, 0.03);
}

.chat-bubble.is-user {
  align-self: flex-end;
  background: var(--teal);
  color: var(--white);
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-top: 1px solid rgba(14, 26, 34, 0.06);
  background: #f7f8f7;
  flex-shrink: 0;
}

.chat-quick button {
  border: 1px solid rgba(14, 26, 34, 0.12);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.42rem 0.62rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.chat-quick button:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: rgba(15, 107, 99, 0.06);
}

.chat-composer {
  display: grid;
  gap: 0.5rem;
  padding: 0.8rem 1rem 0.9rem;
  border-top: 1px solid rgba(14, 26, 34, 0.08);
  background: var(--white);
  flex-shrink: 0;
}

.chat-composer label:not(.chat-sr-only) {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.chat-composer input,
.chat-composer textarea {
  width: 100%;
  border: 1px solid rgba(14, 26, 34, 0.14);
  background: #f7f8f7;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  padding: 0.68rem 0.75rem;
  outline: none;
  resize: none;
  border-radius: 2px;
}

.chat-composer input:focus,
.chat-composer textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15, 107, 99, 0.1);
}

.chat-composer-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: end;
}

.chat-composer .btn {
  white-space: nowrap;
  padding: 0.7rem 1rem;
  min-height: 2.75rem;
  align-self: end;
}

.chat-composer-main textarea {
  min-height: 2.75rem;
  max-height: 6.5rem;
  line-height: 1.4;
}

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

.chat-md-h {
  font-weight: 700;
  color: var(--ink);
  margin: 0.45rem 0 0.2rem;
  font-size: 0.92rem;
}

.chat-li {
  display: grid;
  grid-template-columns: 0.85rem 1fr;
  gap: 0.35rem;
  margin: 0.18rem 0;
  align-items: start;
}

.chat-li-mark {
  color: var(--teal);
  font-weight: 700;
  line-height: 1.5;
}

.chat-gap {
  height: 0.55rem;
}

.chat-bubble.is-bot strong {
  color: var(--ink);
  font-weight: 700;
}

.chat-bubble.is-typing {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  min-height: 1rem;
  padding-block: 0.85rem;
}

.chat-bubble.is-typing span {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.45;
  animation: chat-dot 1.1s ease-in-out infinite;
}

.chat-bubble.is-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-bubble.is-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes chat-dot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@keyframes chat-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(125, 222, 201, 0.45);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(125, 222, 201, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(125, 222, 201, 0);
  }
}

.chat-handoff {
  border-top: 1px solid rgba(14, 26, 34, 0.06);
  padding-top: 0.35rem;
}

.chat-handoff summary {
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  list-style: none;
  width: fit-content;
}

.chat-handoff summary::-webkit-details-marker {
  display: none;
}

.chat-handoff summary:hover {
  color: var(--teal);
}

.chat-handoff-fields {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.5rem;
}

.chat-handoff-fields .btn {
  min-height: 2.5rem;
  padding-inline: 0.85rem;
  font-size: 0.85rem;
}

.chat-status {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
}

.chat-status.is-error {
  color: #9b3b3b;
}

.chat-status.is-success {
  color: var(--teal-deep);
}

@media (max-width: 760px) {
  .chat-widget {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .chat-launcher-label {
    display: none;
  }

  .chat-launcher {
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    justify-content: center;
  }

  .chat-panel {
    position: fixed;
    right: 0.85rem;
    bottom: 4.4rem;
    width: calc(100vw - 1.7rem);
    height: min(74vh, 36rem);
  }

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

  .chat-handoff-fields .btn {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-launcher,
  .chat-panel,
  .chat-live-pill::before,
  .chat-bubble.is-typing span {
    transition: none;
    animation: none;
  }
}
