/* ==========================================================================
   The Awning Shop - Main Stylesheet
   Mobile-first responsive design
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-primary: #C41230;
  --color-primary-dark: #A00F28;
  --color-primary-light: #D93350;
  --color-black: #1A1A1A;
  --color-charcoal: #2D2D2D;
  --color-gray: #6B6B6B;
  --color-gray-light: #E5E5E5;
  --color-off-white: #F8F7F5;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes - Mobile First */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-overlay: 400;
}

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

* {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-charcoal);
  background-color: var(--color-white);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: var(--leading-tight);
  color: var(--color-black);
}

h1 {
  font-size: var(--text-3xl);
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
}

h4 {
  font-size: var(--text-lg);
}

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

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

.text-sm {
  font-size: var(--text-sm);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-gray {
  color: var(--color-gray);
}

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

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.section--lg {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.section--gray {
  background-color: var(--color-off-white);
}

.section--dark {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--red {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section--red h1,
.section--red h2,
.section--red h3,
.section--red h4 {
  color: var(--color-white);
}

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

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

.section-header p {
  font-size: var(--text-lg);
  color: var(--color-gray);
}

.section--dark .section-header p,
.section--red .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

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

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

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

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

.mobile-nav__logo-img {
  height: 36px;
  width: auto;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-4);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-black);
  line-height: 1;
}

.header__submark {
  font-size: var(--text-xs);
  color: var(--color-gray);
  margin-top: var(--space-1);
}

.header__nav {
  display: none;
}

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

.header__nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  transition: color var(--transition-fast);
}

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

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header__phone {
  display: none;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-charcoal);
}

.header__cta {
  display: none;
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__menu-icon {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--color-black);
  transition: background-color var(--transition-fast);
}

.header__menu-icon::before,
.header__menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  transition: transform var(--transition-base);
}

.header__menu-icon::before {
  top: -7px;
}

.header__menu-icon::after {
  bottom: -7px;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon {
  background-color: transparent;
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] .header__menu-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background-color: var(--color-white);
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: var(--z-modal);
  overflow-y: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: calc(var(--z-modal) - 1);
}

.mobile-nav__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-2xl);
  color: var(--color-gray);
}

.mobile-nav__list {
  padding: var(--space-4);
}

.mobile-nav__item {
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-nav__link {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-charcoal);
}

.mobile-nav__footer {
  padding: var(--space-4);
  border-top: 1px solid var(--color-gray-light);
  margin-top: auto;
}

.mobile-nav__phone {
  display: block;
  text-align: center;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.mobile-nav__cta {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding-top: var(--space-12);
  padding-bottom: var(--space-6);
}

.footer__grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer__brand {
  margin-bottom: var(--space-6);
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.footer__submark {
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-bottom: var(--space-4);
}

.footer__division {
  font-size: var(--text-sm);
  color: var(--color-gray);
  line-height: var(--leading-relaxed);
}

.footer__division a {
  color: var(--color-primary-light);
  transition: color var(--transition-fast);
}

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

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer__list li {
  margin-bottom: var(--space-2);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

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

.footer__contact p {
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-bottom: var(--space-2);
}

.footer__contact a {
  color: var(--color-gray);
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  font-size: var(--text-sm);
  color: var(--color-gray);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

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

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

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

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

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

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

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn--full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Hero Sections
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: var(--space-16) 0;
  background-color: var(--color-charcoal);
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero--tall {
  padding: var(--space-20) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero__title {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Page Hero (smaller, for inner pages) */
.page-hero {
  padding: var(--space-12) 0;
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.page-hero__title {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.page-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   Trust Bar
   -------------------------------------------------------------------------- */
.trust-bar {
  background-color: var(--color-black);
  padding: var(--space-4) 0;
}

.trust-bar__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

.trust-bar__item {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-bar__divider {
  display: none;
  color: var(--color-gray);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: var(--color-gray-light);
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--color-gray-light);
  color: var(--color-gray);
  font-size: var(--text-sm);
}

.card__body {
  padding: var(--space-6);
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.card__text {
  color: var(--color-gray);
  margin-bottom: var(--space-4);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.card__link:hover {
  gap: var(--space-3);
}

.card__link svg {
  width: 16px;
  height: 16px;
}

/* Feature Card (with left border accent) */
.feature-card {
  padding: var(--space-6);
  background-color: var(--color-off-white);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.feature-card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--color-gray);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial {
  padding: var(--space-6);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonial__quote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-charcoal);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.testimonial__quote::before {
  content: '"';
}

.testimonial__quote::after {
  content: '"';
}

.testimonial__author {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray);
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  text-align: center;
}

.cta-section__title {
  margin-bottom: var(--space-3);
}

.cta-section__text {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  opacity: 0.9;
}

.cta-section__contact {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  opacity: 0.85;
}

.cta-section__contact a {
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form__group {
  margin-bottom: var(--space-4);
}

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.form__label--required::after {
  content: ' *';
  color: var(--color-primary);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.1);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
}

.form__note {
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-top: var(--space-4);
}

.hidden {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: var(--color-gray-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  color: var(--color-white);
  font-size: var(--text-sm);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

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

/* Gallery Filters */
.gallery-filters {
  margin-bottom: var(--space-8);
}

.filter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4);
  background-color: var(--color-off-white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
}

.filter-panel {
  display: none;
  padding: var(--space-4);
  background-color: var(--color-off-white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: -4px;
}

.filter-panel.is-open {
  display: block;
}

.filter-group {
  margin-bottom: var(--space-4);
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: var(--space-2);
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.filter-tag {
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.active-filter {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-sm);
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.active-filter__remove {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  font-size: var(--text-lg);
  line-height: 1;
}

.gallery-count {
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-bottom: var(--space-4);
}

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

.clear-filters {
  margin-top: var(--space-4);
}

.active-filters:empty {
  display: none;
}

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

.lightbox.is-open {
  display: flex;
}

.lightbox__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: calc(100vh - 150px); /* Account for caption bar and padding */
  padding: var(--space-4);
}

.lightbox__image {
  max-width: 100%;
  max-height: calc(100vh - 200px); /* Ensure image fits with room for caption */
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  top: var(--space-4);
  right: var(--space-4);
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: var(--text-2xl);
  cursor: pointer;
  z-index: 1001;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--color-white);
  border: none;
  border-radius: 50%;
  font-size: var(--text-xl);
  cursor: pointer;
  z-index: 1001;
}

.lightbox__prev {
  left: var(--space-4);
}

.lightbox__next {
  right: var(--space-4);
}

.lightbox__details {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  background: rgba(0, 0, 0, 0.85);
  color: var(--color-white);
  text-align: center;
  z-index: 1001;
}

.lightbox__caption {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}

/* --------------------------------------------------------------------------
   Service Area Lists
   -------------------------------------------------------------------------- */
.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-base);
  color: var(--color-gray);
}

.city-list span {
  white-space: nowrap;
}

.city-list span:not(:last-child)::after {
  content: ' • ';
  color: var(--color-gray-light);
}

.area-grid {
  display: grid;
  gap: var(--space-4);
}

.area-card {
  padding: var(--space-6);
  background-color: var(--color-off-white);
  border-radius: var(--radius-lg);
}

.area-card__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.area-card__text {
  font-size: var(--text-sm);
  color: var(--color-gray);
  margin-bottom: var(--space-3);
}

.area-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   Content Sections
   -------------------------------------------------------------------------- */
.content-section {
  margin-bottom: var(--space-12);
}

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

.content-section__header {
  margin-bottom: var(--space-6);
}

.content-section__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.content-section__subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray);
}

.content-section__body {
  color: var(--color-charcoal);
}

.content-section__body p {
  margin-bottom: var(--space-4);
}

.content-section__body ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-5);
  list-style-type: disc;
}

.content-section__body li {
  margin-bottom: var(--space-2);
}

/* Prose (for long-form content) */
.prose {
  max-width: 65ch;
}

.prose h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.prose h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.prose p {
  margin-bottom: var(--space-4);
}

.prose ul, .prose ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

.prose li {
  margin-bottom: var(--space-2);
}

.prose strong {
  font-weight: 600;
  color: var(--color-black);
}

/* Two Column Layout */
.two-col {
  display: grid;
  gap: var(--space-8);
}

.two-col--reverse .two-col__sidebar {
  order: -1;
}

/* Contact Info Block */
.contact-info {
  padding: var(--space-6);
  background-color: var(--color-off-white);
  border-radius: var(--radius-lg);
}

.contact-info__item {
  margin-bottom: var(--space-6);
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__label {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray);
  margin-bottom: var(--space-2);
}

.contact-info__value {
  font-size: var(--text-lg);
  color: var(--color-charcoal);
}

.contact-info__value a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

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

/* Map */
.map-container {
  aspect-ratio: 16 / 9;
  background-color: var(--color-gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-8 { margin-top: var(--space-8); }

.pt-0 { padding-top: 0; }

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Tablet (640px) */
@media (min-width: 640px) {
  h1 {
    font-size: var(--text-4xl);
  }

  h2 {
    font-size: var(--text-3xl);
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .page-hero__title {
    font-size: var(--text-4xl);
  }

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

  .trust-bar__list {
    flex-direction: row;
    justify-content: center;
  }

  .trust-bar__divider {
    display: block;
  }

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

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

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

/* Tablet Landscape (768px) */
@media (min-width: 768px) {
  .section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .section--lg {
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
  }

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

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

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

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

/* Desktop (1024px) */
@media (min-width: 1024px) {
  h1 {
    font-size: var(--text-5xl);
  }

  h2 {
    font-size: var(--text-4xl);
  }

  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .hero {
    padding: var(--space-24) 0;
  }

  .hero--tall {
    padding: var(--space-32) 0;
    min-height: 70vh;
  }

  .hero__title {
    font-size: var(--text-5xl);
  }

  .hero__subtitle {
    font-size: var(--text-xl);
  }

  .page-hero {
    padding: var(--space-16) 0;
  }

  .page-hero__title {
    font-size: var(--text-5xl);
  }

  /* Header Desktop */
  .header__menu-toggle {
    display: none;
  }

  .header__nav {
    display: block;
  }

  .header__phone {
    display: block;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__logo-img {
    height: 48px;
  }

  /* Grid Desktop */
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  /* Gallery Desktop Filters */
  .gallery-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-8);
  }

  .filter-toggle {
    display: none;
  }

  .filter-panel {
    display: block;
    position: sticky;
    top: calc(80px + var(--space-4));
    background-color: transparent;
    padding: 0;
  }

  .filter-group {
    padding: var(--space-4);
    background-color: var(--color-off-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-4);
  }
}

/* Large Desktop (1280px) */
@media (min-width: 1280px) {
  h1 {
    font-size: var(--text-6xl);
  }

  .hero__title {
    font-size: var(--text-6xl);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .header,
  .footer,
  .mobile-nav,
  .btn,
  .cta-section {
    display: none;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}

/* --------------------------------------------------------------------------
   Color Options Section
   -------------------------------------------------------------------------- */
.color-options {
  background-color: var(--color-off-white);
  padding: var(--space-12) 0;
  text-align: center;
}

.color-options h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-charcoal);
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .color-options h2 {
    font-size: var(--text-3xl);
  }
}

.color-options p {
  font-size: var(--text-base);
  color: var(--color-gray);
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.color-options__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

@media (min-width: 640px) {
  .color-options__links {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-4);
  }
}

.color-options__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  color: var(--color-charcoal);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-base);
}

.color-options__link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.color-options__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
