/* ===== PAT'S ALUMINUM PRODUCTS — STYLES ===== */
/* Exterior renovation contractor in Penetanguishene, ON
   Palette: Deep royal blue seed (H:220) — cool, professional, trustworthy
   Typography: Instrument Serif (display) + Outfit (body)
   Design: Bold contractor aesthetic with editorial numbered services */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Color Palette — HSL Seed: hsl(220, 78%, 36%) */
  --color-primary: hsl(220, 78%, 36%);
  --color-primary-light: hsl(220, 55%, 88%);
  --color-primary-dark: hsl(220, 83%, 28%);
  --color-accent: hsl(200, 65%, 42%);
  --color-bg: hsl(220, 18%, 97%);
  --color-bg-alt: hsl(220, 12%, 94%);
  --color-surface: hsl(220, 10%, 99%);
  --color-text: hsl(220, 22%, 15%);
  --color-text-light: hsl(220, 12%, 44%);
  --color-text-inverse: hsl(220, 12%, 95%);
  --color-dark-bg: hsl(220, 42%, 14%);
  --color-border: hsl(220, 12%, 86%);

  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.775rem + 0.2vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.6rem + 1.2vw, 2.5rem);
  --text-4xl: clamp(2.25rem, 1.8rem + 1.8vw, 3.25rem);
  --text-hero: clamp(2.75rem, 2rem + 3vw, 4.5rem);

  /* Spacing Scale */
  --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: 80px;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Animation */
  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ===== 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-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 200ms 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-regular);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-4xl); }
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-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* ===== 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 background with centered content */
.full-width-section {
  padding-left: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
  padding-right: max(var(--container-padding), calc((100% - var(--container-max)) / 2));
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-dark-bg);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-text-inverse);
}

.nav-brand-name {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-inverse);
}

.nav-brand-divider {
  width: 1px;
  height: 1.5rem;
  background: hsla(220, 12%, 95%, 0.3);
  margin: 0 var(--space-xs);
}

.nav-brand-tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  color: hsla(220, 12%, 95%, 0.6);
  letter-spacing: 0.02em;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: hsla(220, 12%, 95%, 0.75);
  text-decoration: none;
  padding: var(--space-sm) 0;
  transition: color 200ms var(--ease-out);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-light);
  transition: width 300ms var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text-inverse);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out);
}

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

.nav-phone:active {
  transform: scale(0.98);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-inverse);
  border-radius: 1px;
  transition: transform 300ms var(--ease-out), opacity 200ms;
}

.hamburger span:nth-child(1) { margin-bottom: 6px; }
.hamburger span:nth-child(3) { margin-top: 6px; }

/* 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-text-inverse);
}

[data-page="home"] .nav-link[href="index.html"]::after,
[data-page="services"] .nav-link[href="services.html"]::after,
[data-page="gallery"] .nav-link[href="gallery.html"]::after,
[data-page="contact"] .nav-link[href="contact.html"]::after {
  width: 100%;
}

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

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  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-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;
}

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

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

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

.footer-brand-name {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-md);
}

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

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

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

.footer-link {
  font-size: var(--text-sm);
  color: hsla(220, 12%, 95%, 0.65);
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid hsla(220, 12%, 95%, 0.15);
}

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

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

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsla(220, 12%, 95%, 0.1);
  color: hsla(220, 12%, 95%, 0.65);
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out);
}

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

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

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

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px hsla(220, 42%, 14%, 0.25);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.floating-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px hsla(220, 42%, 14%, 0.35);
}

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

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

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  cursor: pointer;
  border: none;
}

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

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 16px hsla(220, 78%, 36%, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

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

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

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

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-lg);
  background: var(--color-dark-bg);
  color: var(--color-text-inverse);
}

.page-header h1 {
  font-size: var(--text-4xl);
  color: var(--color-text-inverse);
}

.page-header p {
  color: hsla(220, 12%, 95%, 0.7);
  font-size: var(--text-lg);
  margin-top: var(--space-sm);
}

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

/* ===== DARK SECTIONS ===== */
.section--dark {
  background: var(--color-dark-bg);
  color: var(--color-text-inverse);
}

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

.section--dark p {
  color: hsla(220, 12%, 95%, 0.75);
}

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-height);
  padding-bottom: var(--section-pad-lg);
  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-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsla(220, 42%, 10%, 0.92) 0%,
    hsla(220, 42%, 10%, 0.7) 35%,
    hsla(220, 42%, 10%, 0.3) 65%,
    hsla(220, 42%, 10%, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

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

.hero-tagline {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--weight-light);
  color: hsla(220, 12%, 95%, 0.8);
  margin-bottom: var(--space-sm);
  max-width: 50ch;
}

.hero-loc {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: hsla(220, 12%, 95%, 0.65);
  text-decoration: none;
  margin-bottom: var(--space-lg);
  transition: color 200ms var(--ease-out);
}

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

.hero-loc svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

/* Services Preview */
.services-preview {
  padding: var(--section-pad-lg) 0;
  background: var(--color-bg-alt);
}

.services-preview-header {
  margin-bottom: var(--space-2xl);
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.service-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px hsla(220, 42%, 14%, 0.12);
}

.service-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

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

.service-card-content {
  padding: var(--space-lg);
}

.service-card-number {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
}

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

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Reviews */
.reviews {
  padding: var(--section-pad-md) 0;
  background: var(--color-bg);
}

.reviews-header {
  margin-bottom: var(--space-2xl);
}

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

.review-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-lg);
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: hsl(45, 90%, 50%);
  fill: hsl(45, 90%, 50%);
}

.review-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  flex: 1;
  margin-bottom: var(--space-lg);
}

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

/* CTA Section */
.cta-section {
  padding: var(--section-pad-md) 0;
  background: var(--color-primary);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-text-inverse);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  color: hsla(220, 12%, 95%, 0.8);
  margin: 0 auto var(--space-lg);
  max-width: 50ch;
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SERVICES PAGE ===== */
.services-list {
  padding: var(--section-pad-md) 0;
  background: var(--color-bg);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding-bottom: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}

.service-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) > * {
  direction: ltr;
}

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

.service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

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

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

.service-item-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

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

.service-item-content ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.service-item-content li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-light);
}

.service-item-content li svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Showroom section */
.showroom-section {
  padding: var(--section-pad-md) 0;
  background: var(--color-bg-alt);
}

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

.showroom-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

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

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

/* ===== GALLERY PAGE ===== */
.gallery-grid-section {
  padding: var(--section-pad-md) 0;
  background: var(--color-bg);
}

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

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

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

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

.gallery-item--wide {
  grid-column: span 2;
}

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

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

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

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: hsla(220, 12%, 95%, 0.15);
  border: none;
  color: var(--color-text-inverse);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms var(--ease-out);
}

.lightbox-nav:hover {
  background: hsla(220, 12%, 95%, 0.3);
}

.lightbox-prev {
  left: var(--space-lg);
}

.lightbox-next {
  right: var(--space-lg);
}

/* ===== CONTACT PAGE ===== */
.contact-split {
  padding: var(--section-pad-md) 0;
  background: var(--color-bg);
}

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

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

.contact-info-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.contact-info-value {
  font-size: var(--text-base);
  color: var(--color-text);
}

.contact-info-value a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 200ms var(--ease-out);
}

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

.contact-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-border);
}

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

/* ===== ANIMATION ===== */
.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);
}

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

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

/* Tablet */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .services-preview-grid {
    gap: var(--space-md);
  }
}

/* Tablet - Small */
@media (max-width: 768px) {
  :root {
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
    --nav-height: 70px;
  }

  .hero {
    min-height: 80vh;
  }

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

  .services-preview-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .gallery-item--wide {
    grid-column: span 2;
  }

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

  .contact-map-wrapper {
    aspect-ratio: 16 / 10;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .floating-buttons {
    display: flex;
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --container-padding: 1.25rem;
  }

  .hero {
    min-height: 75vh;
    align-items: flex-end;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .gallery-item--wide {
    grid-column: span 1;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: var(--space-sm);
  }

  .lightbox-next {
    right: var(--space-sm);
  }

  .review-card {
    padding: var(--space-lg);
  }

  .service-card-content {
    padding: var(--space-md);
  }

  .nav-brand-divider,
  .nav-brand-tagline {
    display: none;
  }
}

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

  html {
    scroll-behavior: auto;
  }

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