/* =============================================================
   TRICHY PHOTOGRAPHER — Premium Wedding Photography Website
   Theme: Black (#000) + Gold (#D4AF37)
   Fonts: Playfair Display (headings) · Great Vibes (script) · Poppins (body)
   ============================================================= */

/* ---------- 1. CSS VARIABLES ---------- */
:root {
  --black:        #000000;
  --deep:         #0a0a0a;
  --panel:        #111111;
  --panel-2:      #161616;
  --gold:         #d4af37;
  --gold-soft:    #e8c86a;
  --gold-deep:    #b8912b;
  --white:        #ffffff;
  --grey:         #b9b9b9;
  --grey-dim:     #8a8a8a;
  --line:         rgba(212, 175, 55, 0.25);

  --font-head:  'Playfair Display', Georgia, serif;
  --font-script:'Great Vibes', cursive;
  --font-body:  'Poppins', -apple-system, Segoe UI, sans-serif;

  --ease:       0.35s ease;
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.35);
  --maxw: 1200px;
}

/* ---------- 2. RESET / BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; }

::selection { background: var(--gold); color: var(--black); }

/* Slim gold scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 6px; }

/* ---------- 3. LAYOUT HELPERS ---------- */
.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }

section { padding: 100px 0; position: relative; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head .script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  display: block;
  line-height: 1;
}
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 6px;
  letter-spacing: 1px;
}
.section-head p { color: var(--grey); max-width: 620px; margin: 16px auto 0; }

/* Decorative gold divider */
.divider {
  width: 90px; height: 2px; margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider.left { margin: 18px 0 0; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-body); font-weight: 500; font-size: .9rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 2px; cursor: pointer;
  transition: all var(--ease);
  border: 1.5px solid var(--gold);
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover {
  background: transparent; color: var(--gold);
  box-shadow: var(--shadow-gold); transform: translateY(-3px);
}
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover {
  background: var(--gold); color: var(--black);
  box-shadow: var(--shadow-gold); transform: translateY(-3px);
}

/* ---------- 5. HEADER / NAV ---------- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 22px 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.92);
  padding: 12px 0;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
/* Transparent logo has built-in padding, so display it larger + add a gold glow to pop on dark */
.nav-logo img {
  height: 84px; transition: height var(--ease);
  filter: drop-shadow(0 0 8px rgba(212,175,55,.45)) brightness(1.12) contrast(1.06);
}
.header.scrolled .nav-logo img { height: 64px; }
.nav-logo:hover img { filter: drop-shadow(0 0 14px rgba(212,175,55,.75)) brightness(1.2) contrast(1.08); }

.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-menu a {
  font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 400; color: var(--white); position: relative; padding: 4px 0;
  transition: color var(--ease);
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--gold); transition: width var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-menu .nav-cta {
  border: 1.5px solid var(--gold); color: var(--gold);
  padding: 9px 22px; border-radius: 2px;
}
.nav-menu .nav-cta::after { display: none; }
.nav-menu .nav-cta:hover { background: var(--gold); color: var(--black); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 34px; height: 26px; position: relative; z-index: 1100;
}
.nav-toggle span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: var(--gold); transition: all var(--ease);
}
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 12px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* ---------- 6. HERO ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
}
.hero::after { /* cinematic dark overlay */
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.85) 100%);
}
.hero-inner { max-width: 860px; padding: 0 20px; }
.hero .script {
  font-family: var(--font-script); color: var(--gold);
  font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  letter-spacing: 1px; margin: 8px 0 18px; text-shadow: 0 4px 30px rgba(0,0,0,.6);
}
.hero p {
  color: var(--grey); font-size: clamp(1rem, 2.4vw, 1.25rem);
  letter-spacing: 2px; text-transform: uppercase; font-weight: 300; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--gold); font-size: 1.4rem; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,10px)} }

/* Hero two-column variant featuring the photographer */
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px;
  align-items: center; width: 90%; max-width: 1180px; margin: 0 auto; text-align: left;
  position: relative; z-index: 2; /* keep content above decorative rings & particles */
}
.hero-grid .hero-text { max-width: 560px; }
.hero-grid .hero-text .hero-btns { justify-content: flex-start; }
.hero-credit {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 30px;
  color: var(--grey); font-size: .9rem; letter-spacing: .5px;
}
.hero-credit .line { width: 40px; height: 1px; background: var(--gold); }
.hero-credit b { color: var(--gold); font-weight: 500; }

/* Framed photographer portrait */
.hero-portrait { position: relative; justify-self: center; max-width: 440px; width: 100%; }
.hero-portrait .frame {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 30px 70px rgba(0,0,0,.65);
}
.hero-portrait .frame img { width: 100%; display: block; transition: transform .8s ease; }
.hero-portrait:hover .frame img { transform: scale(1.05); }
.hero-portrait .frame::after { /* subtle gold vignette */
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
}
/* offset gold corner accents */
.hero-portrait::before, .hero-portrait::after {
  content: ''; position: absolute; width: 64px; height: 64px; z-index: 2;
}
.hero-portrait::before { top: -12px; left: -12px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.hero-portrait::after { bottom: -12px; right: -12px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
/* floating name badge */
.hero-badge {
  position: absolute; left: -18px; bottom: 28px; z-index: 3;
  background: rgba(10,10,10,.85); backdrop-filter: blur(6px);
  border: 1px solid var(--gold); border-radius: 4px; padding: 12px 20px;
  box-shadow: var(--shadow-gold);
}
.hero-badge .name {
  display: block; font-family: var(--font-head); font-weight: 700; color: var(--gold);
  font-size: 1.5rem; line-height: 1; letter-spacing: 3px; text-transform: uppercase;
}
.hero-badge span { display: block; color: var(--grey); font-size: .66rem; letter-spacing: 2.5px; text-transform: uppercase; margin-top: 6px; }
/* floating experience chip */
.hero-chip {
  position: absolute; right: -16px; top: 22px; z-index: 3;
  background: var(--gold); color: var(--black); border-radius: 50%;
  width: 92px; height: 92px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-gold); animation: floaty 3.5s ease-in-out infinite;
}
.hero-chip b { font-family: var(--font-head); font-size: 1.6rem; line-height: 1; }
.hero-chip span { font-size: .58rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }

/* Page banner (for interior pages) */
.page-banner {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden; padding: 160px 0 90px;
}
.page-banner .hero-bg { background-attachment: fixed; }
.page-banner::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.85));
}
.page-banner .script { font-family: var(--font-script); color: var(--gold); font-size: clamp(1.6rem,4vw,2.4rem); }
.page-banner h1 { font-size: clamp(2.4rem, 6vw, 4rem); letter-spacing: 1px; }
.breadcrumb { margin-top: 14px; color: var(--grey); font-size: .85rem; letter-spacing: 2px; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- 7. ABOUT PREVIEW / SPLIT ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.split-img { position: relative; }
.split-img img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.split-img::before { /* gold frame accent */
  content: ''; position: absolute; inset: -14px -14px auto auto;
  width: 60%; height: 60%; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  border-radius: 4px; z-index: -1;
}
.split-img::after {
  content: ''; position: absolute; inset: auto auto -14px -14px;
  width: 60%; height: 60%; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold);
  border-radius: 4px; z-index: -1;
}
.split-text .script { font-family: var(--font-script); color: var(--gold); font-size: clamp(1.6rem,4vw,2.3rem); }
.split-text h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin: 4px 0 20px; }
.split-text p { color: var(--grey); margin-bottom: 18px; }
.split-text .btn { margin-top: 12px; }

/* Stats row */
.stats { display: flex; gap: 40px; flex-wrap: wrap; margin: 26px 0; }
.stat h3 { font-size: 2.4rem; color: var(--gold); }
.stat span { color: var(--grey-dim); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; }

/* ---------- 8. SERVICE CARDS ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.service-card {
  background: var(--panel); border: 1px solid var(--line);
  padding: 44px 30px; text-align: center; border-radius: 4px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform var(--ease);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,.6); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.9rem; color: var(--gold);
  border: 1.5px solid var(--gold); transition: all var(--ease);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--black); box-shadow: var(--shadow-gold); }
.service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.service-card p { color: var(--grey); font-size: .92rem; }

/* Service cards with image (services.html) */
.service-photo {
  position: relative; border-radius: 4px; overflow: hidden; border: 1px solid var(--line);
  background: var(--panel);
}
.service-photo .photo-wrap { height: 260px; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-photo:hover img { transform: scale(1.12); }
.service-photo .body { padding: 26px 26px 30px; }
.service-photo .body h3 { font-size: 1.35rem; margin-bottom: 10px; color: var(--white); }
.service-photo .body .icon { color: var(--gold); font-size: 1.1rem; margin-bottom: 6px; }
.service-photo .body p { color: var(--grey); font-size: .92rem; }
.service-photo::after {
  content: ''; position: absolute; inset: 0; border: 2px solid transparent;
  border-radius: 4px; transition: border-color var(--ease); pointer-events: none;
}
.service-photo:hover::after { border-color: var(--gold); }

/* ---------- 9. PORTFOLIO ---------- */
.filter-bar { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-btn {
  background: transparent; border: 1px solid var(--line); color: var(--grey);
  padding: 9px 24px; border-radius: 2px; cursor: pointer; font-family: var(--font-body);
  font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; transition: all var(--ease);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Masonry via CSS columns */
.masonry { columns: 3; column-gap: 18px; }
.masonry .tile { break-inside: avoid; margin-bottom: 18px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.tile {
  position: relative; overflow: hidden; border-radius: 4px; cursor: pointer;
  border: 1px solid transparent; transition: border-color var(--ease);
}
.tile img { width: 100%; transition: transform .7s ease; display: block; }
.tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.8));
  opacity: 0; transition: opacity var(--ease);
}
.tile .tile-cap {
  position: absolute; left: 20px; bottom: 16px; z-index: 2;
  opacity: 0; transform: translateY(14px); transition: all var(--ease);
}
.tile .tile-cap span { color: var(--gold); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; }
.tile .tile-cap h4 { color: var(--white); font-size: 1.15rem; }
.tile:hover { border-color: var(--gold); }
.tile:hover img { transform: scale(1.14); }
.tile:hover::after { opacity: 1; }
.tile:hover .tile-cap { opacity: 1; transform: translateY(0); }
.tile .zoom-ico {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.6);
  color: var(--gold); font-size: 1.6rem; opacity: 0; transition: all var(--ease); z-index: 2;
}
.tile:hover .zoom-ico { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.tile.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,.95);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 4px; box-shadow: 0 0 60px rgba(0,0,0,.9); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; color: var(--gold); background: rgba(0,0,0,.4);
  border: 1px solid var(--line); width: 52px; height: 52px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; transition: all var(--ease);
}
.lightbox .lb-close { top: 26px; right: 26px; }
.lightbox .lb-nav.prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--gold); color: var(--black); }

/* ---------- 10. TESTIMONIALS SLIDER ---------- */
.testimonials { background: var(--deep); }
.slider { max-width: 800px; margin: 0 auto; position: relative; overflow: hidden; }
.slides { display: flex; transition: transform .6s ease; }
.slide { min-width: 100%; text-align: center; padding: 10px 30px; }
.slide .quote-mark { font-family: var(--font-head); font-size: 4rem; color: var(--gold); line-height: .5; }
.slide p { color: var(--grey); font-size: 1.12rem; font-style: italic; margin: 20px 0 26px; }
.slide .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; }
.slide h4 { color: var(--white); font-size: 1.15rem; }
.slide span { color: var(--grey-dim); font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; }
.slider-dots { display: flex; gap: 10px; justify-content: center; margin-top: 34px; }
.slider-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 1px solid var(--gold);
  background: transparent; cursor: pointer; transition: all var(--ease); padding: 0;
}
.slider-dots button.active { background: var(--gold); box-shadow: var(--shadow-gold); }

/* ---------- 11. CTA BANNER ---------- */
.cta-banner {
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner .hero-bg { background-attachment: fixed; }
.cta-banner::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(0,0,0,.82);
}
.cta-banner .script { font-family: var(--font-script); color: var(--gold); font-size: clamp(1.8rem,4vw,2.6rem); }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin: 6px 0 24px; }
.cta-banner p { color: var(--grey); max-width: 560px; margin: 0 auto 34px; }
.cta-banner .hero-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- 12. CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 10px; }
.contact-info > p { color: var(--grey); margin-bottom: 30px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 24px; }
.info-item .ico {
  min-width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--gold);
  color: var(--gold); display: grid; place-items: center; font-size: 1.1rem; transition: all var(--ease);
}
.info-item:hover .ico { background: var(--gold); color: var(--black); }
.info-item h4 { font-family: var(--font-body); font-weight: 500; font-size: 1rem; letter-spacing: .5px; }
.info-item p, .info-item a { color: var(--grey); font-size: .95rem; }
.info-item a:hover { color: var(--gold); }

.contact-form { background: var(--panel); padding: 40px; border: 1px solid var(--line); border-radius: 4px; }
.contact-form .field { margin-bottom: 20px; }
.contact-form label { display: block; font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--black); border: 1px solid var(--line);
  color: var(--white); padding: 13px 16px; border-radius: 2px; font-family: var(--font-body);
  font-size: .95rem; transition: border-color var(--ease), box-shadow var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--grey-dim); margin-top: 14px; text-align: center; }

.map-wrap { margin-top: 0; }
.map-wrap iframe {
  width: 100%; height: 380px; border: 1px solid var(--line); border-radius: 4px; filter: grayscale(.3) contrast(1.1);
}

/* ---------- 13. FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 1500;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; color: #fff; font-size: 1.7rem;
  box-shadow: 0 6px 22px rgba(37,211,102,.5); transition: transform var(--ease);
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- 14. FOOTER ---------- */
.footer { background: var(--deep); border-top: 1px solid var(--line); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 50px; }
.footer-logo img {
  height: 108px; margin-bottom: 18px; margin-left: -6px;
  filter: drop-shadow(0 0 10px rgba(212,175,55,.4)) brightness(1.12) contrast(1.06);
}
.footer-col p { color: var(--grey); font-size: .92rem; margin-bottom: 20px; }
.footer-col h4 {
  font-family: var(--font-body); font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; font-size: .95rem; color: var(--gold); margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--grey); font-size: .92rem; transition: all var(--ease); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; color: var(--grey); font-size: .92rem; margin-bottom: 14px; }
.footer-contact li i { color: var(--gold); width: 18px; text-align: center; flex-shrink: 0; }
.footer-contact li a { word-break: break-word; }
.socials { display: flex; gap: 14px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--gold); transition: all var(--ease);
}
.socials a:hover { background: var(--gold); color: var(--black); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.footer-bottom {
  border-top: 1px solid var(--line); text-align: center; padding: 22px 0;
  color: var(--grey-dim); font-size: .84rem;
}
.footer-bottom a { color: var(--gold); }

/* ---------- 15. SCROLL REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }

/* ---------- 16. MOTION & GRAPHICS ENHANCEMENTS ---------- */

/* Scroll progress bar (top gold line) */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft), var(--gold));
  z-index: 2000; box-shadow: 0 0 12px rgba(212,175,55,.7);
  transition: width .1s linear;
}

/* Floating gold "bokeh" particles (injected into hero/banner sections) */
.bokeh-layer { position: absolute; inset: 0; overflow: hidden; z-index: -1; pointer-events: none; }
.bokeh {
  position: absolute; bottom: -60px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(232,200,106,.9), rgba(212,175,55,.15) 60%, transparent 70%);
  filter: blur(1px); opacity: 0; animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .5; }
  100% { transform: translateY(-115vh) scale(1.25); opacity: 0; }
}

/* Shimmer sweep across gold script text */
.script, .hero h1 { position: relative; }
.hero .script, .section-head .script, .page-banner .script, .cta-banner .script, .split-text .script {
  background: linear-gradient(100deg, var(--gold-deep) 20%, #fff4cf 50%, var(--gold-deep) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* Moving marquee strip */
.marquee {
  background: var(--deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 46px; animation: marquee 26s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 2.2rem); font-style: italic;
  color: transparent; -webkit-text-stroke: 1px var(--gold); letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 46px;
}
.marquee span i { -webkit-text-stroke: 0; color: var(--gold); font-size: .7em; font-style: normal; }
.marquee span.fill { color: var(--gold); -webkit-text-stroke: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Floating decorative aperture / ring outlines that drift on scroll */
.deco {
  position: absolute; border: 1.5px solid var(--line); border-radius: 50%;
  pointer-events: none; z-index: 0; opacity: .5;
}
.deco.spin { animation: spin 22s linear infinite; }
.deco.spin.rev { animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Back-to-top button */
.back-top {
  position: fixed; bottom: 98px; right: 26px; z-index: 1500;
  width: 48px; height: 48px; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--gold); color: var(--gold);
  display: grid; place-items: center; cursor: pointer; font-size: 1rem;
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all var(--ease);
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--gold); color: var(--black); box-shadow: var(--shadow-gold); }

/* 3D tilt cards — smooth transform */
.tilt { transform-style: preserve-3d; transition: transform .15s ease; will-change: transform; }

/* Zoom-in reveal variant */
.reveal.zoom { transform: translateY(40px) scale(.94); }
.reveal.zoom.visible { transform: translateY(0) scale(1); }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .bokeh, .marquee-track, .deco.spin, .hero .script, .section-head .script,
  .page-banner .script, .cta-banner .script, .split-text .script, .wa-float,
  .grain, .hero-chip, .ornament .diamond, .preloader .loader-logo, .preloader .loader-ring { animation: none !important; }
  .hero-bg { background-attachment: scroll !important; }
}

/* ---------- 17. PREMIUM WOW ELEMENTS ---------- */

/* Preloader — logo + spinning gold aperture ring */
.preloader {
  position: fixed; inset: 0; z-index: 5000; background: var(--black);
  display: grid; place-items: center; transition: opacity .7s ease, visibility .7s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader .loader-logo {
  height: 120px; filter: drop-shadow(0 0 16px rgba(212,175,55,.55)) brightness(1.12);
  animation: pulseLogo 1.8s ease-in-out infinite;
}
.preloader .loader-ring {
  position: absolute; width: 210px; height: 210px; border-radius: 50%;
  border: 2px solid rgba(212,175,55,.15);
  border-top-color: var(--gold); border-right-color: var(--gold);
  animation: spin 1s linear infinite;
}
@keyframes pulseLogo { 0%,100%{ transform: scale(1); opacity: .85; } 50%{ transform: scale(1.06); opacity: 1; } }

/* Custom gold cursor (desktop, fine-pointer only) */
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px; z-index: 4000;
  border: 1.5px solid var(--gold); border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .25s ease, height .25s ease, background .25s ease, opacity .3s ease;
  mix-blend-mode: screen;
}
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 6px; height: 6px; z-index: 4001;
  background: var(--gold); border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); box-shadow: 0 0 10px rgba(212,175,55,.9);
}
.cursor-ring.hover { width: 66px; height: 66px; background: rgba(212,175,55,.12); }
body.gold-cursor, body.gold-cursor a, body.gold-cursor button { cursor: none; }
body.gold-cursor input, body.gold-cursor textarea { cursor: text; }

/* Cinematic film-grain overlay */
.grain {
  position: fixed; inset: -50%; z-index: 900; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift .6s steps(2) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); } 50% { transform: translate(-4%, 3%); } 100% { transform: translate(3%, -2%); }
}

/* Button shine sweep */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-22deg); transition: left .7s ease; pointer-events: none;
}
.btn:hover::after { left: 150%; }

/* Ornamental gold divider between sections */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  padding: 46px 0; color: var(--gold);
}
.ornament .bar { height: 1px; width: min(180px, 26vw); }
.ornament .bar.l { background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament .bar.r { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament .diamond {
  width: 12px; height: 12px; border: 1.5px solid var(--gold); transform: rotate(45deg);
  position: relative; animation: floaty 3s ease-in-out infinite;
}
.ornament i { font-size: 1.15rem; opacity: .9; }

/* ---------- 18. TYPEWRITER · APERTURE · BEFORE-AFTER ---------- */

/* Typewriter rotating word in hero */
.typed-wrap { color: var(--gold); }
.typed { color: var(--gold); font-weight: 500; }
.typed-caret {
  display: inline-block; width: 2px; height: 1em; margin-left: 3px;
  background: var(--gold); vertical-align: -2px; animation: caretBlink 1s steps(1) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* Animated aperture shutter in preloader */
.aperture { position: absolute; width: 150px; height: 150px; }
.aperture svg { width: 100%; height: 100%; overflow: visible; }
.aperture .blades {
  transform-box: view-box; transform-origin: 50px 50px;
  animation: spin 3.2s linear infinite; transition: transform 1s cubic-bezier(.7,0,.2,1), opacity 1s ease;
}
.aperture .blades path {
  fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round; opacity: .85;
}
.preloader.hidden .aperture .blades { animation: none; transform: scale(3.4) rotate(120deg); opacity: 0; } /* iris opens on reveal */

/* Before / After edit comparison slider */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.ba {
  position: relative; --pos: 50%; overflow: hidden; border-radius: 4px;
  border: 1px solid var(--line); cursor: ew-resize; user-select: none; touch-action: none;
  box-shadow: 0 18px 45px rgba(0,0,0,.5);
}
.ba img { display: block; pointer-events: none; }
.ba-after { width: 100%; filter: saturate(1.18) contrast(1.06); }               /* edited look */
.ba-before { position: absolute; top: 0; left: 0; height: 100%; width: var(--pos); overflow: hidden; }
.ba-before img { position: absolute; top: 0; left: 0; height: 100%; width: auto; max-width: none;
  filter: grayscale(.6) brightness(.8) contrast(.9) saturate(.6); }             /* raw / unedited look */
.ba-line { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--gold); transform: translateX(-1px); box-shadow: 0 0 12px rgba(212,175,55,.8); }
.ba-handle {
  position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--black);
  display: grid; place-items: center; box-shadow: var(--shadow-gold); font-size: .85rem;
}
.ba-label {
  position: absolute; bottom: 14px; z-index: 2; font-size: .7rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 2px; background: rgba(0,0,0,.6);
  border: 1px solid var(--line); color: var(--gold);
}
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; }

/* ---------- 19. RESPONSIVE ---------- */
@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { order: -1; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-grid .hero-text { max-width: none; }
  .hero-grid .hero-text .hero-btns { justify-content: center; }
  .hero-credit { justify-content: center; }
  .hero-portrait { max-width: 380px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col.about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero-bg, .page-banner .hero-bg, .cta-banner .hero-bg { background-attachment: scroll; } /* perf on mobile */

  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh;
    background: rgba(8,8,8,.98); backdrop-filter: blur(8px); flex-direction: column;
    justify-content: center; gap: 30px; transition: right var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 1rem; }
  .nav-logo img { height: 66px; }
  .header.scrolled .nav-logo img { height: 54px; }
  .footer-logo img { height: 92px; }
  .preloader .loader-logo { height: 90px; }
  .preloader .loader-ring { width: 160px; height: 160px; }
  .aperture { width: 118px; height: 118px; }
  .ornament { padding: 34px 0; gap: 12px; }
  .ba-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col.about { grid-column: auto; }
  .stats { gap: 26px; }
  .contact-form { padding: 28px 22px; }
  .btn { padding: 12px 26px; font-size: .82rem; }
}
