/* ===================================
   CSS Variables - Color Scheme & Design Tokens
   =================================== */
:root {
  /* Bakery Color Palette - Warm & Inviting */
  --color-primary: #d4a574;
  --color-primary-light: #e8c9a8;
  --color-primary-dark: #b8845e;
  --color-secondary: #fff4e6;
  --color-accent: #8b4513;
  --color-text: #2c1810;
  --color-text-light: #6b4423;
  --color-bg: #ffffff;
  --color-bg-alt: #fef9f3;
  --color-border: #e8ddd0;

  /* Semantic Colors */
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-error: #f44336;

  /* Typography */
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;

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

  /* Layout */
  --container-width: 1140px;
  --border-radius: 8px;
  --border-radius-lg: 12px;

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

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

  /* Z-index */
  --z-header: 100;
  --z-lightbox: 1000;
  --z-scroll-top: 99;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: var(--spacing-sm);
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  border-radius: 2px;
}

.section-description {
  color: var(--color-text-light);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

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

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

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
  transition: all var(--transition-fast);
}

.nav__list {
  display: flex;
  gap: var(--spacing-lg);
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  padding: var(--spacing-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

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

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero__image-wrapper {
  width: 100%;
  height: 100%;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero__title {
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--spacing-sm);
  animation: fadeInUp 0.8s ease;
}

.hero__subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 300;
  margin-bottom: var(--spacing-md);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.5rem;
  color: #ffd700;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.star--filled {
  color: #ffd700;
}

.star--half {
  background: linear-gradient(90deg, #ffd700 50%, rgba(255, 215, 0, 0.3) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__rating-text {
  font-size: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero__buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

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

.hero__scroll {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  animation: bounce 2s infinite;
}

.hero__scroll-text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__scroll-arrow {
  width: 24px;
  height: 24px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

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

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

.btn--secondary {
  background-color: white;
  color: var(--color-accent);
  border: 2px solid white;
}

.btn--secondary:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-2px);
}

/* ===================================
   About Section - Features
   =================================== */
.about__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.feature-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-card__icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2;
}

.feature-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-accent);
}

.feature-card__text {
  color: var(--color-text-light);
  margin: 0;
}

/* ===================================
   Specialties Section
   =================================== */
.specialties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.specialty-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.specialty-card__image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.specialty-card__content {
  padding: var(--spacing-lg);
}

.specialty-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-accent);
}

.specialty-card__description {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.specialty-card__price {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--color-secondary);
  color: var(--color-accent);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.specialty-card__badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.gallery__filter {
  padding: 10px 24px;
  background-color: white;
  border: 2px solid var(--color-border);
  border-radius: 25px;
  font-weight: 500;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.gallery__filter:hover,
.gallery__filter--active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.gallery__item {
  position: relative;
  height: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery__item.hidden {
  display: none;
}

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

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-view {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: all var(--transition-fast);
}

.gallery__item-view svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.gallery__item-view:hover {
  transform: scale(1.1);
  background-color: var(--color-primary);
  color: white;
}

/* ===================================
   Lightbox
   =================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-lightbox);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__content {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox__image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition-fast);
}

.lightbox__close {
  top: var(--spacing-lg);
  right: var(--spacing-lg);
}

.lightbox__prev {
  left: var(--spacing-lg);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: var(--spacing-lg);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox__prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox__next:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox__close svg,
.lightbox__prev svg,
.lightbox__next svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* ===================================
   Reviews Section
   =================================== */
.reviews__summary {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}

.reviews__score {
  text-align: center;
}

.reviews__score-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-serif);
}

.reviews__score-stars {
  margin: var(--spacing-xs) 0;
}

.reviews__score-text {
  display: block;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.reviews__distribution {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  min-width: 300px;
}

.review-bar {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.review-bar__label {
  font-weight: 600;
  color: var(--color-text);
  width: 30px;
}

.review-bar__track {
  flex: 1;
  height: 10px;
  background-color: var(--color-border);
  border-radius: 5px;
  overflow: hidden;
}

.review-bar__fill {
  height: 100%;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  transition: width var(--transition-slow);
}

.review-bar__count {
  font-size: 0.875rem;
  color: var(--color-text-light);
  width: 30px;
  text-align: right;
}

.reviews__slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.review-card {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card__stars .star {
  font-size: 1.125rem;
}

.review-card__date {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.review-card__text {
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.review-card__details {
  margin-bottom: var(--spacing-sm);
}

.review-card__info {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xs);
}

.review-card__ratings {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.review-card__rating-item {
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding: 4px 12px;
  background-color: var(--color-secondary);
  border-radius: 12px;
}

.review-card__image-wrapper {
  margin: var(--spacing-md) 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  max-height: 200px;
}

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

.review-card__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
}

.review-card__platform {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.reviews__controls {
  display: none;
}

/* ===================================
   Hours Section
   =================================== */
.hours__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-xl);
  align-items: start;
}

.hours__schedule {
  background: white;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition-fast);
}

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

.schedule-row:hover {
  background-color: var(--color-bg-alt);
}

.schedule-row--current {
  background-color: var(--color-secondary);
  font-weight: 600;
}

.schedule-row--closed .schedule-row__hours {
  color: var(--color-error);
}

.schedule-row__day {
  font-weight: 600;
  color: var(--color-text);
}

.schedule-row__hours {
  color: var(--color-text-light);
}

.hours__info {
  display: grid;
  gap: var(--spacing-md);
}

.info-box {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.info-box:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.info-box__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-box__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.info-box__content {
  flex: 1;
}

.info-box__title {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-accent);
}

.info-box__text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact-item {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

.contact-item__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-item__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}

.contact-item__content {
  flex: 1;
}

.contact-item__title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
  color: var(--color-accent);
}

.contact-item__text {
  color: var(--color-text-light);
  margin: 0;
}

.contact-item__text a {
  color: var(--color-primary);
  font-weight: 600;
}

.contact-item__text a:hover {
  text-decoration: underline;
}

.contact-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

.contact__map {
  height: 500px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: linear-gradient(135deg, var(--color-accent), #5c2d0f);
  color: white;
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer__title {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary-light);
}

.footer__text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
}

.footer__rating {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.95rem;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer__list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 2;
}

.footer__list a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer__bottom p {
  margin-bottom: var(--spacing-xs);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: var(--z-scroll-top);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* ===================================
   Utility Classes
   =================================== */
.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeIn var(--transition-normal);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===================================
   Media Queries - Responsive Design
   =================================== */

/* Tablet - 768px to 1023px */
@media (max-width: 1023px) {
  :root {
    --spacing-xl: 2.5rem;
    --spacing-2xl: 3rem;
  }

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

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

  .contact__map {
    height: 400px;
  }

  .reviews__slider {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* Mobile - 320px to 767px */
@media (max-width: 767px) {
  :root {
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
  }

  .nav__menu.active {
    max-height: 500px;
  }

  .nav__list {
    flex-direction: column;
    padding: var(--spacing-md);
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__link:last-child {
    border-bottom: none;
  }

  .hero {
    min-height: 500px;
  }

  .hero__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

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

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

  .gallery__item {
    height: 250px;
  }

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

  .reviews__distribution {
    width: 100%;
  }

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

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

  .contact-cta {
    flex-direction: column;
  }

  .contact-cta .btn {
    width: 100%;
  }

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

  .lightbox__close,
  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
  }

  .lightbox__close {
    top: var(--spacing-sm);
    right: var(--spacing-sm);
  }

  .lightbox__prev {
    left: var(--spacing-sm);
  }

  .lightbox__next {
    right: var(--spacing-sm);
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
  }
}

/* Small Mobile - 320px to 479px */
@media (max-width: 479px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .hero__scroll {
    bottom: var(--spacing-md);
  }

  .feature-card {
    padding: var(--spacing-md);
  }

  .feature-card__icon {
    width: 60px;
    height: 60px;
  }

  .feature-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .gallery__filters {
    gap: var(--spacing-xs);
  }

  .gallery__filter {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
}