/* ============================================
   NEUROMUSCULAR CENTER AT TULLAHOMA
   Vibrant Modern · Terracotta + Sand
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --terra: #C4703B;
  --terra-deep: #A85A2A;
  --terra-light: #D4916A;
  --sand: #F5E6D3;
  --sand-light: #FAF3EB;
  --sand-dark: #E8D5C0;
  --cream: #FDF8F3;
  --charcoal: #2A2118;
  --charcoal-light: #4A3F35;
  --warm-gray: #7A6B5D;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(42, 33, 24, 0.08);
  --shadow-lg: 0 12px 48px rgba(42, 33, 24, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 700;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--terra);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn--primary:hover {
  background: var(--terra-deep);
  border-color: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 112, 59, 0.35);
}

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

.btn--outline-light {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline-light:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--terracotta {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn--terracotta:hover {
  background: var(--terra-deep);
  border-color: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 112, 59, 0.35);
}

.btn--white {
  background: var(--white);
  color: var(--terra);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--sand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.35);
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terra);
  margin-bottom: 0.75rem;
  background: var(--sand);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-title em {
  color: var(--terra);
  font-style: italic;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--warm-gray);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 112, 59, 0.1);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(42, 33, 24, 0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--charcoal);
}

.nav__logo-icon {
  color: var(--terra);
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__list a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal-light);
  border-radius: 50px;
  transition: var(--transition);
}

.nav__list a:hover {
  color: var(--terra);
  background: var(--sand);
}

.nav__cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
}
.nav__cta:hover {
  background: var(--terra-deep) !important;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__bar {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 33, 24, 0.82) 0%,
    rgba(168, 90, 42, 0.70) 50%,
    rgba(42, 33, 24, 0.85) 100%
  );
}

.hero__geo {
  position: absolute;
  z-index: 2;
  opacity: 0.12;
}

.hero__geo--1 {
  width: 420px;
  height: 420px;
  background: var(--terra);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.hero__geo--2 {
  width: 200px;
  height: 200px;
  background: var(--sand);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 15%;
  left: 5%;
  animation: morph 8s ease-in-out infinite;
}

.hero__geo--3 {
  width: 120px;
  height: 120px;
  background: var(--terra-light);
  border-radius: 50%;
  bottom: 25%;
  right: 15%;
  animation: float 6s ease-in-out infinite;
}

@keyframes morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

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

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 780px;
  padding: 2rem 1.5rem;
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--sand-light);
}

.hero__headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero__accent {
  color: var(--sand);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(250, 243, 235, 0.85);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
}

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

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--terra);
  overflow: hidden;
  padding: 0.875rem 0;
}

.marquee__track {
  display: flex;
  gap: 1rem;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  flex-shrink: 0;
}

.marquee__track .dot {
  font-size: 0.5rem;
  color: var(--sand);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 6rem 0;
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid rgba(196, 112, 59, 0.06);
}

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

.card__shape {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--sand);
  top: -40px;
  right: -40px;
  opacity: 0.5;
  transition: var(--transition);
}

.card--accent--reverse .card__shape {
  background: var(--terra);
  opacity: 0.1;
}

.card:hover .card__shape {
  transform: scale(1.3) rotate(15deg);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.card:hover .card__icon {
  background: var(--terra);
  color: var(--white);
  transform: scale(1.05);
}

.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.625rem;
}

.card__body {
  font-size: 0.9375rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 6rem 0;
  background: var(--sand-light);
  overflow: hidden;
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

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

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

.about__image-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--terra);
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
  opacity: 0.15;
  z-index: -1;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__text {
  font-size: 1.0625rem;
  color: var(--charcoal-light);
  line-height: 1.75;
}

.about__stats {
  display: flex;
  gap: 2rem;
  margin: 0.5rem 0 1rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 6rem 0;
  background: var(--cream);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 33, 24, 0.3), transparent 50%);
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.gallery__item:hover::after {
  opacity: 1;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 6rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--terra);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  opacity: 0.06;
}

.testimonials .section-tag {
  background: rgba(196, 112, 59, 0.2);
  color: var(--terra-light);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-title em {
  color: var(--sand);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.testimonial__stars {
  color: var(--terra-light);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial__text {
  font-size: 1rem;
  color: rgba(250, 243, 235, 0.85);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sand);
  font-style: normal;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 6rem 0;
  background: var(--terra);
  position: relative;
  overflow: hidden;
}

.cta__geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.cta__geo--1 {
  width: 300px;
  height: 300px;
  background: var(--white);
  top: -80px;
  left: -80px;
}

.cta__geo--2 {
  width: 180px;
  height: 180px;
  background: var(--sand);
  bottom: -50px;
  right: 10%;
}

.cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 6rem 0;
  background: var(--sand-light);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__text {
  font-size: 1.0625rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact__detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terra);
}

.contact__detail dd {
  font-size: 0.9375rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

.contact__detail a {
  color: var(--charcoal);
  border-bottom: 1px solid rgba(196, 112, 59, 0.3);
  transition: var(--transition);
}

.contact__detail a:hover {
  color: var(--terra);
  border-color: var(--terra);
}

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal-light);
  margin-bottom: 0.375rem;
}

.form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  appearance: none;
}

.form__input:focus {
  outline: none;
  border-color: var(--terra);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 112, 59, 0.1);
}

.form__input::placeholder {
  color: var(--warm-gray);
  opacity: 0.6;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A6B5D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__success {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--terra-deep);
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--sand-dark);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.4;
}

.footer__logo svg {
  color: var(--terra-light);
  flex-shrink: 0;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(232, 213, 192, 0.6);
  margin-top: 0.5rem;
  max-width: 260px;
}

.footer__nav {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.footer__nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  color: rgba(250, 243, 235, 0.7);
  border-radius: 50px;
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(232, 213, 192, 0.5);
}

.footer__bottom a {
  color: var(--terra-light);
  transition: var(--transition);
}

.footer__bottom a:hover {
  color: var(--white);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonials__grid .testimonial:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

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

  .nav__list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 243, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(196, 112, 59, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav__list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__list a {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav__cta {
    margin-left: 0 !important;
    text-align: center;
  }

  .hero__geo--1 {
    width: 250px;
    height: 250px;
  }

  .hero__geo--2,
  .hero__geo--3 {
    display: none;
  }

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

  .about__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .testimonials__grid .testimonial:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer__top {
    flex-direction: column;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

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

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

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

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

  .about__stats {
    flex-direction: column;
    gap: 1rem;
  }
}

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

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
