/* ===================================
   VK NAILS SPA - PREMIUM LANDING PAGE
   La belleza que permanece
   =================================== */

/* ===================================
   CSS CUSTOM PROPERTIES
   =================================== */
:root {
  /* Colors - Negro profundo dominante */
  --color-black: #0A0A0A;
  --color-black-carbon: #1A1A1A;
  --color-gold-champagne: #D9B36A;
  --color-gold-soft: #E8D39A;
  --color-gold-antique: #A67C2E;
  --color-ivory: #F8F5EF;
  --color-gray-warm: #C8C2B8;
  --color-gray-dark: #353535;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  /*--font-sans: 'Inter', sans-serif;*/
  --font-cursive: 'Pinyon Script';
  --font-sans-modern: 'Manrope', sans-serif;
  
  /* Type Scale */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1.125rem;   /* 18px */
  --text-lg: 1.5rem;       /* 24px */
  --text-xl: 2rem;         /* 32px */
  --text-2xl: 2.5rem;      /* 40px */
  --text-3xl: 3.5rem;      /* 56px */
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --section-padding: 120px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease-out;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 4px 20px rgba(217, 179, 106, 0.3);
}

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

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

body {
  font-family: var(--font-sans-modern);
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-ivory);
  background-color: var(--color-black);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-ivory);
}

h1 {
  font-size: clamp(2.5rem, 6vw, var(--text-3xl));
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, var(--text-2xl));
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--text-lg);
}

p {
  margin-bottom: 0;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.w-full { width: 100%; }
.h-full { height: 100%; }
.text-center { text-align: center; }
.text-gold { color: var(--color-gold-champagne); }

/* ===================================
   LAYOUT CONTAINERS
   =================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--light {
  background-color: var(--color-ivory);
  color: var(--color-black);
}

.section--light h1,
.section--light h2,
.section--light h3 {
  color: var(--color-black);
}

/* Section Headers */
.section__header {
  margin-bottom: var(--space-3xl);
}

.section__header--center {
  text-align: center;
}

.section__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-champagne);
  margin-bottom: var(--space-sm);
}

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

.section__description {
  font-size: var(--text-base);
  color: var(--color-gray-warm);
  max-width: 600px;
}

.section--light .section__description {
  color: var(--color-gray-dark);
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--transition-base), backdrop-filter var(--transition-base);
}

.nav--scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-lg) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo img {
  height: 70px;
}

.btn--gradient {
  background: linear-gradient(90deg, #A67C2E 0%, #D9B36A 100%);
  color: var(--color-black);
  border: none;
  font-family: var(--font-sans-modern);
  text-align: center;
}

.btn--gradient:hover {
  background: linear-gradient(90deg, #D9B36A 0%, #E8D39A 100%);
  transform: translateY(-2px);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-family: var(--font-sans-modern);
  font-size: var(--text-base);
  font-weight: 400;
  text-align: center;
  border-radius: 2px;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-gold-champagne);
  color: var(--color-black);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background-color: var(--color-gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-ivory);
  border: 1px solid var(--color-gold-champagne);
}

.btn--secondary:hover {
  background-color: var(--color-gold-champagne);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
}

.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: var(--text-lg);
}

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

.btn__icon {
  font-size: 1.25em;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: var(--space-4xl);
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__background picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.16) 40%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-lg);
}

.hero__title {
  margin-bottom: var(--space-sm);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  font-family: var(--font-cursive);
  font-weight: 400;
  font-size: calc(var(--text-3xl) + var(--text-sm));
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, var(--text-base));
  line-height: 1.8;
  color: var(--color-gray-warm);
  margin-bottom: var(--space-2xl);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__cta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  font-family: var(--font-sans-modern);
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: rgba(217, 179, 106, 0.1);
  border: 1px solid var(--color-gold-champagne);
  border-radius: 20px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gold-champagne);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*gap: var(--space-xs);*/
  color: var(--color-gray-warm);
  font-size: var(--text-sm);
  font-family: var(--font-sans-modern);
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero__scroll:hover {
  color: var(--color-gold-champagne);
  animation-play-state: paused;
}

.hero__scroll:hover .hero__scroll-arrow {
  border-color: var(--color-gold-champagne);
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-gold-champagne);
  border-bottom: 2px solid var(--color-gold-champagne);
  transform: rotate(45deg);
}

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

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
}

.benefit-card {
  text-align: center;
  padding: var(--space-xl);
  transition: transform var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  color: var(--color-gold-champagne);
}

.benefit-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--color-ivory);
}

.benefit-card__description {
  color: var(--color-gray-warm);
  line-height: 1.8;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.service-card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.service-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 125%; /* 4:5 ratio */
  overflow: hidden;
  background-color: var(--color-gray-warm);
}

.service-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

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

.service-card__title {
  font-size: var(--text-lg);
  color: var(--color-black);
  margin-bottom: var(--space-sm);
}

.service-card__description {
  font-size: var(--text-sm);
  color: var(--color-gray-dark);
  line-height: 1.6;
}

.service-card--featured {
  grid-column: span 1;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process__timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gold-champagne);
  border: 2px solid var(--color-gold-champagne);
  border-radius: 50%;
}

.process-step__title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-ivory);
}

.process-step__description {
  color: var(--color-gray-warm);
  line-height: 1.7;
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-md);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--color-gray-warm);
  aspect-ratio: 4 / 5;
}

.gallery__item--large {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}

.gallery__item--tall {
  grid-row: span 2;
  aspect-ratio: 4 / 7;
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery__item:hover .gallery__image {
  transform: scale(1.1);
}

.gallery__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0) 0%,
    rgba(10, 10, 10, 0.3) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials__carousel {
  position: relative;
  margin-bottom: var(--space-2xl);
  min-height: 280px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all var(--transition-slow);
}

.testimonial-card--active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.testimonial-card__quote {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonial-card__quote p {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--color-ivory);
  font-style: italic;
}

.testimonial-card__quote p::before {
  content: '"';
  color: var(--color-gold-champagne);
  font-size: 2em;
  line-height: 0;
  margin-right: 0.1em;
}

.testimonial-card__quote p::after {
  content: '"';
  color: var(--color-gold-champagne);
  font-size: 2em;
  line-height: 0;
  margin-left: 0.1em;
}

.testimonial-card__author {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.testimonial-card__author strong {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-ivory);
}

.testimonial-card__author span {
  font-size: var(--text-sm);
  color: var(--color-gray-warm);
}

.testimonials__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
}

.testimonials__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-gold-champagne);
  border: 1px solid var(--color-gold-champagne);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.testimonials__btn:hover {
  background-color: var(--color-gold-champagne);
  color: var(--color-black);
  transform: scale(1.1);
}

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

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-gray-dark);
  transition: all var(--transition-base);
}

.testimonials__dot--active {
  background-color: var(--color-gold-champagne);
  width: 30px;
  border-radius: 5px;
}

/* ===================================
   LOCATION SECTION
   =================================== */
.location__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
  min-height: 480px;
}

.location__card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.location__place-img {
  width: 100%;
  flex: 1;
  min-height: 220px;
  overflow: hidden;
}

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

.location__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-lg);
}

.location__name {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-black);
}

.location__schedule-title {
  font-family: var(--font-sans-modern);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-dark);
  margin-bottom: var(--space-sm);
}

.location__schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.location__schedule-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-black);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.location__schedule-closed span:last-child {
  color: var(--color-gray-dark);
}

.location__map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
  min-height: 480px;
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-warm);
  padding-bottom: var(--space-md);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-black);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-base);
}

.faq-item__question:hover {
  color: var(--color-gold-antique);
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--color-gold-champagne);
  transition: transform var(--transition-base);
}

.faq-item--active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item--active .faq-item__answer {
  max-height: 500px;
  padding-bottom: var(--space-md);
}

.faq-item__answer p {
  color: var(--color-gray-dark);
  line-height: 1.8;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.cta__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 2;
}

.cta__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 var(--space-lg);
}

.cta__title {
  margin-bottom: var(--space-lg);
  color: var(--color-ivory);
}

.cta__subtitle {
  font-size: var(--text-base);
  color: var(--color-gray-warm);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background-color: var(--color-black-carbon);
  padding: var(--space-3xl) 0 var(--space-xl);
  border-top: 1px solid var(--color-gray-dark);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-ivory);
  margin-bottom: var(--space-sm);
}

.footer__tagline {
  color: var(--color-gold-champagne);
  font-size: var(--text-sm);
  font-style: italic;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.footer__heading {
  font-family: var(--font-sans-modern);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-ivory);
  margin-bottom: var(--space-md);
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__list li {
  font-size: var(--text-sm);
  color: var(--color-gray-warm);
}

.footer__list a:hover {
  color: var(--color-gold-champagne);
}

.footer__bottom {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-gray-dark);
}

.footer__copyright {
  font-size: var(--text-sm);
  color: var(--color-gray-warm);
}

/* ===================================
   MOBILE STICKY CTA
   =================================== */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: var(--space-md);
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.98) 0%,
    rgba(10, 10, 10, 0.95) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

/* ===================================
   MODAL
   =================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.modal--active {
  display: flex;
}

.modal__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 50px;
  height: 50px;
  font-size: 2rem;
  color: var(--color-ivory);
  background: none;
  border: 2px solid var(--color-ivory);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2001;
  transition: all var(--transition-base);
}

.modal__close:hover {
  background-color: var(--color-gold-champagne);
  color: var(--color-black);
  border-color: var(--color-gold-champagne);
  transform: rotate(90deg);
}

.modal__content {
  max-width: 90%;
  max-height: 90%;
}

.modal__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===================================
   ANIMATIONS - SCROLL REVEAL
   =================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (min-width: 768px) {
  :root {
    --section-padding: 100px;
  }
  
  .hero__cta {
    flex-direction: row;
  }
  
  .footer__content {
    grid-template-columns: 1fr 2fr;
  }
  
  .mobile-cta {
    display: none !important;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --section-padding: 120px;
  }
  
  .benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .service-card--featured {
    grid-column: span 1;
  }
  
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .process__timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile Only */
@media (max-width: 767px) {
  :root {
    --section-padding: 60px;
    --text-3xl: 2.5rem;
    --text-2xl: 2rem;
  }
  
  .hero {
    min-height: 620px;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
  }
  
  .hero__content {
    padding-bottom: var(--space-3xl);
  }
  
  .hero__image {
    object-position: center top;
  }

  .hero__cta {
  flex-direction: column;
  align-items: center;
}
  
  .hero__scroll {
    bottom: calc(var(--space-sm));
  }
  
  .section__header {
    margin-bottom: var(--space-2xl);
  }
  
  .benefits__grid,
  .process__timeline {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .location__block {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .location__place-img {
    min-height: 220px;
    flex: none;
  }
  
  .location__map,
  .location__map iframe {
    min-height: 300px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .gallery__item--large,
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 5;
  }
  
  .testimonial-card__quote p {
    font-size: var(--text-base);
  }
  
  .mobile-cta {
    display: block;
  }
  
  body {
    padding-bottom: 90px;
  }
  
  .nav__container {
    padding: var(--space-md);
  }
  
  .container {
    padding: 0 var(--space-md);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--text-sm);
  }
  
  .btn--large {
    padding: 1rem 2rem;
    font-size: var(--text-base);
  }
  
  .hero__badge {
    font-size: var(--text-xs);
    padding: 0.375rem 1rem;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero__scroll {
    animation: none;
  }
}

/* Print styles */
@media print {
  .nav,
  .mobile-cta,
  .modal,
  .hero__scroll {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}
