/* ===========================
   V, Women's Exclusive — CSS
   =========================== */

:root {
  --rose:    #c9796a;
  --rose-light: #e8b4aa;
  --gold:    #b89a6a;
  --cream:   #fdf8f3;
  --dark:    #1a1410;
  --dark2:   #2c2018;
  --muted:   #7a6a5a;
  --border:  rgba(184,154,106,0.2);
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body:    'Jost', sans-serif;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,248,243,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 44px; width: auto; }
.logo-text-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-v {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
}
.logo-sub {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-sub span {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* Nav */
.nav { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  position: relative;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--dark);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--dark);
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 0.9rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--header-h) + 40px) 24px 120px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,121,106,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(184,154,106,0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(201,121,106,0.06) 0%, transparent 50%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}
.orb1 { width: 400px; height: 400px; background: var(--rose-light); top: -10%; left: -10%; animation-delay: 0s; }
.orb2 { width: 300px; height: 300px; background: var(--gold); bottom: 5%; right: -5%; animation-delay: -3s; }
.orb3 { width: 200px; height: 200px; background: var(--rose); top: 60%; left: 50%; animation-delay: -5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp 1s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 20px;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 28px;
  animation: fadeUp 1s 0.2s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--rose);
}
.hero-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-desc strong { color: var(--dark); font-weight: 500; }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s ease both;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--rose);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--rose);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--dark);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--rose);
  background: rgba(201,121,106,0.05);
  transform: translateY(-2px);
}
.btn-primary.full-width { width: 100%; text-align: center; }

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  pointer-events: none;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--dark);
  overflow: hidden;
  padding: 14px 0;
}
.ticker {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker span {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}
.ticker .dot { color: var(--rose); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.alt-section { background: rgba(201,121,106,0.04); }

.section-label {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--rose); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border: 1px solid var(--border);
  padding: 36px 28px;
  background: #fff;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,121,106,0.12);
}
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.featured-card { border-color: var(--rose); background: rgba(201,121,106,0.04); }
.badge {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 14px;
  background: var(--rose);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== WHY US ===== */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-desc { color: var(--muted); margin-bottom: 28px; font-size: 0.95rem; }
.why-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.why-list li { display: flex; gap: 12px; font-size: 0.9rem; color: var(--dark); }
.why-list span { color: var(--rose); }
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-card {
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  background: #fff;
}
.wc-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 8px;
}
.wc-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  padding: 100px 24px;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; }
.cta-inner {
  position: relative;
  z-index: 2;
}
.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
}
.cta-inner h2 em { font-style: italic; color: var(--rose-light); }
.cta-inner p { color: rgba(255,255,255,0.6); margin-bottom: 36px; font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 12px; line-height: 1.6; }
.footer-brand .logo-v { color: var(--rose-light); }
.footer-brand .logo-sub span { color: rgba(255,255,255,0.5); }
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose-light); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  text-align: center;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  text-align: center;
  background: var(--dark2);
}
.banner-bg { position: absolute; inset: 0; }
.banner-content { position: relative; z-index: 2; }
.banner-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.banner-content .hero-eyebrow { animation: fadeUp 0.8s 0.1s ease both; }
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  animation: fadeUp 0.8s 0.2s ease both;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--rose-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.about-intro-text p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.about-quote {
  border-left: 3px solid var(--rose);
  padding: 32px 36px;
  background: rgba(201,121,106,0.06);
}
.about-quote p {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.4;
}

.expertise-grid { display: flex; flex-direction: column; gap: 0; }
.expertise-item {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.expertise-item:first-child { border-top: 1px solid var(--border); }
.exp-icon { font-size: 2.5rem; flex-shrink: 0; width: 60px; text-align: center; margin-top: 4px; }
.exp-content h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--dark);
}
.exp-content ul { display: flex; flex-direction: column; gap: 8px; }
.exp-content li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}
.exp-content li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--rose);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  padding: 40px 28px;
  border: 1px solid var(--border);
  text-align: center;
  background: #fff;
  transition: border-color 0.3s, transform 0.3s;
}
.package-card:hover { border-color: var(--rose); transform: translateY(-4px); }
.pkg-icon { font-size: 2.2rem; margin-bottom: 16px; }
.package-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.package-card p { font-size: 0.88rem; color: var(--muted); }

/* ===== GALLERY PAGE ===== */
.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 24px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item { overflow: hidden; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201,121,106,0.08), rgba(184,154,106,0.12));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.3s, transform 0.3s;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.gallery-placeholder:hover {
  background: linear-gradient(135deg, rgba(201,121,106,0.15), rgba(184,154,106,0.2));
  transform: scale(1.02);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gp-icon { font-size: 2rem; }
.gallery-item.hidden { display: none; }

/* ===== CONTACT PAGE ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 40px; }
.info-cards { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  border: 1px solid var(--border);
  background: #fff;
}
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-card h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 4px;
}
.info-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.7; }
.info-card a { color: var(--rose); }
.info-card a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: var(--dark2);
  padding: 48px 40px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.contact-form-wrap h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
}
.form-group select option { background: var(--dark2); color: #fff; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-success {
  text-align: center;
  color: #a8e6a3;
  font-size: 0.9rem;
  padding: 16px;
  border: 1px solid rgba(168,230,163,0.3);
  background: rgba(168,230,163,0.08);
}

/* Map */
.map-section { padding: 0 0 100px; }
.map-section h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 24px;
}
.map-placeholder {
  width: 100%;
  height: 400px;
  border: 1px solid var(--border);
  background: rgba(201,121,106,0.04);
}
.map-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}
.map-icon { font-size: 2.5rem; }
.map-inner p { font-size: 0.9rem; }
.map-inner small { font-size: 0.75rem; text-align: center; max-width: 320px; opacity: 0.6; }
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { position: static; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .expertise-item { flex-direction: column; gap: 16px; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-item.tall { grid-row: span 1; }
  .hero-cta { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 32px 24px; }
}