/* ============================================
   ANTWORKS STUDIO — BOLD CINEMATIC DESIGN
   Complete stylesheet for all pages
   ============================================ */

/* Google Fonts loaded via <link> in HTML for better performance */

/* ============================================
   VARIABLES
   ============================================ */
:root {
  --black: #000000;
  --near-black: #0a0a0a;
  --white: #ffffff;
  --cream: #E9E1D0;
  --panel-bg: #F5F2ED;
  --gold: #C9A15C;
  --accent: #C9A15C;
  --text-main: #1a1a1a;
  --text-soft: #5C5E64;
  --text-muted: #888;
  
  --max-width: 1400px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

a { 
  color: inherit; 
  text-decoration: none; 
  transition: color 0.3s; 
}

a:hover { 
  color: var(--gold); 
}

img { 
  max-width: 100%; 
  height: auto; 
  display: block;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--gold);
  color: var(--black);
  padding: 12px 24px;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus { 
  top: 0; 
}

/* ============================================
   HEADER — Dark, premium
   ============================================ */
body > header,
header:not(.post-header) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.logo {
  z-index: 1001;
}

.logo img {
  height: 60px;
  width: auto;
}

nav, #main-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

nav a, #main-nav a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
  margin: 0;
}

nav a:hover, #main-nav a:hover { 
  opacity: 1; 
  color: var(--gold);
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

.mobile-menu-toggle .hamburger {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: background 0.3s;
}

.mobile-menu-toggle .hamburger::before,
.mobile-menu-toggle .hamburger::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.4s var(--ease);
}

.mobile-menu-toggle .hamburger::before { top: -8px; }
.mobile-menu-toggle .hamburger::after { bottom: -8px; }

.mobile-menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 110px 48px 0;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--text-muted);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 60px 48px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  margin-top: 48px;
  margin-bottom: 20px;
}

.section h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.section p {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 700px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
  margin-top: 20px;
}

.about-text h1 {
  margin-bottom: 32px;
}

.about-text p {
  margin-bottom: 24px;
}

.about-portrait {
  position: sticky;
  top: 120px;
}

.about-portrait img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* ============================================
   PHOTOGRAPHY PAGE — Masonry Gallery
   ============================================ */
.gallery {
  column-count: 4;
  column-gap: 20px;
  margin-top: 48px;
}

.gallery img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  break-inside: avoid;
}

.gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.96);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
  padding: 0 20px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-top: 48px;
  align-items: start;
}

.contact-portrait {
  position: sticky;
  top: 120px;
  padding-left: 24px;
  padding-right: 24px;
}

.contact-portrait img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
}

.contact-portrait h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-portrait p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
}

/* Contact Form */
.contact-form-wrapper form,
form {
  background: var(--panel-bg);
  padding: 48px;
  border-radius: 12px;
}

form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 24px;
  color: var(--text-main);
}

form label:first-of-type {
  margin-top: 0;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea,
form select {
  width: 100%;
  padding: 16px 18px;
  font-size: 16px;
  font-family: inherit;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 92, 0.15);
}

form textarea {
  min-height: 160px;
  resize: vertical;
}

form select {
  cursor: pointer;
}

/* Budget radio buttons */
.budget-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.budget-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  margin: 0;
  cursor: pointer;
}

.budget-options input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

form button[type="submit"],
button.cta,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  margin-top: 32px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
}

form button[type="submit"]:hover,
button.cta:hover,
.cta:hover {
  background: var(--text-main);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-list {
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 28px 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding-top: 20px;
  font-size: 16px;
  line-height: 1.8;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
}

.blog-card {
  background: var(--panel-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.blog-card .blog-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.blog-card .blog-content {
  padding: 28px;
}

.blog-card .blog-meta {
  margin-bottom: 12px;
}

.blog-card .blog-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--text-main);
}

.blog-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}

.blog-card .blog-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.blog-card .blog-link:hover {
  color: var(--gold);
}

/* Blog Post Page */
.blog-post {
  padding: 0 48px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-post .post-header {
  padding-top: 40px;
  margin-bottom: 48px;
}

.blog-post .post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-main);
}

.blog-post .post-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.blog-post .post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin: 56px 0 20px;
  color: var(--text-main);
}

.blog-post .post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  margin: 40px 0 16px;
}

.blog-post .post-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.blog-post .post-content strong {
  color: var(--text-main);
  font-weight: 600;
}

.blog-post .post-content img {
  width: 100%;
  border-radius: 8px;
}

.blog-post .post-content figure {
  margin: 40px 0;
}

.blog-post .post-content figcaption {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* ============================================
   BLOG POST - GOLD DROP CAP & PULL QUOTES
   Desktop styling for premium article experience
   ============================================ */

/* Gold drop cap for first paragraph - ONLY on blog post pages, NOT blog cards */
article.blog-post > p:first-of-type::first-letter,
article.blog-post > p.intro-paragraph::first-letter,
.blog-post > p.intro-paragraph::first-letter,
.blog-post .blog-content > p:first-of-type::first-letter,
.blog-post .post-content > p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif !important;
  font-size: 56px !important;
  float: left !important;
  line-height: 0.8 !important;
  padding-right: 12px !important;
  padding-top: 4px !important;
  margin-top: 0 !important;
  color: #C9A15C !important;
  font-weight: 400 !important;
}

/* Prevent drop cap on blog listing cards */
.blog-card p::first-letter,
.blog-card .blog-content p::first-letter,
.blog-grid p::first-letter {
  font-size: inherit !important;
  float: none !important;
  color: inherit !important;
  font-family: inherit !important;
  line-height: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Cinematic pull quotes / blockquotes */
.blog-post blockquote,
.blog-post .pull-quote,
article.blog-post blockquote,
.blog-content blockquote,
.section blockquote,
.blog-post p[style*="font-size"],
.blog-post .post-content p[style*="font-size"],
.blog-post .blog-content p[style*="font-size"],
.blog-content p[style*="font-size"],
article p[style*="font-size"] {
  position: relative !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 22px !important;
  font-style: italic !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: var(--text-main) !important;
  padding: 32px 32px 32px 48px !important;
  margin: 48px 0 !important;
  background: rgba(201, 161, 92, 0.12) !important;
  border-left: 5px solid #C9A15C !important;
  border-radius: 0 12px 12px 0 !important;
}

/* Big decorative quote mark */
.blog-post blockquote::before,
.blog-post .pull-quote::before,
article.blog-post blockquote::before,
.blog-content blockquote::before,
.section blockquote::before {
  content: '"' !important;
  position: absolute !important;
  top: 12px !important;
  left: 14px !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 64px !important;
  color: #C9A15C !important;
  opacity: 0.4 !important;
  line-height: 1 !important;
}

/* Remove default quote styling if browser adds any */
.blog-post blockquote p {
  margin: 0;
  font-size: inherit;
  font-style: inherit;
  line-height: inherit;
}

/* Quote attribution/citation */
.blog-post blockquote cite,
.blog-post blockquote footer {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  font-style: normal;
  color: var(--text-soft);
}

.blog-post blockquote cite::before {
  content: '— ';
}

/* ============================================
   WORK PAGE
   ============================================ */
   
/* Filter chips */
.filter-chips {
  display: flex;
  gap: 12px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  background: transparent;
  border: 2px solid rgba(0,0,0,0.15);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  color: var(--text-main);
}

.filter-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Case study grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.case-card {
  background: var(--panel-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.case-card.hidden {
  display: none;
}

.case-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}

.case-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: var(--black);
  border-radius: 8px;
}

.case-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  margin: 24px 24px 12px;
  color: var(--text-main);
}

.case-card p {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 24px 16px;
}

.case-card a {
  display: inline-block;
  margin: 0 24px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.case-card a:hover {
  color: var(--text-main);
}

/* Work grid (alternate class) */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.work-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 4/5;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s;
}

.work-item:hover img {
  transform: scale(1.05);
  opacity: 0.75;
}

.work-item a {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.work-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.work-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ============================================
   CASE STUDY PAGES
   ============================================ */
.case-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: -90px;
  padding-top: 90px;
}

.case-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
}

.case-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 48px;
  max-width: var(--max-width);
}

.case-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.case-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* ============================================
   FOOTER — Bold, clean
   ============================================ */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 48px 40px;
  margin-top: 40px;
}

footer::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
}

.footer-left strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  display: block;
  margin-bottom: 12px;
}

.footer-left {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: color 0.3s;
}

.footer-social .social-link:hover {
  color: var(--gold);
}

.footer-social .icon {
  font-weight: 600;
  min-width: 24px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  background: var(--near-black);
  padding: 80px 48px;
  text-align: center;
  border-radius: 12px;
  margin-top: 60px;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   UTILITIES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: none;
}

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

.btn-gold:hover {
  background: var(--text-main);
  color: var(--white);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
  .gallery {
    column-count: 3;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .work-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-portrait {
    position: static;
    order: -1;
    max-width: 400px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .contact-portrait {
    position: static;
  }
}


@media (max-width: 768px) {
  /* ============================================
     MOBILE WOW EXPERIENCE
     Premium mobile design with animations,
     micro-interactions, and cinematic feel
     ============================================ */

  /* ------------------------------------------
     CSS VARIABLES FOR MOBILE
     ------------------------------------------ */
  :root {
    --mobile-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --mobile-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  }

  /* ------------------------------------------
     SCROLL REVEAL ANIMATIONS - DRAMATIC
     ------------------------------------------ */
  .mobile-reveal {
    opacity: 0 !important;
    transform: translateY(60px) !important;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  
  .mobile-reveal.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  /* Stagger delays for cards - more noticeable */
  .case-card.mobile-reveal:nth-child(1) { transition-delay: 0s !important; }
  .case-card.mobile-reveal:nth-child(2) { transition-delay: 0.15s !important; }
  .case-card.mobile-reveal:nth-child(3) { transition-delay: 0.3s !important; }
  .case-card.mobile-reveal:nth-child(4) { transition-delay: 0.45s !important; }
  
  .blog-card.mobile-reveal:nth-child(1) { transition-delay: 0s !important; }
  .blog-card.mobile-reveal:nth-child(2) { transition-delay: 0.15s !important; }
  .blog-card.mobile-reveal:nth-child(3) { transition-delay: 0.3s !important; }
  
  .faq-item.mobile-reveal:nth-child(1) { transition-delay: 0s !important; }
  .faq-item.mobile-reveal:nth-child(2) { transition-delay: 0.08s !important; }
  .faq-item.mobile-reveal:nth-child(3) { transition-delay: 0.16s !important; }
  .faq-item.mobile-reveal:nth-child(4) { transition-delay: 0.24s !important; }
  .faq-item.mobile-reveal:nth-child(5) { transition-delay: 0.32s !important; }
  .faq-item.mobile-reveal:nth-child(6) { transition-delay: 0.4s !important; }
  .faq-item.mobile-reveal:nth-child(7) { transition-delay: 0.48s !important; }
  .faq-item.mobile-reveal:nth-child(8) { transition-delay: 0.56s !important; }
  
  /* Gallery images stagger */
  .gallery img.mobile-reveal:nth-child(odd) { transition-delay: 0s !important; }
  .gallery img.mobile-reveal:nth-child(even) { transition-delay: 0.1s !important; }
  
  .wow-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .wow-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  
  .wow-reveal-delay-1 { transition-delay: 0.1s; }
  .wow-reveal-delay-2 { transition-delay: 0.2s; }
  .wow-reveal-delay-3 { transition-delay: 0.3s; }
  .wow-reveal-delay-4 { transition-delay: 0.4s; }

  /* ------------------------------------------
     HEADER & NAVIGATION
     ------------------------------------------ */
  header,
  body > header,
  header:not(.post-header) {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    padding: 14px 20px !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  header .logo img {
    height: 50px !important;
    width: auto !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  
  header .logo:active img {
    transform: scale(0.95) !important;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  
  .mobile-menu-toggle:active {
    transform: scale(0.9) !important;
  }
  
  #main-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: var(--black) !important;
    flex-direction: column !important;
    padding: 100px 32px 32px !important;
    transition: right 0.4s var(--mobile-ease) !important;
    z-index: 999 !important;
  }
  
  #main-nav.mobile-open {
    right: 0 !important;
  }
  
  /* Staggered nav animation */
  #main-nav a {
    color: var(--white) !important;
    padding: 16px 0 !important;
    font-size: 18px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease !important;
  }
  
  #main-nav.mobile-open a {
    opacity: 1;
    transform: translateX(0);
  }
  
  #main-nav.mobile-open a:nth-child(1) { transition-delay: 0.1s; }
  #main-nav.mobile-open a:nth-child(2) { transition-delay: 0.15s; }
  #main-nav.mobile-open a:nth-child(3) { transition-delay: 0.2s; }
  #main-nav.mobile-open a:nth-child(4) { transition-delay: 0.25s; }
  #main-nav.mobile-open a:nth-child(5) { transition-delay: 0.3s; }
  #main-nav.mobile-open a:nth-child(6) { transition-delay: 0.35s; }
  
  #main-nav a:active {
    color: var(--gold) !important;
  }
  
  .breadcrumb {
    display: none !important;
  }

  /* ------------------------------------------
     GENERAL SECTION STYLES
     ------------------------------------------ */
  .section {
    padding: 100px 20px 48px !important;
  }
  
  .section h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }
  
  .section > p {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  /* ------------------------------------------
     WORK PAGE - Full-Screen Immersive Cards
     Like a premium portfolio app
     ------------------------------------------ */
  .work-page .section {
    padding: 90px 0 40px !important;
  }
  
  .work-page .section > h1 {
    text-align: center !important;
    padding: 0 20px !important;
    font-size: 32px !important;
    margin-bottom: 8px !important;
  }
  
  .work-page .section > p {
    text-align: center !important;
    max-width: 300px !important;
    margin: 0 auto 20px !important;
    padding: 0 20px !important;
    font-size: 14px !important;
    color: var(--text-soft) !important;
  }
  
  /* Horizontal scrolling filter chips - CENTERED */
  .work-page .filter-chips {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 0 20px 24px !important;
    margin-bottom: 0 !important;
  }
  
  .work-page .filter-chip {
    flex-shrink: 0 !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    border-radius: 100px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  
  .work-page .filter-chip:active {
    transform: scale(0.95) !important;
  }
  
  .work-page .case-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 0 16px !important;
  }
  
  /* IMMERSIVE CARDS - Full width, 16:9 to match video footage */
  .work-page .case-card {
    position: relative !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    background: #000 !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2) !important;
  }
  
  .work-page .case-card:active {
    transform: scale(0.97) !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3) !important;
  }
  
  .work-page .case-card img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  
  /* CINEMATIC GRADIENT OVERLAY - stronger */
  .work-page .case-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(
      to top,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,0.8) 25%,
      rgba(0,0,0,0.4) 50%,
      rgba(0,0,0,0.1) 75%,
      transparent 100%
    ) !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }
  
  .work-page .case-card::after {
    display: none !important;
  }
  
  .work-page .case-card h3 {
    position: absolute !important;
    bottom: 80px !important;
    left: 24px !important;
    right: 24px !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    color: var(--white) !important;
    margin: 0 !important;
    z-index: 2 !important;
    line-height: 1.15 !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
  }
  
  .work-page .case-card p {
    display: none !important;
  }
  
  .work-page .case-card a {
    position: absolute !important;
    bottom: 28px !important;
    left: 24px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    z-index: 2 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  
  .work-page .case-card a::after {
    content: '→' !important;
  }

  /* ------------------------------------------
     ABOUT PAGE - Photo ABOVE text, no overlap
     ------------------------------------------ */
  .about.section,
  .section.about {
    padding: 80px 0 48px !important;
  }
  
  .about .about-layout {
    display: block !important;
  }
  
  /* Portrait comes first visually */
  .about .about-portrait {
    display: block !important;
    width: 100% !important;
    margin-bottom: 32px !important;
    position: static !important;
    top: auto !important;
  }
  
  .about .about-portrait img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    object-position: center 25% !important;
    display: block !important;
  }
  
  /* Text below */
  .about .about-text {
    display: block !important;
    padding: 0 24px !important;
  }
  
  .about .about-text h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px !important;
    font-weight: 400 !important;
    text-align: center !important;
    margin-bottom: 24px !important;
  }
  
  .about .about-text h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    text-align: center !important;
    margin: 40px 0 16px !important;
    color: var(--text-main) !important;
  }
  
  .about .about-text p {
    font-size: 16px !important;
    line-height: 1.75 !important;
    color: var(--text-soft) !important;
    margin-bottom: 16px !important;
  }
  
  /* Drop cap for first paragraph - BIG and GOLD */
  .about .about-text p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif !important;
    font-size: 72px !important;
    float: left !important;
    line-height: 0.75 !important;
    padding-right: 12px !important;
    padding-top: 4px !important;
    color: #C9A15C !important;
    font-weight: 400 !important;
  }

  /* ------------------------------------------
     CONTACT PAGE - Elegant Centered Layout
     ------------------------------------------ */
  .contact-grid,
  div.contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    grid-template-columns: 1fr !important;
  }
  
  .contact-portrait,
  div.contact-portrait {
    order: -1 !important;
    text-align: center !important;
    position: relative !important;
    top: auto !important;
  }
  
  .contact-portrait img {
    width: 180px !important;
    height: 180px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin: 0 auto 24px !important;
    display: block !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
  }
  
  .contact-portrait h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    text-align: center !important;
    margin-bottom: 8px !important;
  }
  
  .contact-portrait p {
    font-size: 15px !important;
    text-align: center !important;
    color: var(--text-soft) !important;
    line-height: 1.6 !important;
  }
  
  /* Form micro-interactions */
  .contact-form input,
  .contact-form textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201,161,92,0.15) !important;
    outline: none !important;
  }
  
  .contact-form button:active {
    transform: scale(0.97) !important;
  }

  /* ------------------------------------------
     BLOG PAGE - Premium Magazine Cards
     ------------------------------------------ */
  .blog-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
  }
  
  .blog-card {
    border-radius: 20px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  
  .blog-card:active {
    transform: scale(0.97) translateY(2px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
  }
  
  .blog-card .blog-image {
    width: 100% !important;
    overflow: hidden !important;
  }
  
  .blog-card .blog-image img {
    width: 100% !important;
    aspect-ratio: 16/10 !important;
    object-fit: cover !important;
    display: block !important;
  }
  
  .blog-card .blog-content {
    padding: 28px 24px 32px !important;
    text-align: center !important;
  }
  
  .blog-card .blog-category {
    font-size: 10px !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    font-weight: 700 !important;
    display: block !important;
    margin-bottom: 16px !important;
  }
  
  .blog-card h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
    text-align: center !important;
    color: var(--text-main) !important;
  }
  
  .blog-card .blog-content p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    margin-bottom: 20px !important;
  }
  
  .blog-card .blog-link {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: var(--gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
  }
  
  .blog-card .blog-link::after {
    content: '→' !important;
  }

  /* ------------------------------------------
     BLOG POSTS - Cinematic Editorial Reading
     ------------------------------------------ */
  .blog-post {
    padding-top: 100px !important;
  }
  
  .blog-post .post-header,
  .blog-post .blog-header {
    text-align: center !important;
    margin-bottom: 40px !important;
    padding: 0 20px !important;
    background: transparent !important;
  }
  
  .blog-post .post-header h1,
  .blog-post h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: 30px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    color: var(--text-main) !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.02em !important;
  }
  
  .blog-post .post-meta {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    text-align: center !important;
  }
  
  .blog-post .blog-category {
    font-size: 10px !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    display: block !important;
  }
  
  .blog-post .post-content h2,
  .blog-post h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    margin: 48px 0 20px !important;
    color: var(--text-main) !important;
    text-align: center !important;
  }
  
  .blog-post .post-content h3,
  .blog-post h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 36px 0 16px !important;
    color: var(--text-main) !important;
  }
  
  .blog-post .post-content p,
  .blog-post p {
    font-size: 17px !important;
    line-height: 1.85 !important;
    color: var(--text-soft) !important;
    margin-bottom: 24px !important;
  }
  
  /* GOLD DROP CAP - First letter of first paragraph - ONLY on blog post pages */
  article.blog-post > p:first-of-type::first-letter,
  article.blog-post > p.intro-paragraph::first-letter,
  .blog-post > p.intro-paragraph::first-letter,
  .blog-post .blog-content > p:first-of-type::first-letter,
  .blog-post .post-content > p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif !important;
    font-size: 48px !important;
    float: left !important;
    line-height: 0.8 !important;
    padding-right: 10px !important;
    padding-top: 4px !important;
    margin-top: 0 !important;
    color: #C9A15C !important;
    font-weight: 400 !important;
  }
  
  /* Prevent drop cap on blog listing cards */
  .blog-card p::first-letter,
  .blog-card .blog-content p::first-letter,
  .blog-grid p::first-letter {
    font-size: inherit !important;
    float: none !important;
    color: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* CINEMATIC PULL QUOTES - UNMISSABLE */
  .blog-post blockquote,
  .section blockquote,
  .blog-post p[style*="font-size"],
  .blog-post .post-content p[style*="font-size"],
  .post-content p[style*="font-size"],
  article p[style*="font-size"] {
    position: relative !important;
    display: block !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 20px !important;
    font-style: italic !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #1a1a1a !important;
    border: none !important;
    padding: 32px 24px 32px 32px !important;
    margin: 40px 0 !important;
    background: rgba(201,161,92,0.18) !important;
    border-left: 5px solid #C9A15C !important;
    border-radius: 0 12px 12px 0 !important;
  }
  
  /* Big decorative quote mark */
  .blog-post blockquote::before,
  .section blockquote::before {
    content: '"' !important;
    position: absolute !important;
    top: 8px !important;
    left: 12px !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 64px !important;
    color: #C9A15C !important;
    opacity: 0.5 !important;
    line-height: 1 !important;
  }
  
  /* FULL-BLEED IMAGES */
  .blog-post .post-content img,
  .blog-post img {
    width: calc(100% + 40px) !important;
    max-width: none !important;
    margin: 40px -20px !important;
    border-radius: 0 !important;
    display: block !important;
  }
  
  .blog-post figure {
    margin: 40px -20px !important;
  }
  
  .blog-post figure img {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
  
  .blog-post figcaption {
    padding: 16px 20px !important;
    font-size: 13px !important;
    color: var(--text-muted) !important;
    text-align: center !important;
    font-style: italic !important;
  }

  /* ------------------------------------------
     LOKO PAGE - Poster Mobile Fix
     ------------------------------------------ */
  .loko-hero-grid {
    flex-direction: column !important;
    gap: 24px !important;
  }
  
  .loko-poster {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .loko-poster img {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .loko-watch {
    text-align: center !important;
    width: 100% !important;
  }
  
  .loko-watch h2 {
    text-align: center !important;
  }
  
  .loko-watch > div {
    margin: 0 auto !important;
    align-items: center !important;
  }
  
  .loko-watch p {
    text-align: center !important;
  }

  /* ------------------------------------------
     CASE STUDY PAGES - Cinematic Video Experience
     ------------------------------------------ */
  /* Full bleed main video */
  .section > video,
  .section video[style] {
    width: calc(100% + 40px) !important;
    max-width: none !important;
    margin: 24px -20px 32px !important;
    border-radius: 0 !important;
    background: var(--black) !important;
  }
  
  /* Video grid (like MHAW) */
  .section .case-grid:not(.work-page .case-grid) {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin: 32px 0 !important;
  }
  
  .section .case-grid:not(.work-page .case-grid) .case-card {
    background: var(--black) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    aspect-ratio: auto !important;
    position: relative !important;
    transition: transform 0.3s var(--mobile-ease) !important;
  }
  
  .section .case-grid:not(.work-page .case-grid) .case-card:active {
    transform: scale(0.98) !important;
  }
  
  .section .case-grid:not(.work-page .case-grid) .case-card::before,
  .section .case-grid:not(.work-page .case-grid) .case-card::after {
    display: none !important;
  }
  
  .section .case-grid:not(.work-page .case-grid) .case-card h3 {
    position: relative !important;
    color: var(--white) !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 18px !important;
    padding: 20px 20px 12px !important;
    margin: 0 !important;
    background: var(--black) !important;
    bottom: auto !important;
    left: auto !important;
  }
  
  .section .case-grid:not(.work-page .case-grid) .case-card video {
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    display: block !important;
    background: var(--black) !important;
  }
  
  /* Case study h2 headings */
  .section h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    margin: 48px 0 20px !important;
    color: var(--text-main) !important;
  }
  
  /* Clean credits list */
  .section ul,
  .section ul[style] {
    font-size: 15px !important;
    line-height: 1.8 !important;
    padding-left: 0 !important;
    list-style: none !important;
  }
  
  .section ul li {
    padding: 16px 0 !important;
    font-size: 15px !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    color: var(--text-soft) !important;
  }
  
  .section ul li:last-child {
    border-bottom: none !important;
  }
  
  /* CTA boxes - full bleed */
  .section > div[style*="background: var(--panel-bg)"],
  .section > div[style*="background:var(--panel-bg)"] {
    margin: 48px -20px 0 !important;
    padding: 40px 24px !important;
    border-radius: 0 !important;
    text-align: center !important;
  }
  
  .section > div[style*="background"] h2 {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }
  
  .section > div[style*="background"] a:active {
    transform: scale(0.97) !important;
  }

  /* ------------------------------------------
     PHOTOGRAPHY PAGE - Gallery and Lightbox
     ------------------------------------------ */
  .gallery {
    column-count: 2 !important;
    column-gap: 10px !important;
    padding: 0 !important;
  }
  
  .gallery img {
    margin-bottom: 10px !important;
    border-radius: 12px !important;
    width: 100% !important;
    cursor: pointer !important;
    display: block !important;
  }
  
  .gallery img:active {
    transform: scale(0.96) !important;
    opacity: 0.9 !important;
  }
  
  /* LIGHTBOX - Fixed positioning */
  .lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.98) !important;
    z-index: 10000 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .lightbox.active {
    display: flex !important;
  }
  
  .lightbox-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    padding: 70px 20px 100px !important;
    box-sizing: border-box !important;
  }
  
  .lightbox-content img,
  .lightbox img#lightbox-img {
    max-width: 95vw !important;
    max-height: 60vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }
  
  /* Caption below image - use static positioning in flex column */
  .lightbox-caption,
  #lightbox-caption {
    position: static !important;
    margin-top: 16px !important;
    padding: 0 20px 20px !important;
    text-align: center !important;
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    max-height: none !important;
    overflow: visible !important;
  }
  
  /* Close button */
  .lightbox-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 32px !important;
    line-height: 40px !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 50% !important;
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10001 !important;
  }
  
  .lightbox-close:active {
    background: rgba(255,255,255,0.3) !important;
    transform: scale(0.9) !important;
  }
  
  /* Nav buttons */
  .lightbox-nav,
  .lightbox-prev,
  .lightbox-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 28px !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 50% !important;
    border: none !important;
    color: white !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10001 !important;
  }
  
  .lightbox-prev {
    left: 12px !important;
  }
  
  .lightbox-next {
    right: 12px !important;
  }
  
  .lightbox-prev:active,
  .lightbox-next:active {
    background: rgba(255,255,255,0.3) !important;
    transform: translateY(-50%) scale(0.9) !important;
  }

  /* ------------------------------------------
     FAQ PAGE - Animated Accordion
     ------------------------------------------ */
  .faq-page .faq {
    margin-top: 32px !important;
  }
  
  .faq-item {
    padding: 0 20px !important;
    margin: 0 -20px !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    overflow: hidden !important;
    background: var(--panel-bg) !important;
    border-radius: 0 !important;
  }
  
  .faq-item h3 {
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: var(--text-main) !important;
    cursor: pointer !important;
    padding: 20px 44px 20px 8px !important;
    margin: 0 !important;
    position: relative !important;
    transition: color 0.3s ease !important;
    text-align: left !important;
  }
  
  /* Plus/minus toggle icon */
  .faq-item h3::after {
    content: '+' !important;
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 24px !important;
    font-weight: 300 !important;
    color: var(--gold) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  
  .faq-item.open h3::after {
    transform: translateY(-50%) rotate(45deg) !important;
  }
  
  .faq-item.open h3 {
    color: var(--gold) !important;
  }
  
  .faq-item p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: var(--text-soft) !important;
    padding: 0 8px 20px 8px !important;
    margin: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.3s ease,
                padding 0.3s ease !important;
  }
  
  .faq-item.open p {
    max-height: 500px !important;
    opacity: 1 !important;
    padding: 0 8px 24px 8px !important;
  }
  
  /* FAQ icon */
  .faq-icon {
    margin-right: 8px !important;
  }
  
  /* FAQ CTA */
  .faq-cta {
    text-align: center !important;
    margin-top: 48px !important;
    padding: 40px 24px !important;
    background: var(--panel-bg) !important;
    border-radius: 16px !important;
  }
  
  .faq-cta h2 {
    font-size: 24px !important;
    margin-bottom: 12px !important;
  }
  
  .faq-cta p {
    max-height: none !important;
    opacity: 1 !important;
    font-size: 15px !important;
    color: var(--text-soft) !important;
  }
  
  .faq-cta a {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
  
  .faq-cta a:active {
    transform: scale(0.97) !important;
  }

  /* ------------------------------------------
     FOOTER
     ------------------------------------------ */
  footer {
    padding: 48px 24px 32px !important;
  }
  
  .footer-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    text-align: center !important;
  }
  
  .footer-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
  }
  
  .footer-links a:active {
    color: var(--gold) !important;
  }
  
  .footer-social {
    justify-content: center !important;
  }
  
  .footer-social a:active {
    transform: scale(0.9) !important;
    opacity: 0.7 !important;
  }
  
  .footer-bottom {
    font-size: 12px !important;
    opacity: 0.6 !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
  }

  /* ------------------------------------------
     GLOBAL TOUCH FEEDBACK - Feel the tap
     ------------------------------------------ */
  
  /* All buttons get press effect */
  button:active,
  .btn:active,
  a[style*="background"]:active,
  input[type="submit"]:active {
    transform: scale(0.95) !important;
    opacity: 0.9 !important;
  }
  
  /* All links get color feedback */
  a:active {
    color: #C9A15C !important;
  }
  
  /* Cards press in */
  .blog-card:active,
  .case-card:active {
    transform: scale(0.97) !important;
  }
  
  /* Images press */
  .gallery img:active {
    transform: scale(0.95) !important;
    opacity: 0.85 !important;
  }
}

/* ============================================
   ANIMATIONS & PAGE ENHANCEMENTS
   ============================================ */

/* Base scroll reveal animation */
@keyframes fadeInUp {
  from { 
    opacity: 0; 
    transform: translateY(40px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes fadeInLeft {
  from { 
    opacity: 0; 
    transform: translateX(-40px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes fadeInRight {
  from { 
    opacity: 0; 
    transform: translateX(40px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

@keyframes scaleIn {
  from { 
    opacity: 0; 
    transform: scale(0.95); 
  }
  to { 
    opacity: 1; 
    transform: scale(1); 
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered reveal class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FAQ PAGE ANIMATIONS
   ============================================ */
.faq-page h1 {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq-page > p {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  opacity: 0;
}

.faq-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for FAQ items */
.faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-item:nth-child(3) { transition-delay: 0.15s; }
.faq-item:nth-child(4) { transition-delay: 0.2s; }
.faq-item:nth-child(5) { transition-delay: 0.25s; }
.faq-item:nth-child(6) { transition-delay: 0.3s; }
.faq-item:nth-child(7) { transition-delay: 0.35s; }
.faq-item:nth-child(8) { transition-delay: 0.4s; }
.faq-item:nth-child(9) { transition-delay: 0.45s; }

/* FAQ hover enhancements */
.faq-item {
  position: relative;
  padding: 32px;
  background: var(--panel-bg);
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 161, 92, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 161, 92, 0.2);
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item h3 {
  transition: color 0.3s ease;
}

.faq-item:hover h3 {
  color: var(--accent);
}

/* FAQ CTA animation */
.faq-cta {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT PAGE ANIMATIONS
   ============================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.about-portrait {
  position: sticky;
  top: 120px;
}

.about-portrait img {
  animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
  border-radius: 12px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-portrait img:hover {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-text h1 {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.about-text h2 {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.about-text p {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-text p.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered paragraph delays */
.about-text p:nth-of-type(1) { transition-delay: 0.1s; }
.about-text p:nth-of-type(2) { transition-delay: 0.15s; }
.about-text p:nth-of-type(3) { transition-delay: 0.2s; }
.about-text p:nth-of-type(4) { transition-delay: 0.25s; }
.about-text p:nth-of-type(5) { transition-delay: 0.3s; }

/* ============================================
   CONTACT PAGE ANIMATIONS
   ============================================ */
.contact-page h1 {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-page h1::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--accent);
  margin-top: 16px;
  animation: expandLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.contact-page > p {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
}

.contact-details {
  font-size: 20px;
  margin: 32px 0 10px;
}

/* Contact page specific padding */
.contact-page {
  padding: 60px 72px 100px;
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--text-main);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.contact-portrait {
  position: sticky;
  top: 120px;
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

.contact-portrait img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-portrait img:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.contact-portrait h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
}

.contact-portrait p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.contact-form-wrapper {
  animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  opacity: 0;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  transition: border-color 0.3s ease, 
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 161, 92, 0.15);
  transform: translateY(-2px);
}

.contact-form-wrapper label {
  transition: color 0.3s ease;
}

/* Submit button enhancement */
.contact-form-wrapper button[type="submit"] {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-wrapper button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.contact-form-wrapper button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(201, 161, 92, 0.3);
}

.contact-form-wrapper button[type="submit"]:hover::before {
  width: 300px;
  height: 300px;
}

.contact-form-wrapper button[type="submit"]:active {
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-portrait {
    position: relative;
    top: 0;
  }
}

/* ============================================
   SHARED PAGE HEADER ANIMATIONS
   ============================================ */
.section > h1 {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.section > h1 + p {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
}

/* ============================================
   BREADCRUMB ANIMATION
   ============================================ */
.breadcrumb {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ============================================
   GOLD ACCENT LINE ANIMATION
   ============================================ */
@keyframes expandLine {
  from { width: 0; }
  to { width: 60px; }
}

.about-text h1::after,
.faq-page h1::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--accent);
  margin-top: 16px;
  animation: expandLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* ============================================
   REDUCED MOTION PREFERENCES
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal,
  .faq-item,
  .about-text p,
  .faq-cta {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
   BLUR-UP IMAGE LOADING
   Progressive image loading with blur effect
   ============================================ */

/* All images start blurred and transition to sharp */
img {
  filter: blur(0);
  transition: filter 0.4s ease-out;
}

img.img-loading {
  filter: blur(20px);
  transform: scale(1.05);
  transition: filter 0.5s ease-out, transform 0.5s ease-out;
}

img.img-loaded {
  filter: blur(0);
  transform: scale(1);
}

/* Ensure container clips the scaled blur */
.gallery img,
.case-card img,
.case-thumb,
.blog-card img,
.blog-image img,
.about-portrait img,
.contact-portrait img,
.work-item-media img,
.mobile-work-card img,
.photo-grid img {
  overflow: hidden;
}

/* Container for blur-up with background color fallback */
.case-card,
.blog-card,
.work-item-media,
.about-portrait,
.contact-portrait {
  overflow: hidden;
  background-color: var(--panel-bg);
}
