/* ============================================
   CSS Custom Properties (Theming)
   ============================================ */
:root {
  /* Colors */
  --color-primary: #1a1a2e;
  --color-primary-light: #2d2d44;
  --color-secondary: #16213e;
  --color-accent: #e94560;
  --color-accent-hover: #d94d5a;
  --color-accent-dark: #c93a50;
  --color-text: #111111;
  --color-text-light: #2d2d2d;
  --color-text-inverse: #fff;
  --color-bg: #d0d0d0;
  --color-bg-alt: #c3c3c3;
  --color-border: #d0d0d0;

  /* Typography */
  --font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --line-height: 1.6;

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

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.22);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

html {
  font-size: var(--font-size-base);
}

#services, #studio-shop, #testimonials, #videos, #contact {
  scroll-margin-top: 75px;
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
  touch-action: manipulation;
}

a:hover {
  color: var(--color-accent-hover);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

ul,
ol {
  list-style: none;
}

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

input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
}

h1 {
  font-size: var(--font-size-2xl);
}
h2 {
  font-size: var(--font-size-xl);
}
h3 {
  font-size: var(--font-size-lg);
}

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

.section {
  padding: var(--space-xl) 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-base);
  font-weight: 500;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

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

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-text-inverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-content .btn-primary {
  animation: swell 6s ease-in-out infinite;
}

.hero-content .btn-primary:hover {
  animation: none;
  background-color: #8a2632;
  transform: translateY(-2px) scale(1.08);
  box-shadow: var(--shadow-lg);
}

@keyframes swell {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.4);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 20px 4px rgba(233, 69, 96, 0.3);
  }
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo-svg {
  display: block;
  height: 40px;
  width: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-scale {
  display: flex;
  transition: transform var(--transition-normal);
  will-change: transform;
}

.logo:hover .logo-scale {
  transform: scale(1.1);
}

.logo:hover .logo-svg {
  filter: url(#logo-glow);
}

@media (prefers-reduced-motion: no-preference) {
  .logo-pulse {
    animation: logoPulse 2.8s ease-in-out infinite;
    transform-origin: 450px 365px;
  }
}

@keyframes logoPulse {
  0%,
  15%,
  55%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.07);
  }
  35% {
    transform: scale(1.02);
  }
  45% {
    transform: scale(1.05);
  }
}

/* Skip to main content */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--color-bg);
  color: var(--color-accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

/* Navigation Toggle (Mobile) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: all var(--transition-normal);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation List */
.nav-list {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background-color: var(--color-bg);
  flex-direction: column;
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  display: none;
}

.nav-list.active {
  display: flex;
}

.nav-list a {
  display: block;
  padding: var(--space-sm);
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.nav-list a:hover {
  color: var(--color-accent);
  transform: scale(1.15);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.7) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--color-text-inverse);
  padding: var(--space-lg);
}

.hero-content h1 {
  color: var(--color-text-inverse);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-sm);
}

.hero-content h1 .letter {
  display: inline-block;
  transition: color 0.3s ease;
  touch-action: manipulation;
}

.hero-tagline .letter {
  display: inline-block;
  transition: color 0.3s ease 2s;
}

.hero-tagline .letter:hover,
.hero-tagline .letter:active {
  transition-delay: 0s;
}



.hero-content h1 .l1:hover, .hero-content h1 .l1:active { color: #ff3b30; }
.hero-content h1 .l2:hover, .hero-content h1 .l2:active { color: #ff9500; }
.hero-content h1 .l3:hover, .hero-content h1 .l3:active { color: #ffcc00; }
.hero-content h1 .l4:hover, .hero-content h1 .l4:active { color: #34c759; }
.hero-content h1 .l5:hover, .hero-content h1 .l5:active { color: #00c7be; }
.hero-content h1 .l6:hover, .hero-content h1 .l6:active { color: #007aff; }
.hero-content h1 .l7:hover, .hero-content h1 .l7:active { color: #5856d6; }
.hero-content h1 .l8:hover, .hero-content h1 .l8:active { color: #af52de; }
.hero-content h1 .l9:hover, .hero-content h1 .l9:active { color: #ff3b30; }
.hero-content h1 .l10:hover, .hero-content h1 .l10:active { color: #ff9500; }

.hero-tagline .t1:hover, .hero-tagline .t1:active { color: #ff3b30; }
.hero-tagline .t2:hover, .hero-tagline .t2:active { color: #ff9500; }
.hero-tagline .t3:hover, .hero-tagline .t3:active { color: #ffcc00; }
.hero-tagline .t4:hover, .hero-tagline .t4:active { color: #34c759; }
.hero-tagline .t5:hover, .hero-tagline .t5:active { color: #00c7be; }
.hero-tagline .t6:hover, .hero-tagline .t6:active { color: #007aff; }
.hero-tagline .t7:hover, .hero-tagline .t7:active { color: #5856d6; }
.hero-tagline .t8:hover, .hero-tagline .t8:active { color: #af52de; }
.hero-tagline .t9:hover, .hero-tagline .t9:active { color: #ff3b30; }
.hero-tagline .t10:hover, .hero-tagline .t10:active { color: #ff9500; }
.hero-tagline .t11:hover, .hero-tagline .t11:active { color: #ffcc00; }
.hero-tagline .t12:hover, .hero-tagline .t12:active { color: #34c759; }
.hero-tagline .t13:hover, .hero-tagline .t13:active { color: #00c7be; }
.hero-tagline .t14:hover, .hero-tagline .t14:active { color: #007aff; }
.hero-tagline .t15:hover, .hero-tagline .t15:active { color: #5856d6; }
.hero-tagline .t16:hover, .hero-tagline .t16:active { color: #af52de; }
.hero-tagline .t17:hover, .hero-tagline .t17:active { color: #ff3b30; }
.hero-tagline .t18:hover, .hero-tagline .t18:active { color: #ff9500; }
.hero-tagline .t19:hover, .hero-tagline .t19:active { color: #ffcc00; }
.hero-tagline .t20:hover, .hero-tagline .t20:active { color: #34c759; }
.hero-tagline .t21:hover, .hero-tagline .t21:active { color: #00c7be; }
.hero-tagline .t22:hover, .hero-tagline .t22:active { color: #007aff; }
.hero-tagline .t23:hover, .hero-tagline .t23:active { color: #5856d6; }
.hero-tagline .t24:hover, .hero-tagline .t24:active { color: #af52de; }
.hero-tagline .t25:hover, .hero-tagline .t25:active { color: #ff3b30; }
.hero-tagline .t26:hover, .hero-tagline .t26:active { color: #ff9500; }
.hero-tagline .t27:hover, .hero-tagline .t27:active { color: #ffcc00; }
.hero-tagline .t28:hover, .hero-tagline .t28:active { color: #34c759; }
.hero-tagline .t29:hover, .hero-tagline .t29:active { color: #00c7be; }
.hero-tagline .t30:hover, .hero-tagline .t30:active { color: #007aff; }
.hero-tagline .t31:hover, .hero-tagline .t31:active { color: #5856d6; }
.hero-tagline .t32:hover, .hero-tagline .t32:active { color: #af52de; }
.hero-tagline .t33:hover, .hero-tagline .t33:active { color: #ff3b30; }
.hero-tagline .t34:hover, .hero-tagline .t34:active { color: #ff9500; }
.hero-tagline .t35:hover, .hero-tagline .t35:active { color: #ffcc00; }
.hero-tagline .t36:hover, .hero-tagline .t36:active { color: #34c759; }
.hero-tagline .t37:hover, .hero-tagline .t37:active { color: #00c7be; }
.hero-tagline .t38:hover, .hero-tagline .t38:active { color: #007aff; }
.hero-tagline .t39:hover, .hero-tagline .t39:active { color: #5856d6; }
.hero-tagline .t40:hover, .hero-tagline .t40:active { color: #af52de; }

.hero-tagline {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-lg);
  opacity: 0.9;
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
  display: grid;
  gap: var(--space-md);
}

.service-card {
  background: var(--color-bg);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  margin-bottom: var(--space-xs);
}

.service-card p {
  color: var(--color-text-light);
}

/* ============================================
   About Section
   ============================================ */
.about-content {
  display: grid;
  gap: var(--space-lg);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

/**
* New carousel styles
*/
.carouselnew {
  margin: var(--space-lg) auto;
  display: flex;
  overflow-x: auto;
  max-width: 100%;
}

.carouselnew::-webkit-scrollbar {
  display: none;
}

.group {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  will-change: transform;
}

.card {
  flex: 0 0 300px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: transform var(--transition-normal);
  scroll-snap-align: start;
}

.card:hover {
  transform: translateY(-4px);
}

/* Tablet: 2 cards visible */
@media (min-width: 768px) {
  .card {
    flex: 0 0 280px;
  }
}

/* Desktop: 4 cards visible (non-carousel) */
@media (min-width: 1024px) {
  .card {
    flex: 0 0 calc(25% - var(--space-md) * 3 / 4);
  }
}

/* Keep spinning carousel cards at fixed width on all breakpoints */
@media (min-width: 768px) {
  .group .card {
    flex: 0 0 480px;
  }
}

@media (min-width: 1024px) {
  .group .card {
    flex: 0 0 480px;
  }
}

@keyframes spin {
  from {
    translate: 0;
  }
  to {
    translate: -50%;
  }
}

@keyframes spin-video {
  from {
    translate: 0;
  }
  to {
    translate: -50%;
  }
}

/**
* End new carousel styles
*/

.testimonial {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial p {
  font-size: var(--font-size-lg);
  font-style: italic;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.testimonial cite {
  font-weight: 600;
  color: var(--color-accent);
  font-style: normal;
}

.testimonial-stars {
  display: block;
  color: #f5a623;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
}

/* ============================================
   Carousel Scroll Buttons
   ============================================ */
.carousel-wrapper {
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity var(--transition-normal),
    background var(--transition-normal);
  touch-action: manipulation;
}

.carousel-wrapper:hover .carousel-btn,
.carousel-btn:focus-visible {
  opacity: 1;
}

.carousel-prev {
  left: 4px;
}

.carousel-next {
  right: 4px;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

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

@media (max-width: 767px) {
  .carousel-btn {
    opacity: 1;
    width: 36px;
    height: 36px;
  }

  .carousel-prev {
    left: 2px;
  }

  .carousel-next {
    right: 2px;
  }
}

/* ============================================
   Video Carousel
   ============================================ */
.video-carousel {
  margin: var(--space-lg) auto;
  display: flex;
  overflow-x: auto;
  max-width: 100%;
}

.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-group {
  display: flex;
  gap: var(--space-md);
  padding-left: var(--space-sm);
  animation: spin-video 160s linear infinite;
}

.video-carousel:hover .video-group {
  animation-play-state: paused;
}

.shop-group {
  display: flex;
  gap: var(--space-md);
  animation: none;
}

.shop-group .card {
  flex: 0 0 300px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.shop-group .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .shop-group .card {
    flex: 0 0 280px;
    height: 200px;
  }
}

@media (min-width: 1024px) {
  .shop-group .card {
    flex: 0 0 300px;
    height: 220px;
  }
}

.video-carousel-fade {
  position: relative;
}

.video-carousel-fade::before,
.video-carousel-fade::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  z-index: 2;
  pointer-events: none;
}

.video-carousel-fade::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}

.video-carousel-fade::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

.video-card {
  flex: 0 0 300px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-card:hover {
  transform: translateY(-4px);
}

/* Mobile: more subtle fade */
@media (max-width: 767px) {
  .video-carousel-fade::before,
  .video-carousel-fade::after {
    width: 16px;
  }

  .video-carousel-fade::before {
    background: linear-gradient(to right, rgba(208,208,208,0.85), transparent);
  }

  .video-carousel-fade::after {
    background: linear-gradient(to left, rgba(208,208,208,0.85), transparent);
  }
}

/* Tablet */
@media (min-width: 768px) {
  .video-card {
    flex: 0 0 calc(50% - var(--space-md) / 2);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .video-card {
    flex: 0 0 500px;
  }

  .video-group {
    padding-left: var(--space-md);
  }
}

/* ============================================
   Contact Section
   ============================================ */
.contact-hours-grid {
  display: grid;
  gap: var(--space-lg);
}

.contact-card .section-title {
  color: var(--color-text-inverse);
}

.contact-card-body p {
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.85);
}

.contact-card-body strong {
  color: var(--color-text-inverse);
  font-size: var(--font-size-lg);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-md) 0;
  text-align: center;
}

.footer p {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-text-inverse);
  transition: all var(--transition-normal);
}

.footer-social a:hover {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
  transform: translateY(-3px);
}

/* ============================================
   Map
   ============================================ */
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* ============================================
   Hours of Operation Section
   ============================================ */
.hours-card {
  background: linear-gradient(135deg, #252547 0%, #161630 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-md);
  animation: fadeSlideUp 0.6s ease-out;
}

.contact-card {
  background: linear-gradient(135deg, #2c2c54 0%, #1c1c3a 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-md);
  animation: fadeSlideUp 0.6s ease-out;
}

.studio-hours-title {
  color: var(--color-text-inverse);
}

.hours-clock-icon {
  color: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

.hours-list {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.hours-row:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--color-accent);
  transform: translateX(8px);
}

.hours-row dt {
  font-weight: 600;
  color: var(--color-text-inverse);
}

.hours-row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95em;
}

.hours-closed {
  background: rgba(233, 69, 96, 0.15);
}

.hours-closed dt,
.hours-closed dd {
  color: var(--color-accent);
}

.hours-appointment {
  background: rgba(245, 158, 11, 0.12);
}

.hours-appointment dt,
.hours-appointment dd {
  color: #f59e0b;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* ============================================
   Media Queries (Tablet - 768px+)
   ============================================ */
@media (min-width: 768px) {
  /* Typography */
  h1 {
    font-size: var(--font-size-3xl);
  }
  h2 {
    font-size: var(--font-size-2xl);
  }
  h3 {
    font-size: var(--font-size-xl);
  }

  /* Layout */
  .container-padding {
    padding: 0 var(--space-md);
  }

  /* Header */
  .header-inner {
    height: 70px;
  }

  .logo-svg {
    height: 50px;
  }

  /* Navigation */
  .nav-toggle {
    display: none;
  }

  .nav-list {
    position: static;
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-list a {
    padding: var(--space-xs) 0;
  }

  /* Hero */
  .hero {
    padding-top: 70px;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  /* Contact & Hours grid */
  .contact-hours-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ============================================
   Media Queries (Desktop - 1024px+)
   ============================================ */
@media (min-width: 1024px) {
  /* Typography */
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }

  /* Layout */
  .section {
    padding: var(--space-2xl) 0;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  /* Testimonial */
  .testimonial {
    padding: var(--space-xl);
  }
}

/* ============================================
   Page Header (Sub-pages)
   ============================================ */
.page-header {
  padding: calc(60px + var(--space-2xl)) 0 var(--space-xl);
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
  text-align: center;
}

.page-header h1 {
  color: var(--color-text-inverse);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-xs);
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-lg);
}

/* ============================================
   Content Page Styles
   ============================================ */
.content-page {
  padding: var(--space-xl) 0;
}

.content-page p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: var(--font-size-lg);
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.content-image img {
  width: 100%;
  height: auto;
}

.about-page-layout {
  display: grid;
  gap: var(--space-lg);
}

/* Equipment Page */
.equipment-block {
  margin-bottom: var(--space-xl);
}

.equipment-block h2 {
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.equipment-block h3 {
  font-size: 1.375rem;
  text-decoration: underline;
}

.equipment-block p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: var(--font-size-lg);
}

.equipment-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.equipment-images picture {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
  animation: fadeSlideUp 0.5s ease forwards;
  opacity: 0;
  aspect-ratio: 4 / 3;
}

.equipment-images picture:nth-child(2) {
  animation-delay: 0.1s;
}
.equipment-images picture:nth-child(3) {
  animation-delay: 0.2s;
}
.equipment-images picture:nth-child(4) {
  animation-delay: 0.3s;
}

.equipment-images picture:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.equipment-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .equipment-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* PDF Links */
.pdf-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-weight: 500;
  transition: all var(--transition-normal);
}

.pdf-link:hover {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pdf-link-lg {
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-lg);
  gap: var(--space-sm);
}

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