/* =========================================================================
   Big Pine Decks — static site styles
   Hand-authored CSS (no Tailwind). Palette mirrors the original design tokens.
   ========================================================================= */

:root {
  /* Brand palette */
  --background: hsl(40 20% 98%);
  --foreground: hsl(0 0% 7%);
  --border: hsl(40 10% 85%);

  --card: hsl(0 0% 100%);
  --card-foreground: hsl(0 0% 7%);

  /* Golden Amber #D4AF37 */
  --primary: hsl(46 65% 52%);
  --primary-hover: hsl(46 65% 47%);
  --primary-foreground: hsl(0 0% 10%);

  /* Pine Green #1A362D */
  --secondary: hsl(160 35% 16%);
  --secondary-foreground: hsl(0 0% 100%);

  --muted: hsl(40 20% 95%);
  --muted-foreground: hsl(40 10% 40%);

  --accent: hsl(46 40% 90%);
  --accent-foreground: hsl(46 65% 30%);

  /* Red #CC1818 */
  --destructive: hsl(0 79% 45%);

  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  --container: 1200px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 45px rgba(0, 0, 0, 0.18);

  --font-sans: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--foreground);
}

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

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

ul {
  list-style: none;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

main {
  flex: 1 0 auto;
}

/* --------------------------------------------------------------- Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 6rem;
}

.section--sm {
  padding-block: 3rem;
}

.section--muted {
  background: hsl(40 20% 96%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--white {
  background: #fff;
}

.section--dark {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.eyebrow {
  display: block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-head {
  max-width: 42rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-head p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.lead {
  font-size: 1.25rem;
  color: var(--muted-foreground);
}

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.15rem 2.5rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Arrow text-link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--secondary);
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.link-arrow:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.link-arrow svg {
  transition: transform 0.2s ease;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.link-gold {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 0.25rem;
  transition: opacity 0.2s ease;
}

.link-gold:hover {
  opacity: 0.8;
}

/* ---------------------------------------------------------------- Topbar */
.topbar {
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.875rem;
  padding-block: 0.5rem;
  position: relative;
  z-index: 50;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__tag {
  font-weight: 400;
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  margin-left: auto;
  transition: color 0.2s ease;
}

.topbar__phone:hover {
  color: var(--primary);
}

/* ---------------------------------------------------------------- Header */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 40;
}

.site-header .container {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 4rem;
  width: auto;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--foreground);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-mobile a.is-active {
  color: var(--primary);
}

.nav-mobile .btn {
  margin-top: 0.75rem;
}

/* ------------------------------------------------------------------ Hero */
.hero {
  position: relative;
  min-height: 600px;
  height: 85vh;
  display: flex;
  align-items: center;
  background: var(--secondary);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 2.5rem;
}

.hero__inner {
  max-width: 48rem;
}

.hero__badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #fff;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero__sub {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ----------------------------------------------------------- Trust strip */
.trust {
  position: relative;
  z-index: 30;
  margin: -2.5rem auto 0;
  max-width: 72rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 3rem 2rem;
}

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

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust__icon {
  flex-shrink: 0;
  background: hsl(46 40% 90% / 0.6);
  color: var(--primary);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.75rem;
  display: grid;
  place-items: center;
}

.trust__item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.trust__item p {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

/* ----------------------------------------------------------- About teaser */
.split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.split__media,
.split__body {
  flex: 1 1 0;
  min-width: 0;
}

.split__media {
  position: relative;
}

.split--reverse {
  flex-direction: row-reverse;
}

.media-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.media-frame:hover img {
  transform: scale(1.05);
}

.media-frame__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.badge-float {
  position: absolute;
  top: -2rem;
  left: -2rem;
  z-index: 5;
  background: #fff;
  padding: 0.5rem;
  border-radius: 999px;
  box-shadow: var(--shadow-xl);
}

.badge-float img {
  width: 9rem;
  height: auto;
}

.split__body h2,
.split__body h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.split__body p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

.card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.card:hover .card__body h3 {
  color: var(--primary);
}

.card__body p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  flex: 1;
}

.card__cta {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.center {
  text-align: center;
}

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

/* Simple text service grid (services hub) */
.cards--text .card__body {
  padding: 2rem;
}

.cards--text .card__cta {
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

/* ---------------------------------------------------------------- Partners */
.partners__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 2rem;
}

.partners__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.6;
  filter: grayscale(1);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.partners__row:hover {
  opacity: 1;
  filter: grayscale(0);
}

.partners__row img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .partners__row {
    gap: 2rem;
  }
  .partners__row img {
    height: 34px;
  }
}

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

.testimonial {
  position: relative;
  background: hsl(40 20% 95% / 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  background: #fff;
  box-shadow: var(--shadow-xl);
}

.testimonial__quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: hsl(46 65% 52% / 0.2);
}

.stars {
  display: flex;
  gap: 0.15rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.testimonial__text {
  font-style: italic;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: hsl(46 65% 52% / 0.2);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.testimonial__author h4 {
  font-size: 1rem;
}

/* ----------------------------------------------------------- Area teaser */
.area-teaser {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.area-teaser h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: #fff;
}

.area-teaser p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* ---------------------------------------------------------------- CTA band */
.cta-band {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.03);
}

.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}

.cta-band p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

/* ------------------------------------------------------------- Page hero */
.page-hero {
  background: var(--secondary);
  color: #fff;
  padding-block: 5rem;
}

.page-hero .container {
  text-align: center;
}

.page-hero--left .container {
  text-align: left;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  color: #fff;
  margin-bottom: 1.5rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
}

.page-hero .container:not(.page-hero--left *) p {
  margin-inline: auto;
}

.page-hero--left p {
  margin-inline: 0;
}

/* --------------------------------------------------------------- Prose */
.prose {
  max-width: 56rem;
  margin-inline: auto;
}

.prose > * + * {
  margin-top: 1.25rem;
}

.prose p {
  font-size: 1.125rem;
  color: hsl(0 0% 25%);
  line-height: 1.8;
}

.prose h2 {
  font-size: 1.875rem;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.prose h1 {
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.prose ul li {
  font-size: 1.125rem;
  color: hsl(0 0% 25%);
  line-height: 1.7;
}

.prose strong {
  color: var(--foreground);
}

.prose .btn {
  color: var(--primary-foreground);
}

.prose-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ---------------------------------------------------------------- Team / About */
.page-hero__cta {
  margin-top: 2rem;
}
.team-intro {
  max-width: 56rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.team-intro h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}
.team-intro p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5.5rem);
}
.team-photo {
  aspect-ratio: 4 / 5;
}
.team-role {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.team-award {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  width: 7.5rem;
  height: 7.5rem;
  z-index: 5;
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem;
  box-shadow: var(--shadow-xl);
}
.team-award img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .team-photo {
    aspect-ratio: 4 / 3;
  }
  .team-award {
    width: 6rem;
    height: 6rem;
    right: 0.75rem;
    bottom: -1rem;
  }
}

/* ---------------------------------------------------------------- Contact */
.contact-grid {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-grid > * {
  flex: 1 1 0;
  min-width: 0;
}

.contact-info h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.125rem;
}

.contact-info__list a {
  color: var(--primary);
}

.contact-info__list a:hover {
  text-decoration: underline;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(46 65% 52% / 0.2);
}

.field textarea {
  height: 8rem;
  resize: vertical;
}

.form__success {
  display: none;
  background: hsl(46 40% 90% / 0.6);
  border: 1px solid var(--accent);
  color: var(--accent-foreground);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 500;
  text-align: center;
}

.form__success.show {
  display: block;
}

/* --------------------------------------------------------------- Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-btn {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--muted);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item__bg {
  transform: scale(1.05);
}

.gallery-item__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item__shade {
  opacity: 1;
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  color: #fff;
  transform: translateY(0.5rem);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item__caption {
  transform: translateY(0);
}

.gallery-item__caption span {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.gallery-item__caption h3 {
  font-size: 1.5rem;
  color: #fff;
}

.panel {
  margin-top: 5rem;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  padding: 3rem;
}

.panel h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.panel p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------------ FAQ */
.faq-list {
  max-width: 48rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.5rem 2rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__body {
  padding: 0 2rem 1.75rem;
  color: var(--muted-foreground);
}

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

.area-tile {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
}

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

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: box-shadow 0.3s ease;
}

.post-card:hover {
  box-shadow: var(--shadow-lg);
}

.post-card__cat {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.post-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  flex: 1;
}

.post-card p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.post-card__soon {
  margin-top: auto;
  font-weight: 600;
  color: var(--muted-foreground);
}

/* ---------------------------------------------- Blog: linked post cards */
.post-card--link {
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.post-card--link .post-card__img {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--muted, hsl(40 12% 94%));
}

.post-card--link .post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.post-card--link:hover .post-card__img img {
  transform: scale(1.05);
}

.post-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.75rem 1.75rem;
}

.post-card--link .post-card__cat {
  margin-bottom: 0.65rem;
}

.post-card--link h2 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  flex: 0 0 auto;
  transition: color 0.2s ease;
}

.post-card--link:hover h2 {
  color: var(--primary);
}

.post-card--link p {
  margin-bottom: 1.25rem;
  flex: 1;
}

.post-card__meta {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* ---------------------------------------------- Blog: single post page */
.post-hero .post-hero__meta {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.post-hero__meta a {
  color: var(--primary);
  font-weight: 600;
}

.post-hero__meta span {
  opacity: 0.5;
}

.post-layout {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
}

.post-body.prose {
  max-width: 48rem;
  margin-inline: 0;
  flex: 1;
  min-width: 0;
}

.post-figure {
  margin: 0 0 0.5rem;
}

.post-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.post-body .post-figure + * {
  margin-top: 2rem;
}

.post-cta {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius-2xl);
  text-align: center;
}

.post-cta h2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.post-cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 40rem;
  margin-inline: auto;
}

.post-cta .btn {
  margin-top: 1.5rem;
}

.post-cta .btn + .btn {
  margin-left: 0.5rem;
}

.post-aside {
  width: 19rem;
  flex-shrink: 0;
  position: sticky;
  top: 6.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-aside__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
}

.post-aside__card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.post-aside__card p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.post-aside__card .btn {
  display: block;
  text-align: center;
}

.post-aside__phone {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
}

.post-aside__card--muted {
  background: var(--muted, hsl(40 12% 96%));
}

.post-aside__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.post-aside__links a {
  color: var(--secondary);
  font-weight: 500;
}

.post-aside__links a:hover {
  color: var(--primary);
}

@media (max-width: 900px) {
  .post-layout {
    flex-direction: column;
    gap: 2.5rem;
  }
  .post-body.prose {
    max-width: none;
  }
  .post-aside {
    position: static;
    width: 100%;
  }
}

/* --------------------------------------------------------------- 404 */
.notfound {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.notfound__code {
  font-size: clamp(5rem, 18vw, 8rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.notfound h1 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.notfound p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 28rem;
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------- Footer */
.site-footer {
  flex-shrink: 0;
  background: #000;
  color: var(--secondary-foreground);
  border-top: 4px solid var(--primary);
  padding-top: 2.75rem;
  padding-bottom: 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  height: 6.5rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

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

.site-footer h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.site-footer p.footer-note {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom__links {
  display: flex;
  gap: 1rem;
}

.footer-bbb {
  height: 3rem;
  width: auto;
}

.footer-bottom__left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-powered {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-powered a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transition: opacity 0.2s ease;
}

.footer-powered a:hover {
  opacity: 0.75;
}

.footer-powered span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.footer-powered img {
  height: 1.4rem;
  width: auto;
}

/* ------------------------------------------------------- Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ------------------------------------------------------------ Responsive */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: 4rem;
  }
  .trust__grid,
  .cards,
  .testimonials,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .split,
  .split--reverse {
    flex-direction: column;
    gap: 2.5rem;
  }
  .contact-grid {
    flex-direction: column;
    gap: 2.5rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .badge-float {
    top: -1.5rem;
    left: -1rem;
  }
  .badge-float img {
    width: 6.5rem;
  }
  .trust {
    margin-top: -2rem;
  }
}

@media (max-width: 480px) {
  .topbar__tag {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

/* --------------------------------------------------- Gallery lightbox + lead wizard */
.gallery-item {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 14px;
  max-width: 860px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(0, 0, 0, 0.85);
}

.lightbox__view {
  display: flex;
  flex-direction: column;
}

.lightbox__view[hidden] {
  display: none;
}

.lightbox__img {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: #111;
  border-radius: 14px 14px 0 0;
  display: block;
}

.lightbox__cta {
  align-self: center;
  margin: 1.25rem auto 1.5rem;
}

/* Site-wide "Free Estimate" popup */
.estimate-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.estimate-modal[hidden] {
  display: none;
}

.estimate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 14, 0.72);
}

.estimate-modal__card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  border-top: 4px solid var(--primary);
  max-width: 540px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  padding: 3.25rem 2.75rem 2.75rem;
}

.estimate-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.estimate-modal__close:hover {
  background: rgba(0, 0, 0, 0.8);
}

body.estimate-open {
  overflow: hidden;
}

.wiz {
  padding: 3rem 2.5rem 2.5rem;
}

.wiz[hidden] {
  display: none;
}

.wiz__progress {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 1rem;
}

.wiz__progress[hidden] {
  display: none;
}

.wiz-card[hidden] {
  display: none;
}

.wiz__title {
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 1.25rem;
  color: #1c1c1c;
}

.wiz__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wiz__fields--row {
  flex-direction: row;
  flex-wrap: wrap;
}

.wiz__fields--row .wiz__label {
  flex: 1 1 180px;
}

.wiz__label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.wiz__label input {
  font: inherit;
  font-weight: 400;
  padding: 0.7rem 0.85rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.wiz__label input:focus {
  outline: 2px solid var(--primary);
  outline-offset: 0;
  border-color: var(--primary);
}

.wiz__options {
  display: grid;
  gap: 0.75rem;
}

.wiz-option {
  text-align: left;
  font: inherit;
  font-weight: 500;
  padding: 1rem 1.1rem;
  border: 1.5px solid #d8d8d8;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.05s;
}

.wiz-option:hover {
  border-color: var(--primary);
  background: #fffaf0;
}

.wiz-option.is-selected {
  border-color: var(--primary);
  background: #fff6e3;
}

.wiz-option:active {
  transform: translateY(1px);
}

.wiz__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: flex-end;
}

.wiz__back {
  margin-right: auto;
  background: none;
  border: none;
  color: #666;
  font: inherit;
  cursor: pointer;
  padding: 0.5rem 0;
}

.wiz__back:hover {
  color: #1c1c1c;
  text-decoration: underline;
}

.wiz-card--thanks {
  text-align: center;
  padding: 1rem 0;
}

.wiz-card--thanks .wiz__actions {
  justify-content: center;
}

.wiz__check {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.wiz__text {
  color: #555;
  margin: 0 0 0.5rem;
}

.wiz--inline {
  padding: 0;
}

.wiz-hint {
  margin: 0.75rem 0 0;
  color: #b3261e;
  font-size: 0.85rem;
  font-weight: 600;
}

.wiz-hint[hidden] {
  display: none;
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 600px) {
  .lightbox {
    padding: 0.75rem;
  }
  .wiz {
    padding: 2.5rem 1.5rem 2rem;
  }
  .estimate-modal__card {
    padding: 3rem 1.5rem 2rem;
  }
  .wiz__title {
    font-size: 1.25rem;
  }
  .lightbox__cta {
    width: calc(100% - 2.2rem);
  }
}

/* ===== Site-wide chat widget ===== */
.chat-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 8px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  border: 1px solid var(--accent);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.chat-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}
.chat-launcher.is-hidden {
  display: none;
}
.chat-launcher__avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--accent);
  border: 2px solid var(--primary);
}
.chat-launcher__avatar video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chat-launcher__pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  animation: chatPulse 2.4s infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes chatPulse {
  0% {
    box-shadow: 0 0 0 0 hsla(46, 65%, 52%, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px hsla(46, 65%, 52%, 0);
  }
  100% {
    box-shadow: 0 0 0 0 hsla(46, 65%, 52%, 0);
  }
}
.chat-launcher__label {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  color: var(--primary-foreground);
  font-size: 1rem;
  white-space: nowrap;
}

.chat-window {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  width: 370px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  animation: chatIn 0.22s ease;
}
.chat-window[hidden] {
  display: none;
}
@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.chat-window__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--primary);
  color: var(--primary-foreground);
}
.chat-window__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.chat-window__avatar video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chat-window__id {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex: 1 1 auto;
}
.chat-window__id strong {
  font-family: "Lora", Georgia, serif;
  font-size: 1.02rem;
}
.chat-window__id em {
  font-style: normal;
  font-size: 0.76rem;
  opacity: 0.85;
}
.chat-window__close {
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.85;
}
.chat-window__close:hover {
  opacity: 1;
}
.chat-window__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
  background: #f6f6f4;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  display: flex;
}
.chat-msg--bot {
  justify-content: flex-start;
}
.chat-msg--user {
  justify-content: flex-end;
}
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  word-wrap: break-word;
}
.chat-msg--bot .chat-bubble {
  background: #fff;
  color: #222;
  border-bottom-left-radius: 4px;
}
.chat-msg--user .chat-bubble {
  background: var(--primary);
  color: var(--primary-foreground);
  border-bottom-right-radius: 4px;
}
.chat-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bbb;
  display: inline-block;
  animation: chatDot 1.2s infinite;
}
.chat-typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.chat-typing span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes chatDot {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
.chat-window__input {
  padding: 10px 12px;
  border-top: 1px solid #eee;
  background: #fff;
}
.chat-form {
  display: flex;
  gap: 8px;
}
.chat-text {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
}
.chat-text:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--accent);
}
.chat-send {
  flex: 0 0 auto;
  width: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1.1rem;
  cursor: pointer;
}
.chat-send:hover {
  background: var(--primary-hover);
}
.chat-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chat-choice {
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.chat-choice:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}
@media (max-width: 480px) {
  .chat-window {
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    max-height: none;
    border-radius: 14px;
  }
  .chat-launcher {
    right: 12px;
    bottom: 12px;
  }
  .chat-launcher__label {
    font-size: 0.92rem;
  }
}
