/* ============================================
   JASONBRADYBARBER - PORTFOLIO STYLES
   Premium Barber Theme with Perfect Mobile Responsiveness
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Barber Colors */
  --color-primary: #D4AF37;      /* Gold */
  --color-primary-dark: #B8941F;
  --color-primary-light: #E6C85C;
  --color-secondary: #1a1a1a;    /* Deep Black */
  --color-accent: #8B0000;       /* Dark Red */
  --color-dark: #0f0f0f;
  --color-dark-soft: #1e1e1e;
  --color-light: #f8f6f3;
  --color-light-dim: #e8e6e3;
  --color-text: #2a2a2a;
  --color-text-light: #6a6a6a;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Spacing - Responsive */
  --space-xs: clamp(0.375rem, 1vw, 0.5rem);
  --space-sm: clamp(0.75rem, 2vw, 1rem);
  --space-md: clamp(1rem, 3vw, 1.5rem);
  --space-lg: clamp(1.5rem, 4vw, 2rem);
  --space-xl: clamp(2rem, 5vw, 3rem);
  --space-2xl: clamp(2.5rem, 6vw, 4rem);
  --space-3xl: clamp(3rem, 8vw, 6rem);
  --space-4xl: clamp(4rem, 10vw, 8rem);
  
  /* Transitions */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  
  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent horizontal scroll */
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-light);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-height: 100vh;
}

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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition-base);
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw + 1rem, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* ============================================
   UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.section-label {
  display: inline-block;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-3xl);
}

.section-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-light);
  max-width: 600px;
  margin: var(--space-md) auto 0;
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: var(--space-md) 0;
  border-radius: 2px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 0.875rem) clamp(1.5rem, 4vw, 2rem);
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-dark);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn--secondary {
  background: transparent;
  color: white;
  border-color: white;
}

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

.btn--lg {
  padding: clamp(0.875rem, 2.5vw, 1.125rem) clamp(1.75rem, 5vw, 2.5rem);
  font-size: clamp(1rem, 1.75vw, 1.125rem);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 4vw, 2rem);
  min-height: 70px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  color: var(--color-dark);
  text-decoration: none;
  transition: color var(--transition-base);
  flex-shrink: 0;
}

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

.logo-icon {
  width: clamp(28px, 6vw, 32px);
  height: clamp(28px, 6vw, 32px);
  color: var(--color-primary);
  flex-shrink: 0;
}

.logo-text {
  display: none;
}

.navbar__menu {
  display: flex;
  list-style: none;
  gap: clamp(1rem, 3vw, 2rem);
  margin: 0;
}

.navbar__menu a {
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  padding: 0.5rem 0;
}

.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.navbar__menu a:hover,
.navbar__menu a.active {
  color: var(--color-primary);
}

.navbar__menu a:hover::after,
.navbar__menu a.active::after {
  width: 100%;
}

.navbar__cta {
  display: none;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__toggle-icon {
  width: 25px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* Better mobile support */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: -2;
}

.hero__background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/barbershop.webp') center/cover;
  opacity: 0.2;
  z-index: -1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(139, 0, 0, 0.85));
  z-index: -1;
}

.hero__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  width: 100%;
}

.hero__content {
  max-width: 800px;
  color: white;
}

.hero__label {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.9;
  margin-bottom: var(--space-sm);
  animation: fadeInUp 0.8s ease-out;
}

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

.hero__title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out backwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.1s; }
.hero__title-line:nth-child(2) { animation-delay: 0.2s; }
.hero__title-line:nth-child(3) { animation-delay: 0.3s; }

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  opacity: 0.95;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero__cta-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  opacity: 0.8;
  animation: float 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, white, transparent);
}

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

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: white;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.about__image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
}

.about__badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: clamp(1rem, 3vw, 1.5rem);
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  display: block;
  line-height: 1;
}

.badge-text {
  font-size: clamp(0.625rem, 1.5vw, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.about__text {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-light-dim);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: var(--color-text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--color-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
}

.service-card {
  background: white;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.service-card--featured {
  background: var(--color-secondary);
  color: white;
  border: 2px solid var(--color-primary);
}

.service-card--featured .service-card__title,
.service-card--featured .service-card__price {
  color: white;
}

.service-card--featured .service-card__description,
.service-card--featured .service-card__features {
  color: rgba(255, 255, 255, 0.9);
}

.service-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card__icon {
  font-size: clamp(2.5rem, 6vw, 3rem);
  margin-bottom: var(--space-md);
  display: block;
}

.service-card__title {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.service-card__description {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.6;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
}

.service-card__price {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.service-card__features {
  list-style: none;
  padding: 0;
}

.service-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-light-dim);
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  display: flex;
  align-items: center;
}

.service-card--featured .service-card__features li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.service-card__features li:last-child {
  border-bottom: none;
}

.service-card__features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.1em;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  background: white;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gallery-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-card__image {
  transform: scale(1.1);
}

.gallery-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: clamp(1.25rem, 4vw, 2rem);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-card:hover .gallery-card__overlay {
  transform: translateY(0);
}

.gallery-card__info h3 {
  color: white;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  margin-bottom: 0.5rem;
}

.gallery-card__info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: var(--color-light);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 4vw, 2rem);
}

.testimonial-card {
  background: white;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card__stars {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  margin-bottom: var(--space-md);
}

.testimonial-card__text {
  color: var(--color-text);
  font-size: clamp(0.9375rem, 1.75vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: clamp(50px, 12vw, 60px);
  height: clamp(50px, 12vw, 60px);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--color-dark);
  font-size: clamp(0.9375rem, 1.75vw, 1rem);
}

.testimonial-card__role {
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
  color: var(--color-text-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: white;
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.contact__description {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.contact__details {
  margin-bottom: var(--space-xl);
}

.contact__item {
  display: flex;
  align-items: start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact__icon {
  font-size: clamp(1.75rem, 4vw, 2rem);
  flex-shrink: 0;
}

.contact__text strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
  font-size: clamp(0.9375rem, 1.75vw, 1rem);
}

.contact__text a,
.contact__text span {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  line-height: 1.6;
}

.contact__text a:hover {
  color: var(--color-primary);
}

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

.contact__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 10vw, 48px);
  height: clamp(44px, 10vw, 48px);
  background: var(--color-light);
  border-radius: 50%;
  color: var(--color-dark);
  transition: all var(--transition-base);
}

.contact__social a:hover {
  background: var(--color-primary);
  color: var(--color-dark);
  transform: translateY(-3px);
}

.contact__social svg {
  width: clamp(18px, 4vw, 20px);
  height: clamp(18px, 4vw, 20px);
}

.contact__form {
  background: var(--color-light);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 20px;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: clamp(0.75rem, 2vw, 0.875rem) clamp(0.875rem, 2.5vw, 1rem);
  border: 2px solid var(--color-light-dim);
  border-radius: 10px;
  font-family: inherit;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  transition: border-color var(--transition-base);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: var(--color-light-dim);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  margin-bottom: var(--space-md);
}

.footer__logo .logo-icon {
  width: clamp(28px, 6vw, 32px);
  height: clamp(28px, 6vw, 32px);
  color: var(--color-primary);
}

.footer__logo .logo-text {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  color: white;
}

.footer__tagline {
  color: var(--color-light-dim);
  max-width: 300px;
  line-height: 1.6;
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
}

.footer__column h4 {
  color: white;
  font-size: clamp(0.9375rem, 1.75vw, 1rem);
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
  font-weight: 700;
}

.footer__column ul {
  list-style: none;
}

.footer__column a {
  color: var(--color-light-dim);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color var(--transition-base);
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
}

.footer__column a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  padding-top: clamp(1rem, 3vw, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  color: var(--color-light-dim);
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP
   ============================================ */
@media (min-width: 1440px) {
  .logo-text {
    display: block;
  }
  
  .navbar__cta {
    display: inline-block;
  }
}

/* ============================================
   RESPONSIVE - TABLET (1024px and below)
   ============================================ */
@media (max-width: 1024px) {
  .about__grid,
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
  }

  .about__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about__image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer__content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (768px and below)
   ============================================ */
@media (max-width: 768px) {
  /* Navigation */
  .logo-text {
    display: block;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 80vw);
    height: 100vh;
    height: 100svh;
    background: white;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-slow);
    gap: 0;
    overflow-y: auto;
  }
  
  .navbar__menu li {
    width: 100%;
    border-bottom: 1px solid var(--color-light-dim);
  }
  
  .navbar__menu a {
    display: block;
    padding: 1rem 0;
    width: 100%;
  }

  .navbar__menu.active {
    right: 0;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__toggle.active .navbar__toggle-icon:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }

  .navbar__toggle.active .navbar__toggle-icon:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle.active .navbar__toggle-icon:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  /* Sections */
  .section {
    padding: clamp(3rem, 8vw, 4rem) 0;
  }

  /* Hero */
  .hero {
    padding-top: 70px;
    min-height: 90vh;
    min-height: 90svh;
    text-align: center;
  }

  .hero__cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta-group .btn {
    width: 100%;
  }

  .hero__scroll-indicator {
    display: none;
  }

  /* About */
  .about__badge {
    bottom: 15px;
    right: 15px;
    padding: 1rem;
  }

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

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 1rem;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ============================================
   RESPONSIVE - iPhone SE and Small Phones (375px and below)
   ============================================ */
@media (max-width: 375px) {
  .navbar__container {
    padding: 0.75rem 1rem;
  }
  
  .hero__cta-group {
    gap: 0.75rem;
  }
  
  .btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
  }

  .btn--lg {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }
  
  .about__badge {
    bottom: 10px;
    right: 10px;
    padding: 0.75rem;
  }
  
  .badge-number {
    font-size: 1.25rem;
  }
  
  .badge-text {
    font-size: 0.625rem;
  }
  
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ============================================
   RESPONSIVE - iPad and Tablets (1024px and below)
   ============================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__content {
    max-width: 700px;
  }
  
  .services__grid,
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .navbar,
  .hero__scroll-indicator,
  .btn,
  .contact__form {
    display: none !important;
  }
  
  body {
    color: black;
    background: white;
  }
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
  .btn--primary {
    border: 2px solid var(--color-dark);
  }
  
  .btn--secondary {
    border-width: 3px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .navbar__menu a,
  .contact__social a,
  .service-card,
  .gallery-card,
  .testimonial-card {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.1);
  }
  
  /* Increase touch targets */
  .navbar__toggle {
    padding: 12px;
  }
  
  .contact__social a {
    min-width: 48px;
    min-height: 48px;
  }
}
