/* ============================================================
   LIQUORI'S LIGHTING & DESIGN — MAIN STYLESHEET
   Color Theme: Brand Maroon #821414 (from truck wrap) + Midnight Dark + Gold Accent
   Fonts: Cormorant Garamond / Raleway / Nunito Sans
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Raleway:wght@300;400;500;600;700&family=Nunito+Sans:wght@300;400;600&family=Barlow:wght@700;800;900&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  /* Brand Colors — Light theme with crimson red accent */
  --bg-primary:      #FFFFFF;
  --bg-secondary:    #F5F4F0;
  --bg-card:         #FFFFFF;
  --text-primary:    #141420;
  --text-body:       #374151;
  --brand-red:       #821414;
  --brand-red-light: #9E1818;
  --brand-red-dark:  #641010;
  --brand-red-glow:  rgba(130, 20, 20, 0.35);
  --gold:            #D4A843;
  --gold-light:      #E8C060;
  --gold-glow:       rgba(212, 168, 67, 0.4);
  --warm-white:      #F5F0E8;
  --ice-blue:        #0EA5E9;
  --text-muted:      #6B7280;
  --border-subtle:   rgba(0, 0, 0, 0.09);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Raleway', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
  --font-casual:  'Barlow', sans-serif;

  /* Spacing */
  --section-py:     clamp(5rem, 10vw, 8rem);
  --container-max:  1280px;
  --container-px:   clamp(1.25rem, 5vw, 3rem);

  /* Transitions */
  --t-fast: 200ms ease;
  --t-med:  300ms ease;
  --t-slow: 600ms ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   UTILITY
============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-weight: 400;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), var(--gold));
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--t-med);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: var(--warm-white);
  box-shadow: 0 4px 20px var(--brand-red-glow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--brand-red-light), var(--brand-red));
  box-shadow: 0 0 28px var(--brand-red-glow), 0 0 60px rgba(130, 20, 20, 0.2);
  transform: translateY(-2px);
  outline: none;
}

.btn-ghost {
  background: transparent;
  color: var(--warm-white);
  border: 1.5px solid rgba(245, 240, 232, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--brand-red);
  box-shadow: 0 0 20px var(--brand-red-glow);
  transform: translateY(-2px);
  outline: none;
}

.btn-nav-cta {
  background: var(--brand-red);
  color: var(--warm-white);
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all var(--t-med);
  box-shadow: 0 2px 12px var(--brand-red-glow);
  flex-shrink: 0;
}

.btn-nav-cta:hover,
.btn-nav-cta:focus-visible {
  background: var(--brand-red-light);
  box-shadow: 0 0 22px var(--brand-red-glow), 0 0 45px rgba(130, 20, 20, 0.2);
  transform: translateY(-1px);
  outline: none;
}

.btn-full {
  width: 100%;
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--t-fast);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.btn-text-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  gap: 0.6rem;
}

.btn-text-link--blue {
  color: var(--ice-blue);
}

.btn-text-link--blue:hover {
  color: #ADE8FF;
  border-bottom-color: var(--ice-blue);
}

/* ============================================================
   SCROLL FADE-IN ANIMATION
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(130, 20, 20, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: padding var(--t-med), box-shadow var(--t-med);
}

#navbar.scrolled {
  padding: 1.4rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1024px) {
  #navbar,
  #navbar.scrolled {
    padding: 0.75rem 0;
  }
}

@media (max-width: 1023px) {
  #navbar,
  #navbar.scrolled {
    padding: 1.7rem 0;
  }
  .nav-container {
    position: relative;
    justify-content: space-between;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

#navbar.scrolled .nav-links a:hover {
  color: var(--text-primary);
}


.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  text-decoration: none;
}

/* PNG logo */
.logo-img {
  height: 90px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .logo-img {
    height: 96px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.05em;
  transition: color var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  will-change: transform, opacity;
  background: var(--warm-white);
  transition: transform var(--t-med), opacity var(--t-med);
  transform-origin: center;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay Nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 20, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
  will-change: opacity;
  transform: translateZ(0);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

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

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--warm-white);
  transition: color var(--t-fast);
}

.mobile-nav-link:hover {
  color: var(--brand-red);
}

.mobile-nav-cta {
  font-family: var(--font-heading) !important;
  font-size: 1rem !important;
  margin-top: 1rem;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero img.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.35) saturate(0.8);
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 58%, rgba(130, 20, 20, 0.25) 0%, rgba(212, 168, 67, 0.05) 45%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}

/* Hero split layout — text left, form right */
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 7rem var(--container-px) 4rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  text-align: left;
  padding-top: 3rem;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
}

.hero-rating-google {
  display: block;
  flex-shrink: 0;
}

.hero-rating-stars {
  color: #FBBF24;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.hero-rating-text {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.9);
  letter-spacing: 0.03em;
}

/* Bold Barlow — matches reference screenshot headline style */
.hero-title {
  font-family: var(--font-casual);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-title-accent {
  display: block;
  color: var(--brand-red);
  text-shadow: 0 0 60px rgba(130, 20, 20, 0.5);
}

.hero-title-main {
  font-size: clamp(3.2rem, 8vw, 6rem);
  display: block;
  line-height: 1;
}

.hero-title-sub {
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  display: block;
  color: var(--brand-red);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(245, 240, 232, 0.68);
  max-width: 560px;
  margin: 0 0 2rem;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Hero quote form — right column */
.hero-form-col {
  position: relative;
  z-index: 3;
}

/* Jobber wrapper — glass header + iframe */
.hero-jobber-wrap {
  background: rgba(8, 11, 20, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--brand-red);
  border-radius: 8px;
  overflow: hidden;
}

.hero-jobber-header {
  padding: 1.5rem 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-jobber-logo {
  height: 100px;
  width: auto;
  display: block;
}

.hero-jobber-wrap .hero-form-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin: 0;
  background: transparent;
}

.hero-jobber-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #fff;
}

/* Particle dots — generated by JS */
.particle {
  position: absolute;
  border-radius: 50%;
  animation: twinkle var(--duration, 4s) var(--delay, 0s) infinite ease-in-out;
  filter: blur(var(--blur, 1px));
  opacity: 0;
  pointer-events: none;
}

@keyframes twinkle {
  0%, 100% { opacity: 0;   transform: scale(0.7); }
  50%       { opacity: var(--max-opacity, 0.7); transform: scale(1.15); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounceDown 2.2s infinite ease-in-out;
}

.scroll-chevron {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid rgba(245, 240, 232, 0.4);
  border-bottom: 2px solid rgba(245, 240, 232, 0.4);
  transform: rotate(45deg);
  margin: 0 auto;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   STATS STRIP
============================================================ */
.stats-strip {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(130, 20, 20, 0.3);
  border-bottom: 1px solid rgba(130, 20, 20, 0.3);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 3rem;
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-diamond {
  color: var(--brand-red);
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.6rem;
  color: var(--brand-red);
}

.stat-divider {
  width: 1px;
  height: 65px;
  background: linear-gradient(to bottom, transparent, rgba(130, 20, 20, 0.5), transparent);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12), 0 0 0 2px rgba(130, 20, 20, 0.2);
  border-color: rgba(130, 20, 20, 0.3);
}

.service-card--featured {
  border-color: rgba(130, 20, 20, 0.45);
  box-shadow: 0 8px 32px rgba(130, 20, 20, 0.15);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--brand-red);
  color: var(--warm-white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  box-shadow: 0 2px 12px var(--brand-red-glow);
}

.service-card-image {
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.88) saturate(0.85);
}

.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

.service-card-content {
  padding: 2rem;
}

.service-icon {
  color: var(--brand-red);
  margin-bottom: 1.25rem;
}

.service-icon--blue {
  color: var(--ice-blue);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
  line-height: 1.22;
}

.service-card-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.service-features li {
  font-family: var(--font-heading);
  font-size: 0.84rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features li::before {
  content: '✓';
  color: var(--brand-red);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-us {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  overflow: hidden;
}

.why-us-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .section-label,
.why-us .section-title,
.why-us .section-subtitle {
  color: white;
}

.why-us .section-label {
  opacity: 0.85;
}

.why-us .section-subtitle {
  opacity: 0.88;
}

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

.why-card {
  background: white;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 2.5rem;
  transition: all var(--t-med);
}

.why-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(-4px);
}

.why-icon {
  color: var(--brand-red);
  margin-bottom: 1.25rem;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.process {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 700;
  color: var(--brand-red);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.step-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.process-connector {
  width: 120px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--brand-red) 0,
    var(--brand-red) 8px,
    transparent 8px,
    transparent 16px
  );
  margin-top: 3.8rem;
  flex-shrink: 0;
  opacity: 0.45;
}

.process-cta {
  text-align: center;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.4s ease;
  filter: brightness(1) saturate(1);
}

.gallery-item {
  cursor: zoom-in;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(130, 20, 20, 0.35), rgba(212, 168, 67, 0.15));
  opacity: 0;
  transition: opacity var(--t-med);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.88) saturate(1.1);
}

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

.gallery-cta {
  text-align: center;
}

/* ============================================================
   TESTIMONIALS — CAROUSEL
============================================================ */
.testimonials {
  padding: var(--section-py) 0;
  background:
    linear-gradient(rgba(245, 244, 240, 0.72), rgba(245, 244, 240, 0.72)),
    url('../images/house-sunset.jpg') center / cover no-repeat;
}

/* Carousel shell */
.testimonials-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Clipping window */
.carousel-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 720px;
}

/* Sliding track */
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Each slide takes full viewport width */
.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 0.5rem;
}

/* Card */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2.75rem 3rem;
  text-align: center;
  width: 100%;
  max-width: 680px;
}

.testimonial-avatar {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--warm-white);
  box-shadow: 0 4px 16px var(--brand-red-glow);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
  text-shadow: 0 0 12px rgba(212, 168, 67, 0.55);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--brand-red);
  letter-spacing: 0.04em;
  font-style: normal;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* Prev / Next arrow buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
  z-index: 2;
  /* keep buttons outside the viewport width */
  margin-top: -24px; /* half dot row height */
}

.carousel-btn:hover {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  box-shadow: 0 4px 16px var(--brand-red-glow);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  border: none;
  background: var(--border-subtle);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--brand-red);
  width: 26px;
}

/* ============================================================
   SERVICE AREAS
============================================================ */
.service-areas {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}

/* Two-column layout: map | tiles */
.service-areas-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Map iframe container */
.service-areas-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  height: 520px;
  border: 1px solid var(--border-subtle);
}

.service-areas-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Areas column */
.areas-col {
  display: flex;
  flex-direction: column;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.area-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.1rem 1rem;
  text-align: center;
  transition: all var(--t-med);
}

.area-tile:hover {
  border-color: rgba(130, 20, 20, 0.35);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1), 0 0 0 2px rgba(130, 20, 20, 0.15);
  transform: translateY(-4px);
}

.area-icon {
  color: var(--brand-red);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.area-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.area-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.areas-note {
  text-align: center;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.areas-note a {
  color: var(--brand-red);
  border-bottom: 1px solid rgba(130, 20, 20, 0.4);
  transition: border-color var(--t-fast), color var(--t-fast);
}

.areas-note a:hover {
  color: var(--brand-red-light);
  border-bottom-color: var(--brand-red);
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  border-top: 3px solid var(--brand-red);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
  text-align: left;
}

.contact-title::after {
  margin: 1rem 0 0;
}

.contact-subtitle {
  font-size: 0.97rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

/* Jobber iframe */
.jobber-form-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.jobber-form-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* Form (legacy, kept for reference) */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #F9F9F9;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--t-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892A4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option {
  background: #FFFFFF;
  color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-red);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(130, 20, 20, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136, 146, 164, 0.55);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* Contact Info Column */
.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-trust-icon {
  color: var(--brand-red);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--text-muted);
}

.contact-detail-icon {
  font-size: 1.1rem;
}

.contact-social-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  transition: all var(--t-med);
}

.social-link:hover {
  color: var(--brand-red);
  border-color: var(--brand-red);
  background: rgba(130, 20, 20, 0.05);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  border-top: none;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  border-radius: 8px;
  background: white;
  padding: 8px 12px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.footer-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--t-med);
  text-decoration: none;
}

.footer-social-link:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.footer-links li,
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--t-fast);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-cta {
  padding: 0.65rem 1.5rem;
  font-size: 0.78rem;
  display: inline-flex;
  background: #ffffff !important;
  color: var(--brand-red) !important;
  box-shadow: none !important;
}

.footer-cta:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   RESPONSIVE — TABLET (1024px)
============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .testimonials-carousel {
    padding: 0 3rem;
  }

  .testimonial-card {
    padding: 2rem 1.75rem;
  }

  .carousel-btn {
    width: 38px;
    height: 38px;
  }

  .carousel-prev { left: -0.25rem; }
  .carousel-next { right: -0.25rem; }

  .service-areas-layout {
    grid-template-columns: 1fr;
  }

  .service-areas-map {
    height: 360px;
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-title {
    text-align: center;
  }

  .contact-title::after {
    margin: 1rem auto 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .stat-divider {
    display: none;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(130, 20, 20, 0.2);
  }

  .stat-item {
    background: var(--bg-secondary);
  }
}

/* ============================================================
   RESPONSIVE — HERO TABLET (1024px) — stack form below text
============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    gap: 2.5rem;
  }

  .hero-form-col {
    max-width: 500px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (768px)
============================================================ */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .nav-links,
  .btn-nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-bg {
    background-attachment: scroll;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
  }

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

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }

  .process-connector {
    width: 2px;
    height: 50px;
    background: repeating-linear-gradient(
      180deg,
      var(--brand-red) 0,
      var(--brand-red) 8px,
      transparent 8px,
      transparent 16px
    );
    margin-top: 0;
  }

  .process-step {
    padding: 0;
    width: 100%;
    max-width: 400px;
  }

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

  .service-areas-map {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (480px)
============================================================ */
@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    height: 220px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    background: transparent;
  }

  .stat-item {
    border-bottom: 1px solid rgba(130, 20, 20, 0.2);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .process-step {
    text-align: left;
  }

  .step-number {
    text-align: center;
  }

  .logo-text {
    display: none;
  }
}

/* ============================================================
   AI ASSISTANT — ALISSA
============================================================ */
.assistant-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* Intro bubble */
.assistant-intro-bubble {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 16px 16px 4px 16px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-body);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  max-width: 220px;
  text-align: right;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.assistant-intro-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Toggle button */
.assistant-toggle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--brand-red);
  background: #fff;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(139,28,28,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: assistantPulse 3s ease-in-out infinite;
}
.assistant-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(139,28,28,0.45);
}
.assistant-toggle svg,
.assistant-toggle .ava-photo {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  transform: scale(0.85);
}
@keyframes assistantPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(139,28,28,0.35); }
  50%       { box-shadow: 0 4px 28px rgba(139,28,28,0.6), 0 0 0 8px rgba(139,28,28,0.08); }
}

/* Notify dot */
.assistant-notify-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #22C55E;
  border-radius: 50%;
  border: 2px solid #fff;
  display: none;
}

/* Panel */
.assistant-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.18);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1);
}
.assistant-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Header */
.assistant-header {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.assistant-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.assistant-avatar-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.5);
  flex-shrink: 0;
  background: #FDDFC4;
}
.assistant-avatar-sm svg,
.assistant-avatar-sm .ava-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  transform: scale(0.85);
}
.assistant-name {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
.assistant-status {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}
.assistant-online-dot {
  width: 7px;
  height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  display: inline-block;
  animation: onlinePulse 2s ease-in-out infinite;
}
@keyframes onlinePulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.5; }
}
.assistant-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.assistant-close:hover { background: rgba(255,255,255,0.3); }

/* Messages area */
.assistant-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 300px;
  max-height: 360px;
  background: #F9F8F6;
}
.assistant-messages::-webkit-scrollbar { width: 4px; }
.assistant-messages::-webkit-scrollbar-thumb { background: var(--border-subtle); border-radius: 2px; }

/* Message rows */
.assistant-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.assistant-msg--user {
  flex-direction: row-reverse;
}
.assistant-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #FDDFC4;
}
.assistant-msg-avatar svg {
  width: 100%;
  height: 100%;
}

/* Bubbles */
.assistant-bubble {
  max-width: 78%;
  padding: 0.65rem 0.9rem;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.assistant-msg--assistant .assistant-bubble {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-bottom-left-radius: 4px;
  color: var(--text-body);
}
.assistant-msg--user .assistant-bubble {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.assistant-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 0.75rem 1rem;
}
.assistant-typing span {
  width: 7px;
  height: 7px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.assistant-typing span:nth-child(2) { animation-delay: 0.2s; }
.assistant-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-6px); opacity: 1; }
}

/* Input area */
.assistant-footer {
  padding: 0.85rem 1rem 0.65rem;
  border-top: 1px solid var(--border-subtle);
  background: #fff;
}
.assistant-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.assistant-input {
  flex: 1;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  color: var(--text-body);
  background: #F9F8F6;
  outline: none;
  transition: border-color 0.2s;
}
.assistant-input:focus {
  border-color: var(--brand-red);
}
.assistant-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-red);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.assistant-send:hover { background: var(--brand-red-light); transform: scale(1.05); }
.assistant-send:disabled { opacity: 0.5; cursor: default; transform: none; }
.assistant-powered {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0.4rem 0 0;
}

/* Mobile */
@media (max-width: 480px) {
  .assistant-widget { bottom: 16px; right: 16px; }
  .assistant-panel  { width: calc(100vw - 32px); right: 0; }
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  transition: opacity 0.2s ease;
}

.lightbox-counter {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
  z-index: 1;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }
