

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

/* ── Variables ── */
:root {
  --ivory:      #F7F3ED;
  --ivory-dark: #EDE6DB;
  --charcoal:   #1A1A1A;
  --charcoal-2: #2C2C2C;
  --gold:       #B89A6A;
  --gold-light: #D4B896;
  --blush:      #E8D5C4;
  --muted:      #7A7268;
  --white:      #FFFFFF;
  --border:     rgba(184,154,106,.22);

  --font-display: 'DM Serif Display', serif;
  --font-body:    'Outfit', sans-serif;
  --font-accent:  'Cormorant Garamond', serif;

  --nav-h: 80px;
  --transition: .4s cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 4px 24px rgba(0,0,0,.07);
  --shadow-md: 0 12px 48px rgba(0,0,0,.12);
  --shadow-lg: 0 24px 80px rgba(0,0,0,.18);
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Custom Cursor ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}
.cursor-dot  { width: 6px;  height: 6px;  background: var(--gold); }
.cursor-ring { width: 32px; height: 32px; border: 1.5px solid var(--gold); transition: transform .15s, width .3s, height .3s; }
.cursor-ring.hovered { width: 52px; height: 52px; border-color: var(--gold-light); }

/* ── Page Loader ── */
#page-loader {
  position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity .6s ease, visibility .6s;
}
#page-loader.done { opacity: 0; visibility: hidden; }
#page-loader .loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivory);
  letter-spacing: .1em;
}
#page-loader .loader-logo span { color: var(--gold); }
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,.15);
  position: relative; overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loaderFill 1.6s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes loaderFill { to { left: 0; } }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity .8s ease, transform .8s ease; }
.reveal-right { opacity: 0; transform: translateX( 50px); transition: opacity .8s ease, transform .8s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.9); transition: opacity .7s ease, transform .7s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }

/* ── Typography Helpers ── */
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--charcoal);
}
.section-title.light { color: var(--ivory); }
.section-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
}
.italic-accent {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--gold);
}

/* ── Buttons ── */
.btn-luxe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.btn-luxe::before {
  content: '';
  position: absolute; inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.btn-luxe:hover::before { transform: scaleX(1); }
.btn-luxe span { position: relative; z-index: 1; }
.btn-luxe svg { position: relative; z-index: 1; transition: transform .3s; }
.btn-luxe:hover svg { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold::before { background: var(--charcoal); }
.btn-gold:hover { color: var(--white); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold::before { background: var(--gold); }
.btn-outline-gold:hover { color: var(--white); border-color: var(--gold); }

.btn-outline-ivory {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(247,243,237,.5);
}
.btn-outline-ivory::before { background: var(--ivory); }
.btn-outline-ivory:hover { color: var(--charcoal); }

.btn-ivory {
  background: var(--ivory);
  color: var(--charcoal);
}
.btn-ivory::before { background: var(--gold); }
.btn-ivory:hover { color: var(--white); }

/* ── Navbar ── */
.navbar-luxe {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background .5s ease, box-shadow .5s ease, height .3s ease;
}
.navbar-luxe.scrolled {
  background: rgba(26,26,26,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,.25);
  height: 68px;
}
.navbar-luxe.light-bg {
  background: rgba(247,243,237,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.navbar-luxe.light-bg .nav-link { color: var(--charcoal); }
.navbar-luxe.light-bg .nav-link::after { background: var(--gold); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: var(--ivory);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .dot { color: var(--gold); }
.navbar-luxe.light-bg .nav-logo { color: var(--charcoal); }

.nav-links {
  display: flex; align-items: center; gap: 40px;
}
.nav-link {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(247,243,237,.85);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-cta { margin-left: 24px; padding: 11px 24px !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: none;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--ivory);
  transition: var(--transition);
}
.navbar-luxe.light-bg .hamburger span { background: var(--charcoal); }
.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-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--charcoal);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 40px;
  opacity: 0; transform: translateY(-20px);
  transition: opacity .4s ease, transform .4s ease;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu .nav-link {
  font-size: 2rem;
  font-family: var(--font-display);
  letter-spacing: .05em;
  text-transform: none;
  color: var(--ivory);
}

/* ── Back to Top ── */
#back-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}
#back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-top:hover { background: var(--charcoal); }

/* ── Divider ── */
.gold-line {
  display: block;
  width: 48px; height: 1.5px;
  background: var(--gold);
  margin: 20px 0 28px;
}
.gold-line.center { margin: 20px auto 28px; }

/* ── Section Spacing ── */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ======================================================
   HOME — HERO
   ====================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1631679706909-1844bbd07221?w=1800&q=85') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 12s ease-out;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,.78) 0%, rgba(26,26,26,.42) 60%, rgba(26,26,26,.55) 100%);
}
.hero-bg.loaded { transform: scale(1); }
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s .3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.1;
  color: var(--ivory);
  margin: 20px 0 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s .6s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(247,243,237,.72);
  max-width: 540px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s .9s forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s 1.1s forwards;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(247,243,237,.5);
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  opacity: 0; animation: fadeUp .8s 1.6s forwards;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(247,243,237,.4);
  border-radius: 20px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--gold-light);
  border-radius: 3px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--charcoal);
  padding: 40px 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(247,243,237,.5);
  margin-top: 8px;
  display: block;
}

/* ── Services ── */
.services-section { background: var(--ivory); }
.service-card {
  background: var(--white);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
  height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-img {
  height: 240px; overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-body { padding: 28px; }
.service-icon {
  width: 44px; height: 44px;
  background: var(--ivory-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { color: var(--gold); }
.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.service-desc { font-size: .92rem; line-height: 1.7; color: var(--muted); }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  transition: gap .3s;
}
.service-link:hover { gap: 10px; color: var(--gold); }

/* ── About Preview ── */
.about-preview { background: var(--ivory-dark); overflow: hidden; }
.about-img-wrap {
  position: relative;
  height: 580px;
}
.about-img-wrap .img-main {
  position: absolute; top: 0; left: 0;
  width: 82%; height: 90%; object-fit: cover;
}
.about-img-wrap .img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 58%; height: 55%; object-fit: cover;
  border: 8px solid var(--ivory-dark);
}
.about-badge {
  position: absolute; bottom: 60px; left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 24px 20px;
  text-align: center;
  width: 120px;
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  display: block; line-height: 1;
}
.about-badge .txt { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.about-features { margin-top: 28px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.feat-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
}
.feat-title { font-weight: 600; font-size: .92rem; margin-bottom: 4px; }
.feat-desc  { font-size: .85rem; color: var(--muted); }

/* ── Portfolio ── */
.portfolio-section { background: var(--charcoal); }
.portfolio-section .section-title { color: var(--ivory); }
.portfolio-section .section-body { color: rgba(247,243,237,.55); }
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(247,243,237,.65);
  cursor: none;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.portfolio-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1.1;
  cursor: none;
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-title {
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--ivory);
  transform: translateY(16px); transition: transform .4s ease;
}
.portfolio-cat {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light);
  transform: translateY(16px); transition: transform .4s .06s ease;
}
.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-cat { transform: translateY(0); }
.portfolio-plus {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0; transform: scale(.8);
  transition: opacity .3s, transform .3s;
}
.portfolio-item:hover .portfolio-plus { opacity: 1; transform: scale(1); }

/* ── Why Choose Us ── */
.why-section { background: var(--ivory); }
.why-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color .3s, box-shadow .3s;
  height: 100%;
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 56px; height: 56px;
  background: var(--ivory-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.2rem; margin-bottom: 12px;
}
.why-desc { font-size: .9rem; line-height: 1.75; color: var(--muted); }

/* ── Testimonials ── */
.testimonials-section { background: var(--ivory-dark); }
.swiper-testimonials { padding-bottom: 48px !important; }
.testi-card {
  background: var(--white);
  padding: 40px;
  border-left: 3px solid var(--gold);
}
.testi-quote {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--charcoal-2);
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 600; font-size: .95rem; }
.testi-role { font-size: .8rem; color: var(--gold); letter-spacing: .08em; }
.testi-stars { color: var(--gold); font-size: .85rem; margin-bottom: 6px; }
.swiper-pagination-bullet { background: var(--gold) !important; }

/* ── Process ── */
.process-section { background: var(--charcoal); }
.process-section .section-title { color: var(--ivory); }
.process-steps { position: relative; }
.process-steps::before {
  content: '';
  position: absolute; top: 36px; left: calc(12.5% + 1px);
  right: calc(12.5% + 1px); height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 90%);
}
.process-step { text-align: center; }
.step-num {
  width: 72px; height: 72px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  background: var(--charcoal);
  transition: background .3s, color .3s;
}
.process-step:hover .step-num {
  background: var(--gold);
  color: var(--white);
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ivory);
  margin-bottom: 12px;
}
.step-desc { font-size: .88rem; color: rgba(247,243,237,.5); line-height: 1.7; }

/* ── CTA ── */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&q=80') center/cover;
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,26,26,.78);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--ivory);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.05rem; color: rgba(247,243,237,.65);
  max-width: 520px; margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer { background: #111; padding: 80px 0 0; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ivory);
  margin-bottom: 16px;
}
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: .9rem; color: rgba(247,243,237,.4); line-height: 1.75; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,243,237,.5);
  transition: background .3s, border-color .3s, color .3s;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-heading {
  font-size: .75rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem; color: rgba(247,243,237,.45);
  transition: color .3s, padding-left .3s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-links a::before { content: '—'; color: var(--gold); font-size: .65rem; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { font-size: .88rem; color: rgba(247,243,237,.45); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  margin-top: 60px;
}
.footer-copy { font-size: .8rem; color: rgba(247,243,237,.25); }

/* ======================================================
   ABOUT PAGE
   ====================================================== */
.page-hero {
  height: 55vh; min-height: 420px;
  position: relative;
  display: flex; align-items: flex-end;
  padding-bottom: 60px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,.5) 0%, rgba(26,26,26,.75) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb-luxe {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(247,243,237,.55);
  margin-bottom: 16px;
}
.breadcrumb-luxe a { color: var(--gold); }
.breadcrumb-luxe span { color: rgba(247,243,237,.3); }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--ivory);
  line-height: 1.1;
}

/* Mission / Vision / Values */
.mvv-card {
  padding: 40px 32px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  height: 100%;
  transition: box-shadow .3s;
}
.mvv-card:hover { box-shadow: var(--shadow-md); }
.mvv-icon { font-size: 2rem; margin-bottom: 16px; }
.mvv-title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 12px; }


.services-detail-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .4s ease;
}
.services-detail-card:hover { box-shadow: var(--shadow-md); }
.svc-img { height: 280px; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.services-detail-card:hover .svc-img img { transform: scale(1.07); }
.svc-body { padding: 36px; }
.svc-num {
  font-family: var(--font-display);
  font-size: 3.5rem; color: var(--ivory-dark);
  line-height: 1; margin-bottom: 12px;
}
.svc-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 14px; }
.svc-desc { font-size: .92rem; line-height: 1.8; color: var(--muted); margin-bottom: 20px; }
.svc-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.svc-tag {
  padding: 5px 14px;
  background: var(--ivory-dark);
  font-size: .76rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--charcoal-2);
}

/* Pricing */
.pricing-section { background: var(--charcoal); }
.pricing-section .section-title { color: var(--ivory); }
.pricing-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,.06);
  padding: 48px 36px;
  height: 100%;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.pricing-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.pricing-card.featured {
  background: var(--gold);
  border-color: var(--gold);
}
.featured-badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--ivory);
  color: var(--gold);
  font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: 6px 14px;
}
.pricing-tier {
  font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,.7); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-unit { font-size: .85rem; color: rgba(247,243,237,.45); margin-bottom: 28px; }
.pricing-card.featured .pricing-unit { color: rgba(255,255,255,.65); }
.pricing-list { margin-bottom: 36px; }
.pricing-list li {
  font-size: .9rem;
  color: rgba(247,243,237,.65);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 10px;
}
.pricing-card.featured .pricing-list li { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.15); }
.pricing-list li::before { content: '✓'; color: var(--gold-light); font-weight: 700; }
.pricing-card.featured .pricing-list li::before { color: var(--white); }

/* ======================================================
   PORTFOLIO PAGE
   ====================================================== */
.portfolio-page { background: var(--ivory); }
.portfolio-page .portfolio-grid { grid-template-columns: repeat(3,1fr); }
.portfolio-page .portfolio-item { aspect-ratio: 4/3; }

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-form-wrap {
  background: var(--white);
  padding: 52px 48px;
}
.contact-info-wrap {
  background: var(--charcoal);
  padding: 52px 48px;
  height: 100%;
}
.form-group { margin-bottom: 24px; }
.form-label-luxe {
  display: block;
  font-size: .76rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-control-luxe {
  width: 100%; padding: 14px 0;
  border: none; border-bottom: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--font-body); font-size: .95rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .3s;
}
.form-control-luxe:focus { border-color: var(--gold); }
.form-control-luxe::placeholder { color: rgba(26,26,26,.3); }
textarea.form-control-luxe { resize: none; padding-top: 12px; }
select.form-control-luxe option { color: var(--charcoal); background: var(--white); }
.contact-form-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-whatsapp-cta {
  color: var(--charcoal);
}
.contact-whatsapp-cta:hover {
  color: var(--charcoal);
}
.info-icon {
  width: 44px; height: 44px;
  background: rgba(184,154,106,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.info-label { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; }
.info-val { font-size: .92rem; color: rgba(247,243,237,.75); line-height: 1.6; }
.map-wrap { height: 420px; overflow: hidden; filter: grayscale(30%) contrast(1.05); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: space-between;
  cursor: none;
  transition: color .3s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.2rem; color: var(--gold); transition: transform .35s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  font-size: .92rem; line-height: 1.8; color: var(--muted);
  transition: max-height .4s ease, padding .4s;
}
.faq-answer.open { max-height: 200px; padding-bottom: 20px; }

/* ── Success Alert ── */
.form-success {
  display: none;
  background: var(--ivory-dark);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: .9rem;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: rgba(210,71,71,.08);
  border-left: 3px solid #d24747;
  color: #8f2626;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: .9rem;
}
.form-error.show { display: block; }

/* ── Lightbox ── */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(17,17,17,.95);
  z-index: 5000;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.1);
  border: none; color: var(--ivory);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: background .3s;
}
.lightbox-close:hover { background: var(--gold); }
.lightbox-caption {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(247,243,237,.6);
  font-size: .85rem; letter-spacing: .1em;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .cursor-dot, .cursor-ring { display: none !important; }
  .navbar-luxe { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .process-steps::before { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .about-img-wrap { height: 380px; margin-bottom: 40px; }
}
@media (max-width: 767px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
  .contact-form-wrap, .contact-info-wrap { padding: 36px 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
}
