/* ===== LAUNDRY MACK'S — styles.css ===== */
/* Teal seed (H:190) + warm yellow accent (H:45) */
/* Fonts: Outfit (display) + Plus Jakarta Sans (body) */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Colors — HSL Seed: 190, 72%, 42% (clean teal) */
  --color-primary: hsl(190, 72%, 42%);
  --color-primary-light: hsl(190, 48%, 88%);
  --color-primary-dark: hsl(190, 77%, 28%);
  --color-accent: hsl(45, 85%, 52%);
  --color-accent-dark: hsl(45, 80%, 38%);
  --color-bg: hsl(38, 20%, 97%);
  --color-bg-alt: hsl(38, 15%, 94%);
  --color-surface: hsl(190, 10%, 99%);
  --color-text: hsl(190, 20%, 14%);
  --color-text-light: hsl(190, 12%, 44%);
  --color-text-inverse: hsl(190, 12%, 95%);
  --color-dark-bg: hsl(190, 42%, 13%);
  --color-border: hsl(190, 12%, 86%);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Type scale */
  --text-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.938rem, 0.88rem + 0.3vw, 1rem);
  --text-lg: clamp(1.05rem, 0.95rem + 0.5vw, 1.175rem);
  --text-xl: clamp(1.15rem, 1rem + 0.75vw, 1.35rem);
  --text-2xl: clamp(1.35rem, 1.1rem + 1.25vw, 1.75rem);
  --text-3xl: clamp(1.75rem, 1.4rem + 1.75vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.7rem + 2.75vw, 3.5rem);
  --text-hero: clamp(2.75rem, 2rem + 3.75vw, 4.5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Section padding tiers */
  --section-pad-lg: var(--space-3xl);
  --section-pad-md: var(--space-2xl);
  --section-pad-sm: var(--space-xl);

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --nav-height: 72px;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Motion */
  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-base: 0.3s var(--ease-out);
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: var(--space-md);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p {
  max-width: 65ch;
  line-height: 1.7;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

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

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

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

/* ===== LAYOUT UTILITIES ===== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.full-width-pad {
  padding-left: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
  padding-right: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
}

/* ===== TOPBAR ===== */
.topbar {
  display: none;
  background: var(--color-dark-bg);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  padding: var(--space-xs) 0;
}

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

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

.topbar-link {
  color: var(--color-text-inverse);
  opacity: 0.85;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.topbar-link:hover {
  opacity: 1;
}

.topbar-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

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

.topbar-hours {
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.topbar-hours svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar-social a {
  color: var(--color-text-inverse);
  opacity: 0.7;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
}

.topbar-social a:hover {
  opacity: 1;
}

.topbar-social svg {
  width: 16px;
  height: 16px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nav-brand-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-inverse);
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-light);
  text-decoration: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  transition: color var(--transition-base);
}

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

.nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Nav active states */
[data-page="home"] .nav-link[href="index.html"],
[data-page="services"] .nav-link[href="services.html"],
[data-page="gallery"] .nav-link[href="gallery.html"],
[data-page="contact"] .nav-link[href="contact.html"] {
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
}

.nav-phone {
  display: none;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-primary-dark);
  text-decoration: none;
  padding: 0.5rem var(--space-md);
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  transition: background var(--transition-base), color var(--transition-base);
}

.nav-phone:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.nav-phone:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.hamburger svg {
  width: 24px;
  height: 24px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease-out), visibility 300ms var(--ease-out);
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: var(--space-sm);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-menu-link,
.mobile-menu-link:visited {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-regular);
  color: var(--color-text);
  text-decoration: none;
  padding: 0.75rem var(--space-lg);
  min-height: 56px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(1rem);
}

.mobile-menu-link.is-active,
.mobile-menu-link.is-active:visited {
  color: var(--color-primary);
}

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

.mobile-menu-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.mobile-menu.active .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
  transition: color 200ms, opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.mobile-menu.active .mobile-menu-links li:nth-child(1) .mobile-menu-link { transition-delay: 0.08s; }
.mobile-menu.active .mobile-menu-links li:nth-child(2) .mobile-menu-link { transition-delay: 0.16s; }
.mobile-menu.active .mobile-menu-links li:nth-child(3) .mobile-menu-link { transition-delay: 0.24s; }
.mobile-menu.active .mobile-menu-links li:nth-child(4) .mobile-menu-link { transition-delay: 0.32s; }

.mobile-menu-phone {
  margin-top: var(--space-2xl);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
  text-decoration: none;
}

.mobile-menu-phone:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.floating-btn:active {
  transform: scale(0.98);
}

.floating-btn:focus-visible {
  outline: 2px solid var(--color-text-inverse);
  outline-offset: 2px;
}

.floating-btn--call {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.floating-btn--directions {
  background: var(--color-accent);
  color: var(--color-text);
}

.floating-btn svg {
  width: 22px;
  height: 22px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-dark-bg);
  color: var(--color-text-inverse);
  padding: var(--section-pad-sm) 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-md);
}

.footer-desc {
  color: hsla(190, 12%, 95%, 0.7);
  font-size: var(--text-sm);
  max-width: 40ch;
  line-height: 1.7;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-light);
  margin-bottom: var(--space-md);
}

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

.footer-link {
  color: hsla(190, 12%, 95%, 0.7);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-link:hover {
  color: var(--color-text-inverse);
}

.footer-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: hsla(190, 12%, 95%, 0.7);
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-hours-item span:first-child {
  color: var(--color-text-inverse);
  font-weight: var(--weight-medium);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: hsla(190, 12%, 95%, 0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.2em;
  color: var(--color-primary-light);
}

.footer-contact-item a {
  color: hsla(190, 12%, 95%, 0.7);
  transition: color var(--transition-base);
}

.footer-contact-item a:hover {
  color: var(--color-text-inverse);
}

.footer-contact-item a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-lg) var(--container-padding) 0;
  margin-top: var(--space-xl);
  border-top: 1px solid hsla(190, 12%, 95%, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer-copy {
  font-size: var(--text-xs);
  color: hsla(190, 12%, 95%, 0.5);
}

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

.footer-social a {
  color: hsla(190, 12%, 95%, 0.5);
  transition: color var(--transition-base);
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--color-text-inverse);
}

.footer-social a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* ===== HOME PAGE ===== */

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsla(190, 42%, 8%, 0.92) 0%,
    hsla(190, 42%, 8%, 0.65) 35%,
    hsla(190, 42%, 8%, 0.25) 65%,
    hsla(190, 42%, 8%, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-3xl) var(--container-padding) var(--section-pad-md);
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: var(--weight-extrabold);
  color: var(--color-text-inverse);
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.hero-tagline {
  font-size: var(--text-xl);
  color: hsla(190, 12%, 95%, 0.8);
  max-width: 45ch;
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.hero-place {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: hsla(190, 12%, 95%, 0.7);
  margin-bottom: var(--space-lg);
  transition: color var(--transition-base);
}

.hero-place:hover {
  color: var(--color-text-inverse);
}

.hero-place:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.hero-place svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-primary-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

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

.btn--outline {
  background: transparent;
  color: var(--color-text-inverse);
  border: 2px solid hsla(190, 12%, 95%, 0.3);
}

.btn--outline:hover {
  background: hsla(190, 12%, 95%, 0.1);
  border-color: hsla(190, 12%, 95%, 0.5);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-text);
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  color: var(--color-text-inverse);
}

/* About teaser */
.about-teaser {
  padding: var(--section-pad-lg) 0;
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-teaser-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about-teaser-image:hover img {
  transform: scale(1.03);
}

.about-teaser-content {
  max-width: 50ch;
}

.about-teaser-content h2 {
  margin-bottom: var(--space-lg);
}

.about-teaser-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.about-teaser-content p:last-of-type {
  margin-bottom: var(--space-lg);
}

/* Services highlight */
.services-highlight {
  background: var(--color-bg-alt);
  padding-top: var(--section-pad-lg);
  padding-bottom: var(--section-pad-lg);
  padding-left: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
  padding-right: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.service-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-primary-light);
  line-height: 1;
  min-width: 3rem;
}

.service-item-content h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.service-item-content p {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

/* Reviews */
.reviews {
  background: var(--color-dark-bg);
  color: var(--color-text-inverse);
  padding-top: var(--section-pad-sm);
  padding-bottom: var(--section-pad-sm);
  padding-left: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
  padding-right: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
}

.reviews .section-label {
  color: var(--color-primary-light);
}

.reviews .section-header h2 {
  color: var(--color-text-inverse);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.review-card {
  padding: var(--space-lg);
  background: hsla(190, 20%, 20%, 0.4);
  border-radius: var(--radius-lg);
  border: 1px solid hsla(190, 12%, 95%, 0.08);
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-regular);
  font-style: italic;
  line-height: 1.6;
  color: hsla(190, 12%, 95%, 0.9);
  margin-bottom: var(--space-md);
}

.review-author {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-primary-light);
}

/* CTA section */
.cta-section {
  padding-top: var(--section-pad-md);
  padding-bottom: var(--section-pad-md);
  padding-left: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
  padding-right: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.cta-content h2 {
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.cta-info-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.cta-info-item a {
  color: var(--color-text-light);
  transition: color var(--transition-base);
}

.cta-info-item a:hover {
  color: var(--color-primary);
}

.cta-info-item a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.cta-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--color-border);
}

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

/* ===== SERVICES PAGE ===== */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-lg);
  background: var(--color-bg-alt);
  padding-left: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
  padding-right: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
}

.page-header h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-sm);
}

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

.page-header + .services-full {
  padding-top: var(--space-2xl);
}

/* Services full page */
.services-full {
  padding-top: var(--section-pad-md);
  padding-bottom: var(--section-pad-lg);
  padding-left: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
  padding-right: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
}

.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.service-full-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.service-full-card:nth-child(even) {
  direction: ltr;
}

.service-full-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.service-full-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-full-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-extrabold);
  color: var(--color-primary-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.service-full-content h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.service-full-content p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.service-full-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.service-feature svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* ===== GALLERY PAGE ===== */
.page-header + .gallery-section {
  padding-top: var(--space-2xl);
}

.gallery-section {
  padding-top: var(--section-pad-md);
  padding-bottom: var(--section-pad-lg);
  padding-left: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
  padding-right: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  grid-auto-flow: dense;
}

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

.gallery-item--portrait {
  aspect-ratio: 3 / 4;
  grid-row: span 2;
}

.gallery-item--square {
  aspect-ratio: 1;
}

.gallery-item--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: hsla(190, 42%, 8%, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms var(--ease-out), visibility 300ms var(--ease-out);
  cursor: pointer;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  background: none;
  border: none;
  color: var(--color-text-inverse);
  cursor: pointer;
  padding: var(--space-sm);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  cursor: default;
}

/* ===== CONTACT PAGE ===== */
.page-header + .contact-section {
  padding-top: var(--space-2xl);
}

.contact-section {
  padding-top: var(--section-pad-md);
  padding-bottom: var(--section-pad-lg);
  padding-left: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
  padding-right: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-card {
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.contact-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-card h3 svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.contact-card-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

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

.contact-card-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15em;
  color: var(--color-primary);
}

.contact-card-item a {
  color: var(--color-text-light);
  transition: color var(--transition-base);
}

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

.contact-card-item a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: var(--weight-medium);
  color: var(--color-text);
}

.hours-time {
  color: var(--color-text-light);
}

.contact-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
}

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

.contact-storefront {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-top: var(--space-lg);
}

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

/* ===== RESPONSIVE ===== */

/* 480px — small phones */
@media (min-width: 480px) {
  .gallery-grid {
    gap: var(--space-lg);
  }
}

/* 768px — tablets */
@media (min-width: 768px) {
  .topbar {
    display: block;
  }

  .header {
    top: 0;
  }

  .nav-links {
    display: flex;
  }

  .nav-phone {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .floating-buttons {
    display: none;
  }

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

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

  .about-teaser-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .cta-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
  }

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .service-full-card {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
  }

  .service-full-card:nth-child(even) .service-full-image {
    order: 2;
  }

  .service-full-card:nth-child(even) .service-full-content {
    order: 1;
  }
}

/* 1024px — desktop */
@media (min-width: 1024px) {
  .hero {
    min-height: 90vh;
  }

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

  .contact-map-wrap {
    aspect-ratio: auto;
    min-height: 500px;
  }
}

/* 768px down — mobile spacing */
@media (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
    --nav-height: 64px;
  }

  .hero {
    min-height: 75vh;
  }

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}
