/* ============================================
   Beauty By Nicole — Premium Beauty Salon
   ============================================ */

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #3d2c2e;
  background: #fefcfb;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* --- VARIABLES --- */
:root {
  --pink-50: #fdf2f4;
  --pink-100: #fce4ec;
  --pink-200: #f8bbd0;
  --pink-300: #f48fb1;
  --pink-400: #f06292;
  --pink-500: #ec407a;
  --pink-600: #d81b60;
  --cream: #fefcfb;
  --nude: #f5ebe0;
  --nude-200: #eaddd0;
  --gold: #c9a96e;
  --gold-light: #e8d5b5;
  --gold-dark: #b8944f;
  --text: #3d2c2e;
  --text-light: #7a6a6c;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(61,44,46,0.06);
  --shadow-md: 0 8px 30px rgba(61,44,46,0.08);
  --shadow-lg: 0 20px 60px rgba(61,44,46,0.12);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-long: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- SKIP LINK --- */
.skip-link {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  background: var(--pink-500); color: #fff; padding: 12px 24px; z-index: 9999;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 500;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* --- LOADER --- */
#loader {
  position: fixed; inset: 0; background: var(--cream); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-spinner {
  width: 48px; height: 48px; border: 3px solid var(--nude-200);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- CONTAINER --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.3; color: var(--text); }

.section {
  padding: 100px 0;
}
.section--dark { background: #f8f4f2; }
.section__header {
  text-align: center; max-width: 640px; margin: 0 auto 60px;
}
.section__label {
  display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
  position: relative;
}
.section__label::after {
  content: ''; display: block; width: 30px; height: 2px;
  background: var(--gold); margin: 12px auto 0;
}
.section__title {
  font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 600; margin-bottom: 16px;
}
.section__desc { color: var(--text-light); font-size: 1.1rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px; font-size: 0.95rem;
  font-weight: 500; letter-spacing: 0.3px; transition: var(--transition);
  border: 2px solid transparent; position: relative; overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  color: #fff; box-shadow: 0 4px 15px rgba(236,64,122,0.3);
}
.btn--primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(236,64,122,0.4);
}
.btn--outline {
  background: transparent; border-color: var(--gold); color: var(--gold-dark);
}
.btn--outline:hover {
  background: var(--gold); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-gold);
}
.btn--lg { padding: 16px 40px; font-size: 1.05rem; }
.btn:active { transform: translateY(0) scale(0.98); }

/* --- HEADER / NAV --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--transition);
}
.header.scrolled { background: rgba(254,252,251,0.95); backdrop-filter: blur(20px); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  display: flex; align-items: center; gap: 10px; font-family: var(--font-serif);
}
.logo__icon { font-size: 1.6rem; color: var(--gold); }
.logo__text { font-size: 1.3rem; font-weight: 600; color: var(--text); }
.logo--footer .logo__text { color: var(--white); }

.nav__list { display: flex; align-items: center; gap: 8px; }
.nav__link {
  padding: 8px 16px; font-size: 0.9rem; font-weight: 500;
  color: var(--text); border-radius: 50px; transition: var(--transition);
  position: relative;
}
.nav__link:hover { background: var(--pink-100); color: var(--pink-500); }
.nav__cta { padding: 10px 24px; font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; z-index: 1001; width: 36px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition); transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- HERO --- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; background: var(--cream); overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(248,187,208,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(252,228,236,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto;
}
.hero__badge {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); padding: 8px 20px;
  border: 1px solid var(--gold-light); border-radius: 50px; margin-bottom: 32px;
  animation: fadeDown 0.8s ease forwards;
}
.hero__title {
  font-size: clamp(3rem, 10vw, 5.5rem); font-weight: 700;
  color: var(--text); line-height: 1.05; margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.hero__tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-light);
  margin-bottom: 40px; font-weight: 300;
  animation: fadeUp 0.8s ease 0.35s forwards;
  opacity: 0;
}
.hero__tagline .emoji { font-style: normal; }
.hero__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.5s forwards;
  opacity: 0;
}
.hero__social {
  display: flex; gap: 20px; justify-content: center; margin-top: 60px;
  animation: fadeUp 0.8s ease 0.65s forwards;
  opacity: 0;
}
.hero__social a {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--nude-200); color: var(--text-light);
  font-size: 1.2rem; transition: var(--transition);
}
.hero__social a:hover {
  background: var(--pink-500); color: #fff; border-color: var(--pink-500); transform: translateY(-3px);
}

/* --- ABOUT --- */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__content .about__text { color: var(--text-light); margin-bottom: 16px; font-size: 1.05rem; }
.about__stats { display: flex; gap: 40px; margin-top: 32px; }
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600; color: var(--pink-500); }
.stat__label { font-size: 0.85rem; color: var(--text-light); }
.about__image-placeholder {
  width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pink-100), var(--nude));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(201,169,110,0.3); position: relative;
  box-shadow: var(--shadow-lg);
}
.about__image-frame { position: relative; }
.about__image-frame::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 100%; height: 100%; border: 2px solid var(--gold-light);
  border-radius: var(--radius-lg); z-index: -1;
}

/* --- SERVICES --- */
.services { background: #f8f4f2; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); padding: 36px 28px; border-radius: var(--radius-md);
  text-align: center; transition: var(--transition);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.03);
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--gold-light);
}
.service-card__icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--pink-100), var(--nude));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--pink-500); transition: var(--transition);
}
.service-card:hover .service-card__icon { background: linear-gradient(135deg, var(--pink-400), var(--pink-500)); color: #fff; }
.service-card__title { font-size: 1.2rem; margin-bottom: 12px; }
.service-card__desc { font-size: 0.95rem; color: var(--text-light); }
.services__cta { text-align: center; margin-top: 48px; }

/* --- GALLERY --- */
.gallery { background: var(--white); }
.gallery__masonry {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.gallery__item { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.gallery__item-inner {
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  font-size: 3rem; color: rgba(255,255,255,0.8); cursor: pointer;
  transition: var(--transition); position: relative; overflow: hidden;
  background-size: cover !important; background-position: center !important;
  background-blend-mode: overlay !important;
}
.gallery__item-inner::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: var(--transition);
}
.gallery__item-inner:hover { transform: scale(1.03); }
.gallery__item-inner:hover::after { background: rgba(0,0,0,0.1); }
.gallery__item-inner:hover i { transform: scale(1.1); }
.gallery__item-inner i { transition: var(--transition); position: relative; z-index: 1; }
.gallery__label {
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.2); padding: 4px 14px; border-radius: 20px;
  position: relative; z-index: 1;
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item--wide .gallery__item-inner { aspect-ratio: 2/1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--tall .gallery__item-inner { aspect-ratio: 1/2; }
.gallery__cta { text-align: center; margin-top: 48px; }
.gallery__cta p { color: var(--text-light); margin-bottom: 16px; }

/* --- TESTIMONIALS --- */
.testimonials { background: linear-gradient(135deg, #fdf2f4, #fefcfb); }
.testimonials__slider { max-width: 700px; margin: 0 auto; position: relative; overflow: hidden; }
.testimonials__track {
  display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%; padding: 40px; text-align: center; flex-shrink: 0;
}
.testimonial-card__stars { color: var(--gold); margin-bottom: 20px; font-size: 1.1rem; }
.testimonial-card blockquote {
  font-size: 1.15rem; font-style: italic; color: var(--text);
  line-height: 1.8; margin-bottom: 24px; font-weight: 400;
}
.testimonial-card figcaption { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-card__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1.1rem; color: #fff; flex-shrink: 0;
}
.testimonial-card cite { font-style: normal; font-weight: 600; font-size: 0.95rem; display: block; }
.testimonial-card figcaption span { font-size: 0.8rem; color: var(--text-light); }

.testimonials__controls {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 8px;
}
.testimonials__btn {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--text); font-size: 0.9rem;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.testimonials__btn:hover { background: var(--pink-500); color: #fff; }
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dots button {
  width: 10px; height: 10px; border-radius: 50%; background: var(--nude-200);
  transition: var(--transition);
}
.testimonials__dots button.active { background: var(--pink-400); width: 28px; border-radius: 5px; }

/* --- FAQ --- */
.faq { background: var(--white); }
.faq__list { max-width: 740px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--nude-200); transition: var(--transition);
}
.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-weight: 500; font-size: 1.05rem; cursor: pointer;
  transition: var(--transition);
}
.faq__question i { font-size: 0.85rem; color: var(--gold); transition: var(--transition); }
.faq__item[open] .faq__question i { transform: rotate(180deg); }
.faq__question:hover { color: var(--pink-500); }
.faq__answer {
  padding: 0 0 24px; color: var(--text-light); line-height: 1.8;
  animation: fadeUp 0.3s ease;
}
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* --- INSTAGRAM FEED --- */
.instagram-feed { background: #f8f4f2; }
.instagram__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  max-width: 900px; margin: 0 auto;
}
.instagram__item { border-radius: var(--radius-sm); overflow: hidden; }
.instagram__item-inner {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(255,255,255,0.7); transition: var(--transition);
}
.instagram__item-inner:hover { transform: scale(1.05); color: #fff; }
.instagram__cta { text-align: center; margin-top: 40px; }

/* --- CONTACT --- */
.contact { background: var(--white); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact__info { display: grid; gap: 20px; }
.contact__card {
  background: #f8f4f2; padding: 24px; border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact__card:hover { box-shadow: var(--shadow-sm); }
.contact__card i { font-size: 1.3rem; color: var(--pink-500); margin-bottom: 12px; }
.contact__card h3 { font-size: 1rem; margin-bottom: 8px; }
.contact__card p, .contact__card a { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }
.contact__card a:hover { color: var(--pink-500); }
.contact__wa-link { display: inline-block; margin-top: 8px; color: #25D366 !important; font-weight: 500; }
.contact__wa-link i { font-size: 1rem; margin-right: 4px; }

.contact__hours li { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; border-bottom: 1px solid var(--nude-200); }
.contact__hours li:last-child { border-bottom: none; }
.contact__hours .closed { color: #ef5350; }

.contact__social { display: flex; gap: 12px; }
.contact__social-link {
  width: 44px; height: 44px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); font-size: 1.1rem; transition: var(--transition);
}
.contact__social-link:hover { background: var(--pink-500); color: #fff; }

/* Contact Form */
.contact__form-wrapper {
  background: #f8f4f2; padding: 40px; border-radius: var(--radius-lg);
}
.form__group { margin-bottom: 20px; }
.form__label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.form__input {
  width: 100%; padding: 14px 18px; border: 2px solid transparent; border-radius: var(--radius-sm);
  background: var(--white); font-size: 0.95rem; font-family: inherit;
  transition: var(--transition); outline: none; color: var(--text);
}
.form__input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,169,110,0.1); }
.form__input::placeholder { color: #b5a5a7; }
.form__textarea { resize: vertical; min-height: 120px; }
.form__submit { width: 100%; justify-content: center; }
.form__success {
  text-align: center; padding: 40px 20px; display: none;
}
.form__success i { font-size: 3rem; color: #66bb6a; margin-bottom: 16px; }
.form__success h3 { margin-bottom: 8px; }
.form__success p { color: var(--text-light); }

/* --- MAP --- */
.map__container iframe { display: block; }
.map { line-height: 0; }

/* --- FOOTER --- */
.footer {
  background: #2a1f20; color: rgba(255,255,255,0.7); padding: 80px 0 0;
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer__brand p { margin: 16px 0; font-size: 0.95rem; }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 1rem;
}
.footer__social a:hover { background: var(--pink-500); border-color: var(--pink-500); color: #fff; }
.footer__links h4, .footer__contact h4 {
  font-family: var(--font-serif); color: var(--white); font-size: 1.1rem; margin-bottom: 20px;
}
.footer__links li, .footer__contact li { margin-bottom: 10px; }
.footer__links a, .footer__contact a {
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition);
}
.footer__links a:hover, .footer__contact a:hover { color: var(--gold); }
.footer__contact li:last-child { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer__bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { font-size: 0.85rem; }
.footer__credit .emoji { font-style: normal; }

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%; background: var(--pink-500);
  color: #fff; font-size: 1.1rem; box-shadow: 0 4px 15px rgba(236,64,122,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); opacity: 0; visibility: hidden; transform: translateY(20px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--pink-600); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(236,64,122,0.4); }

/* --- REVEAL ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__image { order: -1; max-width: 400px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery__masonry { grid-template-columns: repeat(3, 1fr); }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
}

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

  .hamburger { display: flex; }

  .nav {
    position: fixed; inset: 0; background: rgba(254,252,251,0.98);
    backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition); z-index: 1000;
  }
  .nav.active { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 12px; }
  .nav__link { font-size: 1.2rem; padding: 12px 24px; }
  .nav__cta { font-size: 1rem; padding: 14px 32px; }

  .about__stats { gap: 24px; flex-wrap: wrap; justify-content: center; }

  .gallery__masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item--wide .gallery__item-inner { aspect-ratio: 1; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--tall .gallery__item-inner { aspect-ratio: 1; }

  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .contact__form-wrapper { padding: 24px; }
  .hero__title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery__masonry { gap: 8px; }
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 100px 0 60px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px; }
}

/* --- SELECTION --- */
::selection { background: var(--pink-200); color: var(--text); }
::-moz-selection { background: var(--pink-200); color: var(--text); }

/* --- ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible {
  outline: 3px solid var(--pink-400); outline-offset: 3px; border-radius: 4px;
}


/* --- Responsive Media Queries (Mobile Friendly) --- */
@media (max-width: 992px) {
    .hero__content h1 { font-size: 3rem; }
    .services__grid, .gallery__grid, .footer__grid { grid-template-columns: repeat(2, 1fr); }
    .about__container { flex-direction: column; }
}

@media (max-width: 768px) {
    .header__nav { display: none; }
    .header__btn { display: none; }
    
    .hero__content h1 { font-size: 2.5rem; }
    .services__grid, .gallery__grid, .footer__grid { grid-template-columns: 1fr; }
    
    .section { padding: 4rem 0; }
    .container { padding: 0 1rem; }
    
    .hero { min-height: auto; padding: 6rem 0; }
}

@media (max-width: 480px) {
    .hero__content h1 { font-size: 2rem; }
}
