/* ============================================
   MAGIC STUDIO – Main Stylesheet
   Aesthetic: Refined luxury, soft femininity
   Fonts: Cormorant Garamond + DM Sans
   ============================================ */

:root {
  --rose: #e8b4b8;
  --rose-light: #f5dfe1;
  --rose-pale: #fdf0f1;
  --rose-deep: #c47d84;
  --blush: #f9eff0;
  --mauve: #9b7d80;
  --dark: #2a1f20;
  --mid: #5a4345;
  --light-text: #9b8486;
  --white: #ffffff;
  --off-white: #fefcfc;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --shadow: 0 4px 32px rgba(197, 110, 118, 0.1);
  --shadow-md: 0 8px 48px rgba(197, 110, 118, 0.15);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}

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

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(254, 252, 252, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 180, 184, 0.2);
  transition: padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  padding: 0.65rem 2.5rem;
  box-shadow: var(--shadow);
}

.nav-logo { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--mid);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose-deep);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--rose-deep); }

.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2rem;
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--rose-deep) !important; }
.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- BLOBS ---- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--rose-light), transparent 70%);
  top: -100px; right: -150px;
}

.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--rose), transparent 70%);
  bottom: 0; left: -100px;
  opacity: 0.2;
}

.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #e8c4c8, transparent 70%);
  top: 40%; left: 20%;
  opacity: 0.15;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2.5rem 4rem;
  background-color: var(--rose-pale);
  background-image: url('fondo.jpg');
  background-size: cover;
  background-position: center 30%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253, 240, 241, 0.78);
  z-index: 0;
}

.hero-bg, .hero-content, .hero-scroll-hint {
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) { animation-delay: 0.5s; }

.hero-title .italic {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-text);
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.scroll-line {
  width: 40px; height: 1px;
  background: var(--rose);
  animation: scrollPulse 2s infinite;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 125, 132, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(42, 31, 32, 0.2);
}

.btn-ghost:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

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

/* ---- SERVICES SECTION ---- */
.services-section {
  padding: 7rem 0;
  background: var(--white);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(232, 180, 184, 0.3);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 180, 184, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: rgba(232, 180, 184, 0.2);
  padding: 0.3rem 0.85rem;
  border-radius: 1rem;
}

/* ---- WHY SECTION ---- */
.why-section {
  padding: 7rem 0;
  background: var(--rose-pale);
  overflow: hidden;
}

.why-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-body {
  color: var(--mid);
  margin: 1.5rem 0 2rem;
  line-height: 1.8;
  font-weight: 300;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--mid);
}

.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose-deep);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card-stack {
  position: relative;
  height: 420px;
}

.why-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 180, 184, 0.2);
  transition: transform var(--transition);
  min-width: 220px;
}

.why-card:hover { transform: scale(1.03) !important; }

.why-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0.5rem 0 0.25rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--mid);
}

.wc-icon {
  font-size: 1.5rem;
}

.wc-1 { top: 0; left: 0; transform: rotate(-2deg); }
.wc-2 { top: 120px; right: 0; transform: rotate(2deg); z-index: 1; }
.wc-3 { bottom: 20px; left: 40px; transform: rotate(-1deg); }

/* ---- CTA STRIP ---- */
.cta-strip {
  padding: 4rem 0;
  background: var(--dark);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--white);
}

.cta-strip p {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-top: 0.25rem;
}

.cta-strip-actions {
  display: flex;
  gap: 1rem;
}

/* ---- INSTAGRAM SECTION ---- */
.insta-section {
  padding: 7rem 0;
  background: var(--white);
}

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

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  display: block;
  border: 1px solid rgba(232, 180, 184, 0.2);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 31, 32, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.insta-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.insta-item:hover img { transform: scale(1.06); }
.insta-item:hover .insta-overlay { opacity: 1; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--rose-pale);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--dark);
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.page-hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--mid);
  position: relative;
  z-index: 1;
}

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 7rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--blush);
  border: 1px solid rgba(232, 180, 184, 0.3);
}

.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.about-img-placeholder .big-emoji {
  font-size: 4rem;
}

.about-img-placeholder p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--rose-deep);
}

.about-float-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
}

.badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.about-text p {
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.value-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ---- SERVICES DETAIL ---- */
.services-detail-section {
  padding: 7rem 0;
  background: var(--rose-pale);
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(232, 180, 184, 0.2);
  transition: all var(--transition);
}

.service-category:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(232, 180, 184, 0.3);
}

.cat-icon { font-size: 1.5rem; }

.cat-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(232, 180, 184, 0.15);
}

.service-list li:last-child { border-bottom: none; }

.service-list li::before {
  content: '✦';
  font-size: 0.5rem;
  color: var(--rose);
  flex-shrink: 0;
}

.services-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px dashed rgba(232, 180, 184, 0.5);
}

.services-note p {
  color: var(--mid);
  font-size: 0.95rem;
}

.services-note a {
  color: var(--rose-deep);
  font-weight: 500;
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  padding: 7rem 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-body {
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  margin: 1.5rem 0 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-item-icon {
  font-size: 1.5rem;
  width: 48px; height: 48px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--rose-deep);
}

.contact-social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--blush);
  color: var(--dark);
  border: 1px solid rgba(232, 180, 184, 0.4);
  transition: all var(--transition);
}

.social-pill:hover {
  background: var(--rose-light);
  border-color: var(--rose);
  transform: translateY(-2px);
}

/* ---- FORM ---- */
.contact-form-wrap {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(232, 180, 184, 0.3);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(232, 180, 184, 0.4);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(196, 125, 132, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--rose-deep);
}

.form-success span { font-size: 3rem; display: block; margin-bottom: 1rem; }

/* ---- MAP SECTION ---- */
.map-section {
  padding: 5rem 0;
  background: var(--rose-pale);
}

.map-header {
  text-align: center;
  margin-bottom: 2rem;
}

.map-header h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
}

.map-header p {
  color: var(--mid);
  font-size: 0.9rem;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 180, 184, 0.3);
}

/* ---- RESERVE PAGE ---- */
.reserve-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--rose-pale);
  padding: 8rem 2rem 4rem;
}

.reserve-bg {
  position: absolute;
  inset: 0;
}

.reserve-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.reserve-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3.5rem 3rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232, 180, 184, 0.3);
}

.reserve-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.reserve-card h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.reserve-sub {
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.reserve-body {
  font-size: 0.9rem;
  color: var(--light-text);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.reserve-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.reserve-btn {
  justify-content: center;
}

.reserve-note {
  font-size: 0.8rem;
  color: var(--light-text);
  font-style: italic;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.875rem;
  font-weight: 300;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 300;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--rose); }

.footer-contact p {
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.footer-contact a:hover { color: var(--rose); }

.footer-bottom {
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.7; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(0.5); opacity: 0.5; }
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

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

/* ---- MOBILE NAV OPEN ---- */
body.nav-open .nav-links {
  transform: translateX(0) !important;
}

/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 1.5rem; }

  /* Why section */
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-card-stack { height: 300px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame { aspect-ratio: 16/9; max-height: 420px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }

  /* Services */
  .services-categories { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {

  /* --- NAV --- */
  .nav { padding: 0.875rem 1.25rem; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(280px, 85vw);
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2rem 2rem 2.5rem;
    gap: 2rem;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 200;
  }
  .nav-links a { font-size: 1.15rem; }
  .nav-links .nav-cta {
    padding: 0.6rem 1.5rem !important;
    font-size: 1rem !important;
  }
  .nav-burger { display: flex; z-index: 300; }
  .logo-img { height: 40px; }

  /* --- HERO --- */
  .hero { padding: 6.5rem 1.25rem 3rem; min-height: 90vh; }
  .hero-title { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-scroll-hint { left: 1.25rem; }

  /* --- SECTIONS PADDING --- */
  .services-section,
  .why-section,
  .insta-section,
  .about-section,
  .services-detail-section,
  .contact-section { padding: 4rem 0; }
  .cta-strip { padding: 3rem 0; }
  .map-section { padding: 3rem 0; }

  /* --- SECTION TITLES --- */
  .section-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }

  /* --- SERVICES GRID --- */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.75rem 1.5rem; }

  /* --- WHY SECTION --- */
  .why-inner { padding: 0 1.25rem; }
  .why-card-stack { height: auto; display: flex; flex-direction: column; gap: 1rem; }
  .why-card { position: relative; transform: none !important; top: auto; right: auto; bottom: auto; left: auto; min-width: unset; }
  .wc-1, .wc-2, .wc-3 { display: block; }

  /* --- INSTAGRAM GRID --- */
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }

  /* --- CTA STRIP --- */
  .cta-strip-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cta-strip-actions { justify-content: center; flex-wrap: wrap; }
  .cta-strip h3 { font-size: 1.75rem; }

  /* --- ABOUT --- */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-frame { aspect-ratio: 4/3; max-height: 300px; }
  .about-float-badge { width: 80px; height: 80px; bottom: -1rem; right: 0.5rem; }
  .badge-number { font-size: 1.4rem; }
  .badge-text { font-size: 0.6rem; }

  /* --- SERVICES CATEGORIES --- */
  .services-categories { grid-template-columns: 1fr; gap: 1rem; }

  /* --- CONTACT --- */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .contact-social-row { flex-wrap: wrap; gap: 0.6rem; }

  /* --- PAGE HERO --- */
  .page-hero { padding: 7rem 1.25rem 3.5rem; }
  .page-hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }

  /* --- RESERVE --- */
  .reserve-section { padding: 6rem 1.25rem 3rem; }
  .reserve-card { padding: 2rem 1.25rem; }
  .reserve-options { gap: 0.75rem; }

  /* --- FOOTER --- */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding: 1.25rem 1.25rem; font-size: 0.75rem; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================= */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .hero { padding: 6rem 1rem 2.5rem; }
  .hero-title { font-size: clamp(2.75rem, 18vw, 4rem); }
  .hero-eyebrow { font-size: 0.7rem; }

  .services-section,
  .why-section,
  .insta-section,
  .about-section,
  .services-detail-section,
  .contact-section { padding: 3rem 0; }

  .section-header { margin-bottom: 2.5rem; }
  .service-card { padding: 1.5rem 1.25rem; }
  .service-icon { font-size: 2rem; }

  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }

  .btn { padding: 0.75rem 1.4rem; font-size: 0.82rem; }

  .about-img-frame { aspect-ratio: 1/1; max-height: 260px; }

  .contact-form-wrap { padding: 1.5rem 1rem; }
  .form-group { margin-bottom: 1.1rem; }

  .social-pill { padding: 0.5rem 1rem; font-size: 0.8rem; }

  .reserve-card { padding: 1.75rem 1rem; }
  .reserve-card h1 { font-size: 2.25rem; }

  .map-frame iframe { height: 280px; }

  .footer-inner { gap: 1.5rem; }
  .footer-logo { height: 38px; }

  .page-hero { padding: 6.5rem 1rem 3rem; }
  .page-hero-title { font-size: clamp(2.25rem, 13vw, 3.5rem); }
}
