/* ═══════════════════════════════════════════════════════════
   BrightSide Painters — Stylesheet
   Brand: brand-guidelines.html (single source of truth)
   Font: DM Sans 400/700 via Google Fonts
   ═══════════════════════════════════════════════════════════ */

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

/* ─── Custom Properties ─── */
:root {
  /* Brand palette */
  --orange: #F07B18;
  --orange-dark: #D06A12;
  --gold: #F5B731;
  --black: #000000;
  --white: #FFFFFF;
  --dark-grey: #1a1a1a;
  --light-grey: #d4d4d4;

  /* Dark surfaces */
  --dark-bg: #0a0a0a;
  --dark-card: #1a1a1a;

  /* Light surfaces */
  --light-bg: #FFFFFF;
  --light-card: #f7f7f7;
  --light-border: #e5e5e5;

  /* Text on dark */
  --text-on-dark: #FFFFFF;
  --text-on-dark-secondary: #d4d4d4;

  /* Text on light */
  --text-on-light: #1a1a1a;
  --text-on-light-secondary: #555555;

  /* Accent overlays */
  --orange-10: rgba(240, 123, 24, 0.1);
  --orange-15: rgba(240, 123, 24, 0.15);
  --orange-30: rgba(240, 123, 24, 0.3);
  --dark-overlay: rgba(10, 10, 10, 0.7);

  /* Spacing scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 56px;
  --space-3xl: 80px;

  /* Layout */
  --max-width: 1200px;
  --content-width: 900px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.15s var(--ease-out);
  --transition-mid: 0.25s var(--ease-out);
}

/* ─── Base ─── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-on-light);
  background: var(--light-bg);
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--orange-dark);
}

ul, ol {
  list-style: none;
}

/* ─── Accessibility ─── */
.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;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--orange);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  z-index: 1000;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-sm);
  color: var(--white);
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  color: inherit;
}

h1 {
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.005em;
}

h3 {
  font-size: clamp(20px, 2.5vw, 24px);
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: var(--space-md);
}

p:last-child {
  margin-bottom: 0;
}

/* ─── Buttons ─── */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  transition: background var(--transition-fast);
}

.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn-secondary {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-secondary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Button on dark backgrounds */
.dark .btn-secondary,
.section-dark .btn-secondary {
  color: var(--white);
  border-color: var(--white);
}

.dark .btn-secondary:hover,
.section-dark .btn-secondary:hover {
  background: var(--white);
  color: var(--dark-bg);
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ─── Sections ─── */
.section-light {
  background: var(--light-bg);
  color: var(--text-on-light);
  padding: var(--space-3xl) 0;
}

.section-light-alt {
  background: var(--light-card);
  color: var(--text-on-light);
  padding: var(--space-3xl) 0;
}

.section-dark {
  background: var(--dark-bg);
  color: var(--text-on-dark);
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.section-light .section-subtitle,
.section-light-alt .section-subtitle {
  color: var(--text-on-light-secondary);
}

.section-dark .section-subtitle {
  color: var(--text-on-dark-secondary);
}

/* ─── Site Header (Sticky) ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.site-header__logo img {
  height: 56px;
  width: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.site-header__nav a {
  color: var(--text-on-dark-secondary);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.site-header__nav a:hover,
.site-header__nav a.active {
  color: var(--white);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-header__phone {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-header__phone:hover {
  color: var(--orange);
}

/* Mobile menu toggle */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-mid), opacity var(--transition-fast);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  background: var(--dark-bg);
  color: var(--text-on-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 520px;
}

.hero--home {
  min-height: 600px;
}

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

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--space-3xl) 0;
}

.hero__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-md);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-on-dark-secondary);
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Small hero for inner pages */
.hero--inner {
  min-height: 300px;
}

.hero--inner h1 {
  font-size: clamp(32px, 5vw, 48px);
}

/* ─── Cards ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.card {
  background: var(--light-card);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  border: 1px solid var(--light-border);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--orange);
  font-size: 24px;
}

.card h3 {
  margin-bottom: var(--space-sm);
  font-size: 18px;
}

.card p {
  color: var(--text-on-light-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ─── Why Choose Us (Checklist) ─── */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md) var(--space-xl);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 16px;
}

.checklist-item::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  background: var(--orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─── Image Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-mid);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* ─── Before/After (side-by-side for homepage) ─── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
}

/* ─── Before/After Slider (portfolio) ─── */
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: col-resize;
  user-select: none;
  width: 100%;
  padding-bottom: 133%; /* 3:4 aspect ratio fallback */
}

.ba-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider__after {
  clip-path: inset(0 0 0 50%);
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.ba-slider__handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M8 4l-6 8 6 8'/%3E%3Cpath d='M16 4l6 8-6 8'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─── Shared BA Labels ─── */
.ba-label {
  position: absolute;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 3;
}

.ba-card .ba-label {
  top: var(--space-md);
  left: var(--space-md);
}

.ba-slider .ba-label--before {
  bottom: var(--space-md);
  left: var(--space-md);
}

.ba-slider .ba-label--after {
  bottom: var(--space-md);
  right: var(--space-md);
}

.ba-label--after {
  background: var(--orange);
}

/* ─── Before/After Single Slider ─── */
.ba-slider-single {
  max-width: 860px;
  margin: 0 auto;
}

.ba-slider-single .ba-slider {
  padding-bottom: 66.25%; /* 16:9ish — wide enough for a room shot */
}


/* ─── Lightbox ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition-fast);
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

/* ─── Reviews ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.review-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.review-card__stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-on-light-secondary);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.review-card__author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-on-light);
}

/* ─── FAQ Accordion ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--light-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--space-lg) 0;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-on-light);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq-question:hover {
  color: var(--orange);
}

.faq-question:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--orange);
  border-radius: 1px;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-mid), padding var(--transition-mid);
}

.faq-answer__inner {
  padding: 0 0 var(--space-lg);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-on-light-secondary);
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: var(--dark-bg);
  color: var(--text-on-dark);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.cta-banner p {
  color: var(--text-on-dark-secondary);
  font-size: 18px;
  margin-bottom: var(--space-xl);
}

/* ─── Resene Partnership ─── */
.resene-section {
  padding: 70px 0;
}

.resene-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  font-size: 15px;
  color: var(--text-on-light-secondary);
  text-align: center;
}

.resene-bar img {
  height: 32px;
  width: auto;
}

/* ─── Contact Layout ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 16px;
}

.contact-detail a {
  color: var(--text-on-light);
}

.contact-detail a:hover {
  color: var(--orange);
}

.contact-hours {
  margin-top: var(--space-xl);
}

.contact-hours h4 {
  margin-bottom: var(--space-sm);
}

.contact-hours table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.contact-hours td {
  padding: 6px 0;
  border-bottom: 1px solid var(--light-border);
}

.contact-hours td:last-child {
  text-align: right;
  color: var(--text-on-light-secondary);
}

/* ─── GHL Embed Placeholders ─── */
.ghl-embed {
  min-height: 500px;
  border: 2px dashed var(--light-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  color: var(--text-on-light-secondary);
  font-size: 15px;
}

.ghl-embed p {
  max-width: 320px;
}

/* ─── Map Embed ─── */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-xl);
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* ─── Portfolio Filters ─── */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.portfolio-filter {
  background: none;
  border: 2px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 8px 20px;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-on-light-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.portfolio-filter:hover,
.portfolio-filter.active {
  border-color: var(--orange);
  color: var(--orange);
}

/* ─── Thank You Page ─── */
.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.thank-you-content h1 {
  margin-bottom: var(--space-md);
}

.thank-you-content p {
  font-size: 18px;
  color: var(--text-on-light-secondary);
}

/* ─── Legal Pages ─── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.legal-content h2 {
  font-size: 24px;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  font-size: 18px;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-on-light-secondary);
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content li {
  margin-bottom: var(--space-xs);
}

.legal-notice {
  background: var(--orange-10);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  font-size: 14px;
  color: var(--text-on-light);
}

/* ─── Prose (long-form text) ─── */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-on-light-secondary);
  margin-bottom: var(--space-lg);
}

/* ─── Mission Statement ─── */
.mission-statement {
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.mission-statement p {
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.6;
  font-weight: 400;
  color: var(--text-on-light);
  margin: 0;
}

/* Checklist centred under mission */
.section-light-alt .checklist {
  max-width: 700px;
  margin: 0 auto;
}

/* ─── Legal Meta ─── */
.legal-meta {
  color: var(--text-on-light-secondary);
  font-size: 15px;
  margin-bottom: var(--space-xl);
}

/* ─── Contact Detail Link ─── */
.contact-detail__link {
  color: var(--text-on-light);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-detail__link:hover {
  color: var(--orange);
}

/* ─── GHL Embed Variants ─── */
.ghl-embed--calendar {
  min-height: 600px;
}

.ghl-embed__placeholder {
  color: var(--text-on-light-secondary);
  font-size: 15px;
}

/* ─── CTA Banner Actions ─── */
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ─── Hours Table (Contact) ─── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-border);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-on-light-secondary);
}

/* ─── Contact Form Column ─── */
.contact-form-col {
  min-height: 400px;
}

/* ─── Thank You extras ─── */
.thank-you-content ol {
  text-align: left;
  max-width: 400px;
  margin: var(--space-lg) auto;
  padding-left: var(--space-lg);
  list-style: decimal;
}

.thank-you-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-on-light-secondary);
  margin-bottom: var(--space-sm);
}

.thank-you-content .hero__actions {
  justify-content: center;
  margin-top: var(--space-xl);
}

/* ─── Site Footer ─── */
.site-footer {
  background: var(--dark-bg);
  color: var(--text-on-dark);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand img {
  height: 72px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--text-on-dark-secondary);
  font-size: 15px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  color: var(--text-on-dark-secondary);
  font-size: 15px;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

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

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.5;
}

.footer-social .icon-fb {
  fill: var(--white);
  stroke: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 13px;
  line-height: 1;
  color: var(--text-on-dark-secondary);
}

.footer-bottom p {
  margin: 0;
  line-height: 1;
}

.footer-bottom a {
  color: var(--text-on-dark-secondary);
}

.footer-bottom a:hover {
  color: var(--orange);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* ─── Responsive: Tablet (768px) ─── */
@media (max-width: 768px) {
  /* Header */
  .site-header__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header__nav.open {
    display: flex;
  }

  .site-header__nav a {
    font-size: 17px;
    padding: var(--space-sm) 0;
  }

  .hamburger {
    display: flex;
  }

  .site-header__cta .btn-primary {
    display: none;
  }

  /* Cards */
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-slider-single .ba-slider {
    padding-bottom: 75%; /* slightly taller on mobile */
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Checklist */
  .checklist {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ─── Responsive: Mobile (480px) ─── */
@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 var(--space-md);
  }

  .hero--home {
    min-height: 480px;
  }

  .hero--inner {
    min-height: 220px;
  }

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

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

  .hero__actions {
    flex-direction: column;
  }

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

  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .section-light,
  .section-light-alt,
  .section-dark {
    padding: var(--space-2xl) 0;
  }
}

/* Prevent image dragging globally */
img {
  -webkit-user-drag: none;
  user-select: none;
}
