
  :root {
    --navy: #0d1b2a;
    --navy-mid: #1a2e45;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --cream: #f7f4ef;
    --white: #ffffff;
    --text: #2c2c2c;
    --text-light: #6b7280;
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
    transition: all 0.4s var(--transition);
    background: transparent;
  }
  nav.scrolled {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  }

  .nav-logo {
    display: flex; align-items: center; text-decoration: none;
    transition: opacity 0.3s;
  }
  .nav-logo:hover { opacity: 0.85; }

  .nav-links {
    display: flex; align-items: center; gap: 2.5rem; list-style: none;
  }
  .nav-links a {
    text-decoration: none; color: rgba(255,255,255,0.85);
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
    position: relative; padding-bottom: 2px;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
    height: 1px; background: var(--gold);
    transition: right 0.35s var(--transition);
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-links a:hover::after { right: 0; }

  .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 2px !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.5) !important; }
  .nav-cta::after { display: none !important; }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px; background: none; border: none;
  }
  .hamburger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--white);
    transition: all 0.35s var(--transition);
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile menu */
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: var(--navy);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem;
    opacity: 0; transform: translateY(-10px);
    transition: all 0.4s var(--transition);
    pointer-events: none;
  }
  .mobile-menu.open {
    opacity: 1; transform: translateY(0); pointer-events: all;
  }
  .mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 300; font-style: italic;
    color: var(--white); text-decoration: none;
    transition: color 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold-light); }
  .mobile-menu .mobile-cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem !important; font-style: normal !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy) !important;
    padding: 0.8rem 2.5rem;
    border-radius: 2px; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .mobile-divider {
    width: 40px; height: 1px; background: var(--gold); opacity: 0.4;
  }

  /* ─── HERO ─── */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    background: var(--navy);
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 20% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
      linear-gradient(135deg, #0d1b2a 0%, #1a2e45 50%, #0d1b2a 100%);
  }

  /* Animated bubbles */
  .bubbles {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  }
  .bubble {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.15);
    animation: float linear infinite;
  }
  @keyframes float {
    0% { transform: translateY(100vh) scale(0.8); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) scale(1.1); opacity: 0; }
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 120px 2rem 80px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
    padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 1.5rem;
    color: var(--gold-light); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    animation: fadeUp 0.8s var(--transition) both;
  }
  .hero-badge::before {
    content: '✦'; color: var(--gold); font-size: 0.6rem;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300; line-height: 1.1;
    color: var(--white);
    animation: fadeUp 0.8s 0.1s var(--transition) both;
  }
  .hero-title em {
    font-style: italic; color: var(--gold-light);
    display: block;
  }

  .hero-subtitle {
    margin-top: 1.5rem; font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    animation: fadeUp 0.8s 0.2s var(--transition) both;
  }

  .hero-actions {
    display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem;
    animation: fadeUp 0.8s 0.3s var(--transition) both;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 1rem 2rem; border-radius: 2px;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s var(--transition);
    box-shadow: 0 8px 30px rgba(201,168,76,0.35);
    border: none; cursor: pointer;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201,168,76,0.5);
  }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(255,255,255,0.3); color: var(--white);
    padding: 1rem 2rem; border-radius: 2px;
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s var(--transition);
  }
  .btn-outline:hover {
    border-color: var(--gold); color: var(--gold-light);
    background: rgba(201,168,76,0.08);
  }

  .hero-stats {
    display: flex; gap: 2rem; margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeUp 0.8s 0.4s var(--transition) both;
  }
  .stat {
    text-align: center;
    position: relative;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
  }
  .stat::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.6s ease;
  }
  .stat:hover::after { width: 80%; }
  .stat:hover { background: rgba(201,168,76,0.06); }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600;
    color: var(--gold-light);
    display: block;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
  }
  .stat:hover .stat-num {
    transform: scale(1.08);
    text-shadow: 0 0 20px rgba(232,201,122,0.5);
  }

  /* Count-up: start invisible, animate in */
  .stat-num.counting {
    animation: statPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  }
  @keyframes statPop {
    from { opacity: 0; transform: scale(0.6) translateY(8px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }

  .stat-label {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-top: 2px;
    display: block;
  }

  /* Hero card */
  .hero-card {
    position: relative;
    animation: fadeUp 0.8s 0.3s var(--transition) both;
  }
  .hero-card-inner {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative; overflow: hidden;
  }
  .hero-card-inner::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .hero-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400; color: var(--white);
    margin-bottom: 1.5rem;
  }

  .service-pill {
    display: flex; align-items: center; gap: 12px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s;
  }
  .service-pill:last-child { border-bottom: none; }
  .service-pill:hover { transform: translateX(4px); }
  .service-pill-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }
  .service-pill-info { flex: 1; }
  .service-pill-name { color: var(--white); font-size: 0.9rem; display: block; }
  .service-pill-price { color: var(--gold-light); font-size: 0.8rem; display: block; margin-top: 1px; }
  .service-pill-arrow { color: rgba(201,168,76,0.5); font-size: 0.8rem; }

  /* Decorative line */
  .gold-line {
    width: 60px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 auto 1.5rem;
  }

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

  /* ─── SECTIONS ─── */
  section { position: relative; }

  .section-header {
    text-align: center; margin-bottom: 4rem;
  }
  .section-tag {
    font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300; line-height: 1.2;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-desc {
    font-size: 0.95rem; color: var(--text-light); line-height: 1.8;
    max-width: 540px; margin: 1rem auto 0;
  }

  /* ─── WHY US ─── */
  .why-us {
    padding: 8rem 2rem;
    background: var(--white);
  }
  .why-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px;
  }
  .why-card {
    padding: 3rem 2.5rem;
    background: var(--cream);
    position: relative; overflow: hidden;
    transition: all 0.4s var(--transition);
    cursor: default;
  }
  .why-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    transition: height 0.4s var(--transition);
    z-index: 0;
  }
  .why-card:hover::before { height: 100%; }
  .why-card > * { position: relative; z-index: 1; }
  .why-card:hover .why-icon,
  .why-card:hover .why-title,
  .why-card:hover .why-desc { color: var(--white); }
  .why-card:hover .why-icon { background: rgba(201,168,76,0.2); border-color: var(--gold); }

  .why-icon {
    width: 52px; height: 52px; border-radius: 4px;
    background: rgba(13,27,42,0.06); border: 1px solid rgba(13,27,42,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.5rem;
    transition: all 0.4s;
  }
  .why-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600; margin-bottom: 0.75rem;
    transition: color 0.4s;
  }
  .why-desc { font-size: 0.88rem; line-height: 1.8; color: var(--text-light); transition: color 0.4s; }

  /* ─── SERVICES ─── */
  .services {
    padding: 8rem 2rem;
    background: var(--cream);
  }
  .services-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
  }
  .service-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 4px; padding: 2.5rem;
    position: relative; overflow: hidden;
    transition: all 0.4s var(--transition);
  }
  .service-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s var(--transition);
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
  .service-card:hover::after { transform: scaleX(1); }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: rgba(201,168,76,0.2);
    line-height: 1; margin-bottom: 1rem;
  }
  .service-icon { font-size: 1.8rem; margin-bottom: 1.2rem; display: block; }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--navy);
  }
  .service-desc { font-size: 0.88rem; line-height: 1.8; color: var(--text-light); margin-bottom: 1.5rem; }
  .service-price-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(232,201,122,0.15));
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold); padding: 0.4rem 1rem; border-radius: 2px;
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  }
  .service-includes {
    margin-top: 1.2rem; list-style: none;
  }
  .service-includes li {
    font-size: 0.83rem; color: var(--text-light); padding: 0.3rem 0;
    display: flex; align-items: center; gap: 8px;
  }
  .service-includes li::before { content: '✓'; color: var(--gold); font-size: 0.75rem; }

  /* ─── PROCESS ─── */
  .process {
    padding: 8rem 2rem;
    background: var(--navy);
    overflow: hidden;
  }
  .process .section-title { color: var(--white); }
  .process .section-tag { color: var(--gold-light); }
  .process .section-desc { color: rgba(255,255,255,0.55); }

  .process-steps {
    max-width: 900px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 0;
    position: relative;
  }
  .process-steps::before {
    content: ''; position: absolute; left: 24px; top: 0; bottom: 0;
    width: 1px; background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  }
  .process-step {
    display: flex; gap: 2rem; align-items: flex-start;
    padding: 2.5rem 0;
    opacity: 0; transform: translateX(-20px);
    transition: all 0.6s var(--transition);
  }
  .process-step.visible { opacity: 1; transform: translateX(0); }
  .step-num {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.35);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold-light);
    position: relative; z-index: 1;
  }
  .step-content { flex: 1; padding-top: 0.4rem; }
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem;
  }
  .step-desc { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.55); }

  /* ─── PRICING ─── */
  .pricing {
    padding: 8rem 2rem;
    background: var(--white);
  }
  .pricing-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
  }
  .pricing-card {
    border: 1px solid rgba(0,0,0,0.08); border-radius: 4px;
    padding: 2.5rem; position: relative; overflow: hidden;
    transition: all 0.4s var(--transition);
  }
  .pricing-card.featured {
    background: var(--navy); border-color: var(--gold);
    transform: scale(1.02);
  }
  .pricing-card.featured .pricing-name,
  .pricing-card.featured .pricing-price,
  .pricing-card.featured .pricing-feature { color: var(--white); }
  .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.6); }
  .pricing-card.featured .pricing-feature::before { color: var(--gold); }
  .pricing-badge {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy); padding: 0.25rem 0.75rem; border-radius: 2px;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .pricing-card:not(.featured):hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }

  .pricing-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem;
  }
  .pricing-desc { font-size: 0.83rem; color: var(--text-light); margin-bottom: 1.5rem; }
  .pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--navy);
    line-height: 1; margin-bottom: 0.3rem;
  }
  .pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; }
  .pricing-price sub { font-size: 0.9rem; color: var(--text-light); }
  .pricing-divider { height: 1px; background: rgba(0,0,0,0.08); margin: 1.5rem 0; }
  .pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
  .pricing-features { list-style: none; margin-bottom: 2rem; }
  .pricing-feature {
    font-size: 0.85rem; color: var(--text); padding: 0.45rem 0;
    display: flex; align-items: center; gap: 10px;
  }
  .pricing-feature::before { content: '✦'; color: var(--gold); font-size: 0.55rem; flex-shrink: 0; }

  /* ─── GALLERY ─── */
  .gallery {
    padding: 8rem 2rem;
    background: var(--cream);
  }
  .gallery-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* Layout: item 1 & 5 span 2 cols */
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16 / 7; }
  .gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16 / 7; }

  .gallery-item {
    position: relative; overflow: hidden; border-radius: 6px;
    background: var(--navy-mid);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }

  /* Scroll-reveal animation */
  .reveal-gallery {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal-gallery.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .reveal-gallery:nth-child(1) { transition-delay: 0.05s; }
  .reveal-gallery:nth-child(2) { transition-delay: 0.12s; }
  .reveal-gallery:nth-child(3) { transition-delay: 0.19s; }
  .reveal-gallery:nth-child(4) { transition-delay: 0.26s; }
  .reveal-gallery:nth-child(5) { transition-delay: 0.33s; }
  .reveal-gallery:nth-child(6) { transition-delay: 0.40s; }
  .reveal-gallery:nth-child(7) { transition-delay: 0.47s; }

  .gallery-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .gallery-item:hover .gallery-img { transform: scale(1.07); }

  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.1) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: flex-end;
    padding: 1.2rem 1.4rem;
    gap: 0.4rem;
    pointer-events: none;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }

  .gallery-badge {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--navy);
    padding: 0.2rem 0.6rem; border-radius: 2px;
    display: inline-block;
  }
  .gallery-overlay-text {
    color: var(--white); font-size: 0.82rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    font-weight: 400;
  }

  /* Lightbox */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(7,15,24,0.96);
    align-items: center; justify-content: center;
    animation: lbFadeIn 0.25s ease;
  }
  .lightbox.open { display: flex; }
  @keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .lightbox-img {
    max-width: 90vw; max-height: 88vh;
    border-radius: 6px; object-fit: contain;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    animation: lbZoom 0.3s ease;
  }
  @keyframes lbZoom { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
  .lightbox-close {
    position: absolute; top: 1.2rem; right: 1.5rem;
    background: none; border: none; color: rgba(255,255,255,0.7);
    font-size: 2rem; cursor: pointer; line-height: 1;
    transition: color 0.2s;
  }
  .lightbox-close:hover { color: var(--gold-light); }
  .lightbox-caption {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.6); font-size: 0.8rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    white-space: nowrap;
  }
  .lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 1.4rem;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.25s;
  }
  .lightbox-nav:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); color: var(--gold-light); }
  .lightbox-prev { left: 1.2rem; }
  .lightbox-next { right: 1.2rem; }

  /* ─── MOBILE GALLERY ─── */
  @media (max-width: 700px) {
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/8; }
    .gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 16/8; }
    .gallery-item { aspect-ratio: 1/1; }
    .gallery-overlay { opacity: 1; }
    .lightbox-nav { display: none; }
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials {
    padding: 8rem 2rem;
    background: var(--navy);
    overflow: hidden;
  }
  .testimonials .section-title { color: var(--white); }
  .testimonials .section-tag { color: var(--gold-light); }

  .testimonials-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
  }
  .testimonial-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.15);
    border-radius: 4px; padding: 2.5rem;
    position: relative; overflow: hidden;
    transition: all 0.4s var(--transition);
  }
  .testimonial-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-3px);
  }
  .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; color: var(--gold); opacity: 0.2; line-height: 1;
    position: absolute; top: 1rem; right: 1.5rem;
  }
  .testimonial-text {
    font-size: 0.92rem; line-height: 1.9; color: rgba(255,255,255,0.75);
    margin-bottom: 1.5rem; font-style: italic;
  }
  .testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; color: var(--navy); font-size: 0.9rem; flex-shrink: 0;
  }
  .author-name { color: var(--white); font-size: 0.88rem; font-weight: 500; }
  .author-location { color: rgba(255,255,255,0.45); font-size: 0.78rem; margin-top: 1px; }

  /* ─── COVERAGE ─── */
  .coverage {
    padding: 6rem 2rem;
    background: var(--cream);
  }
  .coverage-inner {
    max-width: 800px; margin: 0 auto; text-align: center;
  }
  .coverage-tags {
    display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2.5rem;
  }
  .coverage-tag {
    background: var(--white); border: 1px solid rgba(0,0,0,0.08);
    padding: 0.6rem 1.2rem; border-radius: 2px;
    font-size: 0.82rem; letter-spacing: 0.08em;
    transition: all 0.3s;
  }
  .coverage-tag:hover {
    background: var(--navy); color: var(--white); border-color: var(--navy);
  }

  /* ─── CONTACT ─── */
  .contact {
    padding: 8rem 2rem;
    background: var(--navy);
  }
  .contact .section-title { color: var(--white); }
  .contact .section-tag { color: var(--gold-light); }
  .contact .section-desc { color: rgba(255,255,255,0.55); }

  .contact-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
  }

  .contact-info { display: flex; flex-direction: column; gap: 2rem; }
  .contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }
  .contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
  }
  .contact-label { font-size: 0.72rem; color: var(--gold-light); letter-spacing: 0.15em; text-transform: uppercase; display: block; margin-bottom: 3px; }
  .contact-value { color: var(--white); font-size: 0.9rem; line-height: 1.5; }
  .contact-value a { color: var(--white); text-decoration: none; transition: color 0.3s; }
  .contact-value a:hover { color: var(--gold-light); }

  .contact-form {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px; padding: 2.5rem;
  }
  .contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: var(--white); margin-bottom: 1.5rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .form-group { margin-bottom: 1.2rem; }
  .form-group label {
    display: block; font-size: 0.72rem; color: var(--gold-light);
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.4rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 2px;
    padding: 0.75rem 1rem; color: var(--white);
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
    transition: border-color 0.3s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group select option { background: var(--navy); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

  /* ─── FOOTER ─── */
  footer {
    background: #070f18;
    padding: 4rem 2rem 2rem;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: var(--white); font-weight: 300; margin-bottom: 1rem;
  }
  .footer-brand-text em { font-style: italic; color: var(--gold-light); }
  .footer-bio {
    font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.4); max-width: 320px;
  }
  .footer-col-title {
    font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 1.2rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-links a {
    font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold-light); }

  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
  }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
  .footer-socials { display: flex; gap: 1rem; }
  .social-btn {
    width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem;
    transition: all 0.3s;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold-light); }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(25px);
    transition: all 0.7s var(--transition);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── FLOATING CTA ─── */
  .float-cta {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy); padding: 0.8rem 1.5rem;
    border-radius: 30px; text-decoration: none;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
    box-shadow: 0 8px 30px rgba(201,168,76,0.45);
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s var(--transition);
    transform: translateY(100px);
    opacity: 0;
  }
  .float-cta.show { transform: translateY(0); opacity: 1; }
  .float-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.6); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 3rem; padding: 75px 1.5rem 60px; }
    .hero-card { display: none; }
    .hero-stats { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-top > *:first-child { grid-column: span 2; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) { grid-column: span 2; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-top > *:first-child { grid-column: span 1; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; }
  }

  @media (max-width: 480px) {
    nav { padding: 0 1rem; }
    .hero-content { padding: 62px 1rem 40px; }
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { justify-content: center; }
    .hero-stats { flex-wrap: wrap; }
    section { padding: 5rem 1rem; }
    .why-us, .services, .process, .pricing, .gallery, .testimonials, .coverage, .contact { padding: 5rem 1rem; }
  }
/* === NEW IMAGE GALLERY STYLING === */

.gallery-item {
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
}
.gallery-overlay p {
  font-weight: 700;
}
.gallery-overlay p {
  color: #ffffff;
}
/* === FORCE CONSISTENT GALLERY CAPTION STYLING === */

.gallery-overlay p {
  color: #ffffff;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif; /* or whatever your site uses */
  text-align: center;
}
