/* =============================================
   ANGEL'S NAILS - STYLES
   Color Palette: White & Rose Gold
   ============================================= */

:root {
  --rose-gold: #b76e79;
  --rose-gold-light: #d4a0a7;
  --rose-gold-dark: #9c5964;
  --rose-gold-pale: #f5e6e8;
  --rose-gold-soft: #eddde0;
  --white: #ffffff;
  --off-white: #fdfaf9;
  --light-gray: #f7f4f3;
  --text-dark: #2c2224;
  --text-mid: #6b5458;
  --text-light: #a08086;
  --border: #e8d5d8;
  --shadow: rgba(183, 110, 121, 0.15);
  --shadow-dark: rgba(44, 34, 36, 0.1);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 400; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; }

p { font-size: 0.95rem; color: var(--text-mid); }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header .section-desc { max-width: 560px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
  background: var(--rose-gold-pale);
  padding: 6px 16px;
  border-radius: 50px;
}

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  border-color: var(--rose-gold);
}

.btn-primary:hover {
  background: var(--rose-gold-dark);
  border-color: var(--rose-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* =============================================
   NAVIGATION
   ============================================= */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 20px 0;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 2px 30px var(--shadow-dark);
}

#navbar.scrolled .logo,
#navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

#navbar.scrolled .logo span { color: var(--rose-gold); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo span { color: var(--rose-gold-light); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose-gold);
  transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--rose-gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

#navbar.scrolled .hamburger span { background: var(--text-dark); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 20px 24px;
  box-shadow: 0 10px 30px var(--shadow-dark);
}

.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--rose-gold); padding-left: 8px; }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */

.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2c1a1d 0%, #4a2830 40%, #6b3a43 70%, #8c5460 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(183, 110, 121, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 160, 167, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(156, 89, 100, 0.25) 0%, transparent 40%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 15, 18, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}

.hero-sub {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 16px;
  font-weight: 400;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 48px;
  font-style: italic;
  font-family: var(--font-heading);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* =============================================
   ABOUT
   ============================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--rose-gold-soft);
  box-shadow: 0 20px 60px var(--shadow);
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-gold-soft), var(--rose-gold-pale));
}

.about-img-placeholder i {
  font-size: 5rem;
  color: var(--rose-gold);
  opacity: 0.5;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--rose-gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose-gold);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   SERVICES
   ============================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--rose-gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow);
  border-color: var(--rose-gold-pale);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.3rem;
  color: var(--rose-gold);
}

.service-card:hover .service-icon {
  background: var(--rose-gold);
}

.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 { margin-bottom: 12px; color: var(--text-dark); }
.service-card p { font-size: 0.88rem; margin-bottom: 20px; }

.price {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose-gold);
  background: var(--rose-gold-pale);
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* =============================================
   GALLERY
   ============================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 16px;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--rose-gold-soft), var(--rose-gold-pale));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  border: 2px dashed var(--rose-gold-light);
}

.gallery-placeholder:hover {
  background: linear-gradient(135deg, var(--rose-gold-pale), var(--rose-gold-soft));
  transform: scale(1.02);
}

.gallery-placeholder i {
  font-size: 2rem;
  color: var(--rose-gold);
  opacity: 0.6;
}

.gallery-placeholder span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-gold);
  opacity: 0.8;
}

.gallery-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

/* =============================================
   REVIEWS
   ============================================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--rose-gold-pale);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px var(--shadow);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-stars i { color: #f4b942; font-size: 0.85rem; }

.review-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.reviewer span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--rose-gold-pale);
  border-radius: 50px;
  padding: 14px 28px;
  max-width: 400px;
  margin: 0 auto;
}

.reviews-badge i { color: #f4b942; font-size: 1.1rem; }
.reviews-badge span { font-size: 0.9rem; color: var(--text-mid); }

/* =============================================
   FAQ
   ============================================= */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item.open { border-color: var(--rose-gold-light); box-shadow: 0 4px 20px var(--shadow); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover { color: var(--rose-gold); }
.faq-question i { color: var(--rose-gold); font-size: 0.8rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* =============================================
   BOOKING FORM
   ============================================= */

.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 10px 50px var(--shadow-dark);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

input, select, textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--rose-gold);
  box-shadow: 0 0 0 3px var(--rose-gold-pale);
}

input::placeholder, textarea::placeholder { color: var(--text-light); }

select { cursor: pointer; }
textarea { resize: vertical; }

.form-success {
  display: none;
  text-align: center;
  color: var(--rose-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 20px;
  padding: 16px;
  background: var(--rose-gold-pale);
  border-radius: var(--radius);
}

.form-success i { margin-right: 8px; }

/* =============================================
   CONTACT
   ============================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rose-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i { color: var(--rose-gold); font-size: 1rem; }

.contact-item h4 {
  margin-bottom: 4px;
  color: var(--text-dark);
  font-size: 0.85rem;
}

.contact-item p { font-size: 0.9rem; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-gold);
  transition: var(--transition);
  font-size: 0.95rem;
}

.social-link:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow);
}

.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form .form-group { margin-bottom: 20px; }

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { color: var(--white); margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 12px; }

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--rose-gold-light); padding-left: 6px; }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact i { color: var(--rose-gold-light); width: 16px; }

.footer-contact .social-links { margin-top: 20px; }

.footer-contact .social-link {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
}

.footer-contact .social-link:hover {
  background: var(--rose-gold);
  color: var(--white);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p { font-size: 0.82rem; }

/* =============================================
   BACK TO TOP
   ============================================= */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--rose-gold-dark);
  transform: translateY(-3px);
}

/* =============================================
   ANIMATIONS
   ============================================= */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-image { max-width: 480px; margin: 0 auto; }
  .about-badge { right: -10px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 70px; }
  .section { padding: 70px 0; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-scroll { display: none; }

  /* About */
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .stat { min-width: 30%; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  /* Contact */
  .contact-form { padding: 28px 20px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .about-badge { right: 0; bottom: -15px; }
  .back-to-top { right: 16px; bottom: 20px; }
}
