/* ===================================
   INNER PAGES STYLES
   Emilie Kinésithérapie Theme
   =================================== */

/* ===================================
   STICKY HEADER
   =================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 226, 217, 0.5);
  transition: all var(--transition-smooth);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
}

.site-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary-light);
  transition: transform var(--transition-fast);
}

.site-logo:hover img {
  transform: scale(1.05);
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-charcoal);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

.nav-link--cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(123, 158, 135, 0.3);
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 158, 135, 0.4);
}

.nav-link--cta svg {
  width: 18px;
  height: 18px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

/* ===================================
   PAGE HERO
   =================================== */
.page-main {
  padding-top: 80px;
}

.page-hero {
  position: relative;
  padding: var(--space-xl) 0;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-cream) 100%);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.floating-shape--1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  animation-delay: 0s;
}

.floating-shape--2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: 10%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  animation-delay: -5s;
}

.floating-shape--3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: -30px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(10px, -20px) scale(1.05); }
  50% { transform: translate(-5px, 10px) scale(0.95); }
  75% { transform: translate(-15px, -10px) scale(1.02); }
}

.page-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(123, 158, 135, 0.3);
}

.btn--primary:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 158, 135, 0.4);
}

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

.btn--secondary:hover {
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.btn--outline:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

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

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.lead-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

/* ===================================
   BOOKING SECTION (AGENDA PAGE)
   =================================== */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.booking-card {
  background: white;
  border-radius: 24px;
  padding: var(--space-lg);
  text-align: center;
  border: 2px solid var(--color-stone);
  transition: all var(--transition-smooth);
}

.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.booking-card--primary {
  background: linear-gradient(135deg, rgba(123, 158, 135, 0.05) 0%, rgba(168, 196, 176, 0.1) 100%);
  border-color: var(--color-primary-light);
}

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

.booking-card__icon svg {
  width: 36px;
  height: 36px;
  color: white;
}

.booking-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.booking-card__desc {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.booking-card__notice {
  font-style: italic;
  color: var(--color-text-light);
}

/* ===================================
   SCHEDULE SECTION
   =================================== */
.schedule-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

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

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm);
  background: var(--color-sand);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.schedule-item:hover {
  background: var(--color-primary-light);
  transform: translateX(8px);
}

.schedule-day {
  font-weight: 600;
  color: var(--color-charcoal);
}

.schedule-hours {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.schedule-item--closed {
  background: var(--color-stone);
}

.schedule-item--closed .schedule-hours {
  color: var(--color-text-light);
}

.schedule-image {
  height: 100%;
  min-height: 400px;
}

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

/* ===================================
   INFO CARDS
   =================================== */
.info-section {
  background: var(--color-sand);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.info-card {
  background: white;
  padding: var(--space-md);
  border-radius: 20px;
  text-align: center;
  transition: all var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.info-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sand);
  border-radius: 16px;
}

.info-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

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

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.cta-box {
  text-align: center;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.cta-box p {
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

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

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

.cta-box .btn--primary:hover {
  color: var(--color-charcoal);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-box .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.cta-box .btn--outline:hover {
  background: white;
  color: var(--color-primary-dark);
}

/* ===================================
   ABOUT SECTION (MON TRAVAIL PAGE)
   =================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image__wrapper {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image__accent {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--color-primary-light);
  border-radius: 24px;
  z-index: -1;
}

.about-content .section-label {
  text-align: left;
}

.about-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-stone);
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: var(--space-xs);
  display: block;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card__image {
  height: 200px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

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

.service-card__content h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  color: var(--color-charcoal);
}

.service-card__content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 62, 53, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-sm);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* ===================================
   APPROACH SECTION
   =================================== */
.approach-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.approach-content .section-label {
  text-align: left;
}

.approach-steps {
  margin-top: var(--space-md);
}

.approach-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-stone);
}

.approach-step:last-child {
  border-bottom: none;
}

.approach-step__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-primary-light);
  line-height: 1;
  min-width: 50px;
}

.approach-step__content h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.approach-step__content p {
  color: var(--color-text-light);
  margin: 0;
  font-size: 0.95rem;
}

.approach-image {
  position: relative;
}

.approach-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ===================================
   SITE FOOTER
   =================================== */
.site-footer {
  background: var(--color-charcoal);
  color: white;
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: var(--space-sm);
}

.footer-brand h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: var(--space-sm);
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.footer-contact li {
  margin-bottom: var(--space-xs);
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--color-primary-light);
}

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

.footer-social__links {
  display: flex;
  gap: var(--space-sm);
}

.site-footer .social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
}

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

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* ===================================
   ANIMATIONS
   =================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ===================================
   PAGE CONTENT (Generic Pages)
   =================================== */
.page-content-section {
  background: white;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin: var(--space-lg) 0 var(--space-sm);
}

.page-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  margin: var(--space-md) 0 var(--space-sm);
}

.page-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.page-content ul,
.page-content ol {
  margin: var(--space-md) 0;
  padding-left: var(--space-md);
}

.page-content li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: var(--space-md) 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-content blockquote {
  margin: var(--space-lg) 0;
  padding: var(--space-md);
  padding-left: var(--space-lg);
  background: var(--color-sand);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 16px 16px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-text-light);
}

.page-content a {
  color: var(--color-primary-dark);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: all var(--transition-fast);
}

.page-content a:hover {
  color: var(--color-accent-dark);
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.is-visible {
  opacity: 1;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

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

.lightbox__content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.lightbox__close:hover {
  transform: scale(1.2);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .about-grid,
  .approach-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .approach-image {
    max-width: 500px;
    margin: 0 auto;
    order: -1;
  }

  .schedule-wrapper {
    grid-template-columns: 1fr;
  }

  .schedule-image {
    min-height: 300px;
  }

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

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

  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: var(--space-md);
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: var(--space-sm);
    border-bottom: 1px solid var(--color-stone);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link--cta {
    justify-content: center;
    margin-top: var(--space-sm);
  }

  .page-hero {
    min-height: 30vh;
  }

  .about-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer-social__links {
    justify-content: center;
  }

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

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

  .gallery-item {
    height: 200px;
  }
}

