/* ============================================================
   TRUPTI GANDHI — Makeup · Mehandi · Nails
   Luxury Bridal Aesthetic | Rose Gold + Deep Brown + Cream
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500&family=Pinyon+Script&display=swap");

/* ---- DESIGN TOKENS ---- */
:root {
  --brown:       #3E1F0C;
  --brown-mid:   #6B3A2A;
  --gold:        #C5A059;
  --gold-light:  #E8CFA0;
  --rose:        #E8B4A0;
  --cream:       #FDF8F2;
  --cream-2:     #F5EFE6;
  --white:       #FFFFFF;
  --text:        #2A1208;
  --text-light:  #7A5C50;
  --shadow-sm:   0 4px 20px rgba(62,31,12,0.08);
  --shadow-md:   0 10px 40px rgba(62,31,12,0.12);
  --shadow-lg:   0 20px 60px rgba(62,31,12,0.18);
  --radius:      20px;
  --max:         1200px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { width:100%; display:block; }
a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  outline: none;
  border: none;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, .nav__logo, .footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}
em { font-style: italic; color: var(--gold); }

/* ---- SCROLL ANIMATIONS ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 0.8s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: revealLeft 0.9s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  animation: revealRight 0.9s var(--ease) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes revealUp    { to { opacity:1; transform:translateY(0); } }
@keyframes revealLeft  { to { opacity:1; transform:translateX(0); } }
@keyframes revealRight { to { opacity:1; transform:translateX(0); } }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s, left 0.12s, top 0.12s;
  opacity: 0.6;
}

/* ---- LOADER ---- */
.loader {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 10000;
  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__inner { text-align: center; }
.loader__script {
  font-family: 'Pinyon Script', cursive;
  font-size: 3.5rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease forwards;
}
.loader__bar {
  width: 180px;
  height: 2px;
  background: var(--cream-2);
  border-radius: 2px;
  overflow: hidden;
  margin: auto;
}
.loader__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  animation: fill 1.8s ease forwards;
}
@keyframes fill { to { width: 100%; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(62,31,12,0.25);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(62,31,12,0.35);
}
.btn--outline {
  border: 1.5px solid var(--brown);
  color: var(--brown);
  background: transparent;
}
.btn--outline:hover {
  background: var(--brown);
  color: var(--white);
}
.full-width { width: 100%; justify-content: center; }

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(253,248,242,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197,160,89,0.15);
  transition: padding 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  padding: 0.7rem 2.5rem;
  box-shadow: var(--shadow-sm);
}
.nav__logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
}
.nav__logo em { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding-bottom: 3px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link.active-link::after { width: 100%; }
.nav__link:hover, .nav__link.active-link { color: var(--brown); }
.nav__cta {
  padding: 0.6rem 1.6rem;
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  color: var(--white);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(62,31,12,0.2);
  transition: all 0.3s var(--ease);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(62,31,12,0.3); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 901;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mobile-overlay {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-overlay ul { display: flex; flex-direction: column; align-items: center; gap: 2rem; margin-bottom: 3rem; }
.mobile-overlay a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--brown);
  transition: color 0.3s;
}
.mobile-overlay a:hover { color: var(--gold); }
.mob-social { display: flex; gap: 1.5rem; }
.mob-social a { font-size: 1.6rem; color: var(--brown-mid); }
.mob-social a:hover { color: var(--gold); }

/* ---- CONTAINER ---- */
.container { max-width: var(--max); margin: auto; padding: 0 1.5rem; }
.section { padding: 7rem 0; }
.text-center { text-align: center; }

/* ---- SECTION LABELS & TITLES ---- */
.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin-bottom: 1rem;
}
.section__sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 4vw 4rem;
  position: relative;
  overflow: hidden;
  gap: 3rem;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* Glowing orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: drift 8s ease-in-out infinite alternate;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold-light), transparent);
  top: -100px; right: -100px;
}
.hero__orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--rose), transparent);
  bottom: -80px; left: -80px;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold), transparent);
  top: 50%; left: 30%;
  opacity: 0.2;
  animation-delay: -5s;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -30px) scale(1.1); }
}

/* Falling petals */
.hero__petals { position: absolute; inset: 0; pointer-events: none; }
.petal {
  position: absolute;
  top: -20px;
  left: var(--x);
  width: 10px; height: 10px;
  background: var(--rose);
  border-radius: 0 80% 0 80%;
  opacity: 0.5;
  animation: fall 6s linear infinite;
  animation-delay: var(--d);
  transform: scale(var(--s));
}
@keyframes fall {
  from { top: -20px; transform: rotate(0deg) scale(var(--s)); opacity: 0.6; }
  to   { top: 110vh; transform: rotate(360deg) scale(var(--s)); opacity: 0; }
}

/* Hero Content */
.hero__content {
  flex: 1;
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.hero__title {
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: var(--brown);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { text-align: center; }
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brown);
}
.stat span { font-size: 1.2rem; color: var(--gold); font-weight: 600; }
.stat p { font-size: 0.8rem; color: var(--text-light); margin-top: 0.2rem; }
.stat__divider {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
}

/* Hero Image */
.hero__image {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}
.hero__frame {
  position: relative;
  width: 420px;
  max-width: 90vw;
}
.hero__frame img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 220px 220px 30px 30px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.hero__frame-deco {
  position: absolute;
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  border-radius: 4px;
}
.hero__frame-deco--tl { top: -20px; left: -20px; border-right: none; border-bottom: none; }
.hero__frame-deco--br { bottom: -20px; right: -20px; border-left: none; border-top: none; }

.hero__badge {
  position: absolute;
  bottom: 60px; left: -30px;
  background: var(--white);
  border-radius: 50px;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-light);
}
.hero__badge i { font-size: 1.4rem; color: var(--gold); }
.hero__badge span { font-size: 0.8rem; font-weight: 500; color: var(--brown); line-height: 1.4; }

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.2); }
}

/* ---- TICKER ---- */
.ticker {
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 1px;
}
.ticker__dot { color: var(--gold); font-size: 0.7rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- ABOUT ---- */
.about { background: var(--cream-2); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__img-wrap { position: relative; padding: 1.5rem; }
.about__img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 30px 30px 100px 30px;
  box-shadow: var(--shadow-lg);
}
.about__img-accent {
  position: absolute;
  top: 0; left: 0;
  width: 65%; height: 65%;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 20px 0 0 0;
  pointer-events: none;
}
.about__years {
  position: absolute;
  bottom: 50px; right: -10px;
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  color: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.years__big {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}
.years__text { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.4; }
.about__desc {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.about__desc strong { color: var(--brown); }
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0;
}
.about__tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--white);
  border: 1px solid var(--gold-light);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--brown);
}
.about__tags span i { color: var(--gold); }
.about__socials { display: flex; gap: 1rem; flex-wrap: wrap; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--brown-mid);
  font-weight: 500;
}
.social-pill:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ---- SERVICES ---- */
.services {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.services__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  color: rgba(197,160,89,0.06);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.service-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-2), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  color: var(--white);
}
.service-card__num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(197,160,89,0.12);
}
.service-card h3 {
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.service-card__hover-bar {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 3px;
  transition: width 0.4s var(--ease);
}
.service-card:hover .service-card__hover-bar { width: 100%; }

/* ---- PACKAGES ---- */
.packages { background: var(--cream-2); }
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.pkg-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.pkg-card--featured {
  background: linear-gradient(145deg, var(--brown) 0%, #5C2D1A 100%);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  border: none;
}
.pkg-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.pkg-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #B8873A);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}
.pkg-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.pkg-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.pkg-card--featured .pkg-card__icon { background: rgba(255,255,255,0.12); color: var(--gold-light); }
.pkg-card__top h3 { font-size: 1.3rem; color: var(--brown); }
.pkg-card--featured .pkg-card__top h3 { color: var(--white); }
.pkg-card__top p { font-size: 0.82rem; color: var(--text-light); }
.pkg-card--featured .pkg-card__top p { color: rgba(255,255,255,0.6); }
.pkg-card__list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.pkg-card__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.pkg-card--featured .pkg-card__list li { color: rgba(255,255,255,0.75); }
.pkg-card__list li i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.pkg-card--featured .pkg-card__list li i { color: var(--gold-light); }
.pkg-card__btn {
  display: block;
  text-align: center;
  padding: 0.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(62,31,12,0.2);
  transition: all 0.3s var(--ease);
}
.pkg-card--featured .pkg-card__btn {
  background: var(--gold);
  box-shadow: 0 4px 14px rgba(197,160,89,0.4);
}
.pkg-card__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(62,31,12,0.3); }

/* ---- TESTIMONIALS ---- */
.testi { background: var(--cream); }
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
}
.testi-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.testi-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}
.testi-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-card p::before { content: '"'; color: var(--gold); font-size: 1.5rem; font-style: normal; }
.testi-card__author { display: flex; align-items: center; gap: 1rem; }
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.testi-card__author strong { display: block; font-size: 0.95rem; color: var(--brown); }
.testi-card__author span { font-size: 0.8rem; color: var(--text-light); }

/* ---- INSTAGRAM ---- */
.insta { background: var(--cream-2); }
.insta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.insta-tile {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  display: block;
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.insta-tile:hover img { transform: scale(1.1); }
.insta-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(62,31,12,0.0), rgba(62,31,12,0.65));
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  font-size: 2rem;
  color: var(--white);
}
.insta-tile:hover .insta-tile__overlay { opacity: 1; }
.insta__cta { text-align: center; }

/* ---- CONTACT ---- */
.contact { background: var(--cream); }
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact__text {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.contact__items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__item { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact__item-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cream-2), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--brown);
  flex-shrink: 0;
}
.contact__item p { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.2rem; }
.contact__item a, .contact__item span { font-size: 0.95rem; color: var(--brown); font-weight: 500; }
.contact__item a:hover { color: var(--gold); }
.contact__card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold-light);
}
.contact__card h3 {
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 2rem;
}
.form__group { margin-bottom: 1.2rem; }
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 12px;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--gold); }
.form__group select { cursor: pointer; }
.form__group textarea { resize: none; }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  padding: 3rem 0;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.cta-strip p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.cta-strip .btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(197,160,89,0.4);
  flex-shrink: 0;
}

/* ---- FOOTER ---- */
.footer { background: var(--brown); color: rgba(255,255,255,0.6); }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem 3rem;
  max-width: var(--max);
  margin: auto;
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.footer__logo em { color: var(--gold); }
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.55);
}
.footer__soc { display: flex; gap: 1rem; }
.footer__soc a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  transition: all 0.3s;
}
.footer__soc a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer__links h4 {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  z-index: 800;
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 30px rgba(37,211,102,0.7); }
}

/* ---- PORTFOLIO PAGE ---- */
.port-hero {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.port-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--brown);
  margin: 0.8rem 0;
}
.port-hero p { font-size: 1rem; color: var(--text-light); max-width: 500px; margin-top: 0.5rem; }

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(197,160,89,0.2);
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  border: 1.5px solid var(--gold-light);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--white);
}

.gallery-section { background: var(--cream); }
.gallery__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--brown);
  text-align: center;
  margin: 4rem 0 1.8rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.gallery__title::before,
.gallery__title::after {
  content: '';
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 1rem;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.gallery__card {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gallery__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.gallery__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery__card:hover img { transform: scale(1.08); }
.gallery__card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(62,31,12,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery__card:hover .gallery__card-overlay { opacity: 1; }
.gallery__card-overlay span { color: var(--white); font-weight: 500; font-size: 0.95rem; }
.gallery__card-overlay i { color: var(--gold-light); font-size: 1.4rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(30,10,3,0.96);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img-wrap img { max-height: 85vh; max-width: 90vw; border-radius: 12px; }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .packages__grid { grid-template-columns: 1fr; max-width: 520px; margin: auto; }
  .pkg-card--featured { transform: none; }
  .pkg-card--featured:hover { transform: translateY(-6px); }
  .testi__grid { grid-template-columns: 1fr; max-width: 560px; margin: auto; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__img { height: 420px; }
  .about__years { right: 20px; }
  .hero { flex-direction: column; justify-content: center; padding: 8rem 1.5rem 4rem; }
  .hero__image { order: -1; }
  .hero__frame { width: 300px; }
  .hero__frame img { height: 400px; }
  .hero__badge { left: -10px; bottom: 40px; }
  .contact__wrap { grid-template-columns: 1fr; gap: 3rem; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .hero__stats { flex-direction: column; gap: 1.2rem; }
  .stat__divider { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand { grid-column: auto; }
  .section { padding: 5rem 0; }
  .hero { min-height: auto; padding: 7rem 1.5rem 3rem; }
  .hero__frame img { height: 320px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about__tags span { font-size: 0.78rem; padding: 0.4rem 0.8rem; }
}
