/*
Theme Name: Genny's Films
Theme URI: https://gennysfilms.com
Author: Genny's Films
Description: Cinematic wedding photography theme - premium, immersive, conversion-optimized.
Version: 1.0
License: GPL v2 or later
Text Domain: gennysfilms
*/

:root {
  --black: #0a0905; --white: #faf8f4; --cream: #f2ede4;
  --gold: #b8955a; --gold-light: #d4ae7a; --gold-pale: #e8d9c0;
  --charcoal: #1c1a16; --mid: #4a4540; --muted: #8a8278;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black); color: var(--white);
  font-family: var(--sans); font-weight: 300; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  .cursor { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: transform 0.1s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease); }
  .cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(184,149,90,0.5); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: transform 0.18s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease); }
  .cursor-hover .cursor { width: 16px; height: 16px; background: var(--gold-light); }
  .cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--gold); }
  a, button, .work-item, .blog-card, .addon-item, .filter-btn, .dot { cursor: none; }
}
@media (hover: none) { .cursor, .cursor-ring { display: none !important; } }

nav.site-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 2rem 4vw; display: flex; align-items: center; justify-content: space-between; transition: background 0.5s var(--ease), padding 0.4s var(--ease); }
nav.site-nav.scrolled { background: rgba(10,9,5,0.92); backdrop-filter: blur(12px); padding: 1.2rem 4vw; border-bottom: 1px solid rgba(184,149,90,0.15); }
.nav-logo { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 400; letter-spacing: 0.08em; color: var(--white); }
.nav-logo span { color: var(--gold); }
.nav-menu { display: flex; gap: clamp(1.5rem, 3vw, 3rem); list-style: none; align-items: center; }
.nav-menu a { font-family: var(--sans); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,248,244,0.7); transition: color 0.3s; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease-out); }
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu .current-menu-item > a, .nav-menu .current_page_item > a { color: var(--gold); }
.nav-cta { background: transparent; border: 1px solid var(--gold); color: var(--gold) !important; padding: 0.5rem 1.4rem; transition: background 0.3s, color 0.3s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--black) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; z-index: 1002; background: transparent; border: none; }
.hamburger span { width: 24px; height: 1px; background: var(--white); transition: all 0.3s var(--ease); display: block; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(10,9,5,0.97); z-index: 1001; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.mobile-menu a { font-family: var(--serif); font-size: clamp(1.8rem, 5vw, 2.5rem); color: var(--white); font-weight: 300; letter-spacing: 0.05em; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }

.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s ease-out; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,9,5,0.3) 0%, rgba(10,9,5,0.5) 60%, rgba(10,9,5,0.85) 100%); }
.hero-bg.loaded { transform: scale(1); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; opacity: 0; transform: translateY(30px); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.hero-content.visible { opacity: 1; transform: translateY(0); }
.hero-eyebrow, .section-eyebrow { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.hero-eyebrow { margin-bottom: 1.8rem; font-size: 0.68rem; }
.hero-title { font-family: var(--serif); font-size: clamp(3.2rem, 9vw, 8rem); font-weight: 300; line-height: 0.95; letter-spacing: -0.01em; margin-bottom: 2rem; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: clamp(0.8rem, 1.5vw, 1rem); letter-spacing: 0.1em; color: rgba(250,248,244,0.7); margin: 0 auto 3rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1.2rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-primary, .btn-ghost { display: inline-block; padding: 1rem 2.5rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; transition: all 0.3s; border: none; }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(250,248,244,0.35); font-weight: 400; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2; }
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(250,248,244,0.5); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }

.gold-rule { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 2.5rem; }
.display-text { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 300; line-height: 1.2; margin-bottom: 1.8rem; }
.display-text em { font-style: italic; color: var(--gold-light); }
.body-text { font-size: clamp(0.85rem, 1.2vw, 0.95rem); line-height: 1.9; color: rgba(250,248,244,0.65); max-width: 680px; margin: 0 auto; }
.intro-strip { padding: 6rem 4vw; max-width: 900px; margin: 0 auto; text-align: center; }
.featured-section { padding: 2rem 4vw 6rem; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 1rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
.see-all { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); white-space: nowrap; display: flex; align-items: center; gap: 0.5rem; transition: gap 0.3s; }
.see-all::after { content: '→'; }
.see-all:hover { gap: 0.9rem; }

.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0.8rem; }
.work-item { position: relative; overflow: hidden; }
.work-grid .work-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.work-grid .work-item:nth-child(2) { grid-column: span 5; }
.work-grid .work-item:nth-child(3) { grid-column: span 5; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); filter: brightness(0.85); }
.work-grid .work-item:nth-child(1) img { min-height: 520px; }
.work-grid .work-item:nth-child(2) img, .work-grid .work-item:nth-child(3) img { min-height: 250px; }
.work-item:hover img { transform: scale(1.04); filter: brightness(1); }
.work-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,5,0.7) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.8rem; opacity: 0; transition: opacity 0.4s var(--ease); }
.work-item:hover .work-overlay { opacity: 1; }
.work-label { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.work-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; }

.stats-bar { border-top: 1px solid rgba(184,149,90,0.2); border-bottom: 1px solid rgba(184,149,90,0.2); padding: 3.5rem 4vw; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 300; color: var(--gold-light); display: block; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }

.services-preview { padding: 6rem 4vw; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1px; border: 1px solid rgba(184,149,90,0.15); margin-top: 3.5rem; }
.service-card { padding: 3rem 2.5rem; border-right: 1px solid rgba(184,149,90,0.15); position: relative; overflow: hidden; transition: background 0.4s; }
.service-card:last-child { border-right: none; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(to right, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: rgba(184,149,90,0.04); }
.service-num { font-family: var(--serif); font-size: 0.9rem; color: var(--gold); letter-spacing: 0.1em; display: block; margin-bottom: 1.5rem; opacity: 0.7; }
.service-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.8rem; line-height: 1.2; }
.service-desc { font-size: 0.82rem; line-height: 1.8; color: rgba(250,248,244,0.55); }
.service-arrow { display: block; margin-top: 2rem; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); transition: letter-spacing 0.3s; }
.service-card:hover .service-arrow { letter-spacing: 0.35em; }

.testimonials-strip { padding: 6rem 4vw; position: relative; background: var(--charcoal); }
.testimonials-strip::before { content: '"'; position: absolute; top: -1rem; left: 3vw; font-family: var(--serif); font-size: clamp(8rem, 18vw, 16rem); color: rgba(184,149,90,0.08); line-height: 1; pointer-events: none; }
.testimonial-slider { position: relative; max-width: 780px; margin: 0 auto; text-align: center; }
.testimonial { display: none; }
.testimonial.active { display: block; }
.testimonial-text { font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 300; font-style: italic; line-height: 1.6; color: var(--white); margin-bottom: 2rem; }
.testimonial-author { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.testimonial-location { font-size: 0.68rem; color: var(--muted); margin-top: 0.3rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 2.5rem; }
.dot { width: 24px; height: 1px; background: rgba(184,149,90,0.3); border: none; padding: 0; transition: background 0.3s, width 0.3s; }
.dot.active { background: var(--gold); width: 40px; }

.instagram-strip { padding: 5rem 0 0; }
.instagram-strip .section-inner { padding: 0 4vw; text-align: center; margin-bottom: 3rem; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.4rem; }
.insta-item { aspect-ratio: 1; overflow: hidden; position: relative; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); transition: transform 0.6s var(--ease), filter 0.4s; }
.insta-item:hover img { transform: scale(1.06); filter: brightness(1); }
.insta-handle { display: block; text-align: center; padding: 2.5rem; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); transition: color 0.3s; }
.insta-handle:hover { color: var(--gold-light); }

.cta-banner { padding: 8rem 4vw; text-align: center; position: relative; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.cta-banner-bg::after { content: ''; position: absolute; inset: 0; background: rgba(10,9,5,0.75); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner .display-text { font-size: clamp(2.5rem, 5.5vw, 4rem); margin-bottom: 1rem; }
.cta-banner .body-text { margin-bottom: 3rem; }

footer.site-footer { background: var(--charcoal); padding: 5rem 4vw 2.5rem; border-top: 1px solid rgba(184,149,90,0.15); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 1rem; }
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: 0.82rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.8rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(184,149,90,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--muted); transition: border-color 0.3s, color 0.3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a { font-size: 0.82rem; color: var(--muted); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(184,149,90,0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.72rem; color: var(--muted); }
.footer-copy a { color: var(--gold); }

.about-hero { height: 70vh; position: relative; display: flex; align-items: flex-end; padding: 4rem 4vw; overflow: hidden; background-size: cover; background-position: center; }
.about-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,9,5,0.2), rgba(10,9,5,0.75)); }
.about-hero h1 { position: relative; z-index: 1; font-family: var(--serif); font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; line-height: 1; max-width: 700px; }
.about-hero h1 em { font-style: italic; color: var(--gold-light); }
.about-content { max-width: 1100px; margin: 0 auto; padding: 6rem 4vw; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-bottom: 6rem; }
.about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: brightness(0.9); }
.about-text h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.2; }
.about-text h2 em { font-style: italic; color: var(--gold-light); }
.about-text p { font-size: 0.9rem; line-height: 1.9; color: rgba(250,248,244,0.65); margin-bottom: 1.2rem; }
.philosophy-section { padding: 5rem 4vw; background: var(--charcoal); text-align: center; }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; max-width: 1000px; margin: 4rem auto 0; }
.philosophy-item h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin-bottom: 0.8rem; color: var(--gold-light); }
.philosophy-item p { font-size: 0.82rem; line-height: 1.85; color: var(--muted); }

.portfolio-hero { padding: 12rem 4vw 4rem; text-align: center; }
.portfolio-hero h1 { font-family: var(--serif); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300; margin-bottom: 1rem; }
.portfolio-hero h1 em { font-style: italic; color: var(--gold-light); }
.portfolio-filters { display: inline-flex; margin: 3rem 0; border: 1px solid rgba(184,149,90,0.2); flex-wrap: wrap; }
.filter-btn { padding: 0.8rem 2rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; background: transparent; color: var(--muted); border: none; border-right: 1px solid rgba(184,149,90,0.2); transition: all 0.3s; }
.filter-btn:last-child { border-right: none; }
.filter-btn.active { background: var(--gold); color: var(--black); }
.filter-btn:hover:not(.active) { color: var(--white); background: rgba(184,149,90,0.08); }
.portfolio-grid { padding: 2rem 4vw 6rem; }
.portfolio-masonry { columns: 3; column-gap: 0.8rem; }
.portfolio-masonry .work-item { break-inside: avoid; margin-bottom: 0.8rem; display: block; }
.portfolio-masonry .work-item img { width: 100%; height: auto; min-height: unset; display: block; }
.portfolio-masonry .work-overlay { opacity: 1; background: linear-gradient(to top, rgba(10,9,5,0.6) 0%, transparent 60%); }

.services-hero { padding: 12rem 4vw 5rem; max-width: 900px; margin: 0 auto; text-align: center; }
.packages-section { padding: 2rem 4vw 6rem; max-width: 1200px; margin: 0 auto; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(184,149,90,0.2); }
.package-card { padding: 3.5rem 2.5rem; border-right: 1px solid rgba(184,149,90,0.2); position: relative; transition: background 0.4s; }
.package-card:last-child { border-right: none; }
.package-card.featured { background: rgba(184,149,90,0.06); }
.package-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--gold); color: var(--black); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; padding: 0.35rem 1.2rem; white-space: nowrap; }
.package-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; margin-bottom: 0.5rem; }
.package-price { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--gold-light); margin-bottom: 0.3rem; }
.package-price-note { font-size: 0.72rem; color: var(--muted); margin-bottom: 2rem; display: block; }
.package-divider { height: 1px; background: rgba(184,149,90,0.2); margin-bottom: 2rem; }
.package-features { list-style: none; margin-bottom: 2.5rem; }
.package-features li { font-size: 0.82rem; line-height: 1.7; color: rgba(250,248,244,0.65); padding: 0.4rem 0 0.4rem 1.2rem; position: relative; }
.package-features li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; }
.package-cta { display: block; text-align: center; padding: 0.9rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.3s; }
.package-cta.outline { border: 1px solid rgba(184,149,90,0.35); color: var(--gold); }
.package-cta.outline:hover { border-color: var(--gold); background: rgba(184,149,90,0.1); }
.package-cta.filled { background: var(--gold); color: var(--black); font-weight: 500; }
.package-cta.filled:hover { background: var(--gold-light); }
.add-ons-section { padding: 5rem 4vw; background: var(--charcoal); }
.add-ons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; max-width: 1000px; margin: 3rem auto 0; }
.addon-item { padding: 2rem; border: 1px solid rgba(184,149,90,0.15); transition: border-color 0.3s, background 0.3s; }
.addon-item:hover { border-color: rgba(184,149,90,0.4); background: rgba(184,149,90,0.04); }
.addon-item h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.5rem; }
.addon-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.7; }

.blog-hero { padding: 12rem 4vw 4rem; text-align: center; }
.blog-grid { padding: 2rem 4vw 6rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
.blog-card { transition: transform 0.4s var(--ease); display: block; color: inherit; }
.blog-card:hover { transform: translateY(-6px); }
.blog-thumb { aspect-ratio: 16/10; overflow: hidden; margin-bottom: 1.5rem; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); transition: transform 0.6s var(--ease), filter 0.4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); filter: brightness(1); }
.blog-cat { font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block; }
.blog-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; line-height: 1.3; margin-bottom: 0.8rem; color: var(--white); }
.blog-excerpt { font-size: 0.8rem; line-height: 1.8; color: var(--muted); margin-bottom: 1rem; }
.blog-meta { font-size: 0.68rem; color: rgba(138,130,120,0.6); letter-spacing: 0.05em; }

.single-post-hero { padding: 10rem 4vw 4rem; max-width: 900px; margin: 0 auto; text-align: center; }
.single-post-hero .blog-cat { margin-bottom: 1rem; }
.single-post-hero h1 { font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem; }
.single-post-meta { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; }
.single-post-thumb { max-width: 1200px; margin: 0 auto 4rem; padding: 0 4vw; }
.single-post-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.single-post-content { max-width: 720px; margin: 0 auto; padding: 0 4vw 6rem; font-size: 1rem; line-height: 1.9; color: rgba(250,248,244,0.78); }
.single-post-content h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; margin: 3rem 0 1rem; color: var(--gold-light); }
.single-post-content h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; margin: 2.5rem 0 1rem; }
.single-post-content p { margin-bottom: 1.5rem; }
.single-post-content a { color: var(--gold); text-decoration: underline; }
.single-post-content blockquote { border-left: 2px solid var(--gold); padding: 0.5rem 0 0.5rem 2rem; margin: 2rem 0; font-style: italic; font-family: var(--serif); font-size: 1.3rem; color: var(--white); }
.single-post-content img { margin: 2rem 0; }
.single-post-content ul, .single-post-content ol { margin: 0 0 1.5rem 1.5rem; }
.single-post-content li { margin-bottom: 0.5rem; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.contact-left { padding: 10rem 4vw 4rem; display: flex; flex-direction: column; justify-content: center; position: relative; background-size: cover; background-position: center; }
.contact-left::before { content: ''; position: absolute; inset: 0; background: rgba(10,9,5,0.65); }
.contact-left > * { position: relative; z-index: 1; }
.contact-left h1 { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem; }
.contact-left h1 em { font-style: italic; color: var(--gold-light); }
.contact-left p { font-size: 0.88rem; line-height: 1.85; color: rgba(250,248,244,0.65); margin-bottom: 3rem; max-width: 400px; }
.contact-detail { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-item-icon { width: 40px; height: 40px; border: 1px solid rgba(184,149,90,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; color: var(--gold); }
.contact-item-text { font-size: 0.82rem; color: rgba(250,248,244,0.7); line-height: 1.5; }
.contact-item-text strong { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; font-weight: 400; }
.contact-right { padding: 10rem 4vw 4rem; background: var(--charcoal); display: flex; flex-direction: column; justify-content: center; }
.contact-right h2 { font-family: var(--serif); font-size: 2rem; font-weight: 300; margin-bottom: 0.5rem; }
.contact-right h2 em { font-style: italic; color: var(--gold-light); }
.contact-right > p { font-size: 0.82rem; color: var(--muted); margin-bottom: 2.5rem; }

.contact-form-wrapper input[type=text], .contact-form-wrapper input[type=email], .contact-form-wrapper input[type=tel], .contact-form-wrapper input[type=date], .contact-form-wrapper select, .contact-form-wrapper textarea { background: rgba(250,248,244,0.05) !important; border: 1px solid rgba(184,149,90,0.2) !important; color: var(--white) !important; font-family: var(--sans) !important; font-size: 0.85rem !important; font-weight: 300 !important; padding: 0.9rem 1rem !important; outline: none !important; border-radius: 0 !important; transition: border-color 0.3s !important; width: 100% !important; }
.contact-form-wrapper input:focus, .contact-form-wrapper select:focus, .contact-form-wrapper textarea:focus { border-color: var(--gold) !important; }
.contact-form-wrapper textarea { resize: none; min-height: 100px; }
.contact-form-wrapper label, .contact-form-wrapper .wpforms-field-label, .contact-form-wrapper .wpcf7-form-control-wrap label { font-family: var(--sans) !important; font-size: 0.62rem !important; letter-spacing: 0.2em !important; text-transform: uppercase !important; color: var(--muted) !important; margin-bottom: 0.6rem !important; font-weight: 400 !important; }
.contact-form-wrapper button[type=submit], .contact-form-wrapper input[type=submit] { background: var(--gold) !important; color: var(--black) !important; border: none !important; padding: 1.1rem 2.5rem !important; font-family: var(--sans) !important; font-size: 0.72rem !important; letter-spacing: 0.2em !important; text-transform: uppercase !important; font-weight: 500 !important; width: 100% !important; margin-top: 0.5rem !important; border-radius: 0 !important; transition: background 0.3s !important; }
.contact-form-wrapper button[type=submit]:hover, .contact-form-wrapper input[type=submit]:hover { background: var(--gold-light) !important; }
.whatsapp-cta { display: flex; align-items: center; justify-content: center; gap: 0.6rem; background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.25); color: #25d366; padding: 0.9rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.8rem; transition: background 0.3s; }
.whatsapp-cta:hover { background: rgba(37,211,102,0.2); }

.sticky-book { position: fixed; bottom: 2rem; right: 2rem; z-index: 900; display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-end; }
.sticky-btn { display: flex; align-items: center; gap: 0.6rem; padding: 0.85rem 1.5rem; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; white-space: nowrap; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.sticky-btn:hover { transform: translateY(-3px); }
.sticky-wa { background: #25d366; color: #fff; font-weight: 500; }
.sticky-enquire { background: var(--gold); color: var(--black); font-weight: 500; }

.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .work-grid .work-item:nth-child(1) { grid-column: span 12; }
  .work-grid .work-item:nth-child(2) { grid-column: span 6; }
  .work-grid .work-item:nth-child(3) { grid-column: span 6; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card { border-right: none; border-bottom: 1px solid rgba(184,149,90,0.2); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-left { min-height: 50vh; padding: 8rem 4vw 4rem; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-masonry { columns: 2; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .work-grid { grid-template-columns: 1fr; }
  .work-grid .work-item { grid-column: span 1 !important; }
  .work-grid .work-item img { min-height: 260px !important; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(184,149,90,0.15); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .portfolio-masonry { columns: 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .sticky-book { bottom: 1rem; right: 1rem; }
  .sticky-btn { padding: 0.75rem 1.1rem; font-size: 0.62rem; }
}
