/* =============================================
   TOP NAILS & SPA — Stylesheet
   ============================================= */

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

:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark:  #A07840;
  --deep:       #1A0A2E;
  --deep-mid:   #2D1459;
  --rose:       #F5E6EF;
  --rose-mid:   #E8C8D8;
  --white:      #FDFBF8;
  --off-white:  #F5F0EA;
  --text:       #2C1A10;
  --text-light: #7A6558;
  --radius:     12px;
  --shadow:     0 4px 32px rgba(26, 10, 46, 0.10);
  --shadow-lg:  0 8px 48px rgba(26, 10, 46, 0.18);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.2;
}

.section__sub {
  margin-top: 16px;
  color: var(--text-light);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(26, 10, 46, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
}
.nav__logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.2;
}
.nav__logo-top {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
}
.nav__logo-amp {
  color: var(--gold);
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
}
.nav__logo-spa {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links li a {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav__links li a:hover { color: var(--gold); }

.nav__cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav__cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1A0A2E 0%, #2D1459 40%, #4A1942 70%, #2D0A1A 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201,169,110,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(201,169,110,0.10) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}
.hero__overlay { display: none; }

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero__title span { color: var(--gold); font-style: italic; }
.hero__slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--gold);
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero__divider span {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero__divider span:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.0s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s 1.5s infinite;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 30s linear infinite;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--deep);
}
.marquee__dot { color: rgba(26,10,46,0.5); }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__images {
  position: relative;
  height: 560px;
}
.about__img {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img--1 {
  top: 0; left: 0;
  width: 68%;
  height: 70%;
  background: var(--rose-mid);
}
.about__img--2 {
  bottom: 0; right: 0;
  width: 58%;
  height: 55%;
  background: var(--gold-light);
}
.about__badge {
  position: absolute;
  bottom: 28%;
  left: 52%;
  transform: translate(-50%, 50%);
  width: 100px;
  height: 100px;
  background: var(--deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

/* Placeholder styling when images fail to load */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder::after {
  content: 'Photo Coming Soon';
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.img-placeholder img { display: none; }

.about__text { padding: 20px 0; }
.about__text .section__title { text-align: left; margin-bottom: 16px; }
.about__lead {
  font-size: 16px;
  color: var(--deep-mid);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about__text p { color: var(--text-light); margin-bottom: 12px; }

.about__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__feature-icon {
  width: 52px;
  height: 52px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.about__feature h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 2px;
}
.about__feature p { font-size: 13px; color: var(--text-light); margin: 0; }

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--deep); }
.services .section__label { color: var(--gold); }
.services .section__title { color: var(--white); }
.services .section__sub { color: rgba(255,255,255,0.55); }

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

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-card--featured {
  background: linear-gradient(135deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
  border-color: rgba(201,169,110,0.35);
}
.service-card--featured:hover {
  background: linear-gradient(135deg, rgba(201,169,110,0.22) 0%, rgba(201,169,110,0.08) 100%);
}

.service-card__badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.service-card__icon {
  color: var(--gold);
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card > p {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card ul li {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* =============================================
   WHY US
   ============================================= */
.why { background: var(--off-white); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__text .section__title { text-align: left; }
.why__text p { color: var(--text-light); margin-top: 16px; }

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.why__stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.why__stat:hover { transform: translateY(-4px); }
.why__stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.why__stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery { background: var(--white); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 260px);
  gap: 12px;
  padding: 0 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--rose-mid);
  cursor: pointer;
}

/* Explicit grid placement matching each photo's natural shape */
/* gi-1: tall portrait — col 1, rows 1-2 */
.gi-1 { grid-column: 1; grid-row: 1 / span 2; }
/* gi-2: landscape — cols 2-3, row 1 */
.gi-2 { grid-column: 2 / span 2; grid-row: 1; }
/* gi-3: portrait — col 2, row 2 */
.gi-3 { grid-column: 2; grid-row: 2; }
/* gi-4: tall portrait — col 3, rows 2-3 */
.gi-4 { grid-column: 3; grid-row: 2 / span 2; }
/* gi-5: portrait — col 1, row 3 */
.gi-5 { grid-column: 1; grid-row: 3; }
/* gi-6: landscape — col 2, row 3 */
.gi-6 { grid-column: 2; grid-row: 3; }

.gallery__item img { transition: transform 0.6s cubic-bezier(.4,0,.2,1); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,46,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.gallery .btn--outline {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  padding: 12px 20px;
  width: 240px;
}
.gallery .btn--outline:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--rose); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold-light);
  line-height: 1;
}
.testimonial__stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  padding-top: 32px;
}
.testimonial p {
  font-style: italic;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial__author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold-dark);
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--deep); }
.contact .section__label { color: var(--gold); }
.contact .section__title { color: var(--white); }

.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.location-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.location-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.location-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.location-card__header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}
.location-card__map {
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4px;
}
.location-card__map iframe { width: 100%; height: 100%; border: none; }
.contact__block h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact__block p,
.contact__block a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.8;
  transition: color var(--transition);
}
.contact__block a:hover { color: var(--gold); }

.hours-table { border-collapse: collapse; }
.hours-table td {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  padding: 3px 0;
}
.hours-table td:first-child { padding-right: 24px; font-weight: 500; color: rgba(255,255,255,0.85); }

.contact__map {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
}
.contact__map iframe { width: 100%; height: 100%; border: none; }

.map-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 16px;
}
.map-placeholder small { font-size: 11px; color: rgba(255,255,255,0.3); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #0D0518; padding: 60px 0 0; }
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__logo-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
}
.footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
}
.footer__nav {
  display: flex;
  gap: 28px;
}
.footer__nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }
.footer__social {
  display: flex;
  gap: 16px;
}
.footer__social a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.footer__bottom {
  text-align: center;
  padding: 20px;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}
.footer__legal {
  margin-top: 6px;
}
.footer__legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.footer__legal a:hover {
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 240px);
  }
  .gi-1 { grid-column: 1; grid-row: 1 / span 2; }
  .gi-2 { grid-column: 2; grid-row: 1; }
  .gi-3 { grid-column: 2; grid-row: 2; }
  .gi-4 { grid-column: 1; grid-row: 3; }
  .gi-5 { grid-column: 2; grid-row: 3 / span 2; }
  .gi-6 { grid-column: 1; grid-row: 4; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 28px;
    transition: right var(--transition);
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }
  .nav__links.open { right: 0; }
  .nav__links li a { font-size: 14px; }
  .nav__cta { margin-top: 8px; }

  .about__grid,
  .why__grid,
  .locations__grid { grid-template-columns: 1fr; }

  .about__images { height: 380px; }

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

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

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 220px);
  }
  .gi-1 { grid-column: 1; grid-row: 1 / span 2; }
  .gi-2 { grid-column: 2; grid-row: 1; }
  .gi-3 { grid-column: 2; grid-row: 2; }
  .gi-4 { grid-column: 1; grid-row: 3; }
  .gi-5 { grid-column: 2; grid-row: 3 / span 2; }
  .gi-6 { grid-column: 1; grid-row: 4; }

  .footer__top { flex-direction: column; text-align: center; }
  .footer__nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .gallery__cta { flex-direction: column; align-items: center; }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5, .gi-6 {
    grid-column: 1;
    grid-row: auto;
    height: 240px;
  }
  .why__stats { grid-template-columns: 1fr 1fr; }
}
