:root {
    --gold: #C9A84C;
    --gold-light: #F3E5AB;
    --gold-dark: #A3832B;
    --ivory: #FFFFFF;
    --dark: #111111;
    --dark-mid: #1A1A1A;
    --charcoal: #222222;
    --blush: #FAFAFA;
    --text-muted: #6B7280;
    --white: #FFFFFF;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--ivory);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(17,17,17,0.95);
    backdrop-filter: blur(10px);
    padding: 14px 60px;
    box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold-light); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white) !important;
    padding: 8px 22px;
    border-radius: 1px;
    transition: all 0.3s !important;
  }
  .nav-cta:hover {
    background: var(--white) !important;
    color: var(--dark) !important;
  }
  .nav-review-btn {
    color: rgba(201,168,76,0.85) !important;
    border: 1px solid rgba(201,168,76,0.4) !important;
    padding: 7px 16px !important;
    border-radius: 1px;
    transition: all 0.3s !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
  }
  .nav-review-btn:hover {
    background: rgba(201,168,76,0.1) !important;
    border-color: #C9A84C !important;
    color: #C9A84C !important;
  }

  /* ── HERO ── */
  .hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 80px 60px 20px 10%;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background: none;
    z-index: 0;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(17,17,17,0.65) 0%, rgba(17,17,17,0.4) 50%, rgba(17,17,17,0.75) 100%);
  }
  .hero-content {
    position: relative;
    text-align: left;
    color: var(--white);
    padding: 0;
    max-width: 650px;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 100px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 12px;
    letter-spacing: -1px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 48px;
    font-weight: 300;
  }
  .hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold-light);
    margin: 0 0 32px 0;
  }
  .hero-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.6;
  }
  .hero-btns { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
  .btn-primary {
    background: var(--white);
    color: var(--dark);
    padding: 15px 40px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); }
  .btn-outline {
    border: 1px solid rgba(255,255,255,0.6);
    color: var(--white);
    padding: 15px 40px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.7); }
  }

  /* ── SECTIONS COMMON ── */
  section { padding: 100px 60px; }
  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
  }
  .section-title em { font-style: italic; color: var(--gold-dark); }
  
  /* ══ Contrast overrides for ALL dark background sections ══ */
  .services-section .section-title em,
  .testimonials-section .section-title em,
  .cta-section .section-title em,
  .dynamic-portfolio-section .section-title em,
  .reviews-page-hero .section-title em {
    color: #C9A84C !important;
  }
  .reels-section .section-title em,
  .reels-header h2 em {
    color: #ffffff !important;
  }

  /* Eyebrow text on dark backgrounds */
  .reels-section .section-eyebrow,
  .reels-header .section-eyebrow,
  .testimonials-section .section-eyebrow,
  .dynamic-portfolio-section .section-eyebrow,
  .cta-section .section-eyebrow,
  .reviews-page-hero .section-eyebrow {
    color: #C9A84C !important;
  }

  /* Section titles on dark backgrounds */
  .reels-section .section-title,
  .reels-header h2,
  .testimonials-section .section-title,
  .dynamic-portfolio-section .section-title,
  .cta-section .section-title,
  .reviews-page-hero .section-title {
    color: #ffffff !important;
  }

  /* Gold line on dark backgrounds */
  .reels-section .gold-line,
  .reels-header .gold-line,
  .testimonials-section .gold-line,
  .dynamic-portfolio-section .gold-line,
  .cta-section .gold-line {
    background: #C9A84C !important;
  }

  /* Paragraph text on dark backgrounds */
  .reels-section p,
  .reels-header p,
  .dynamic-portfolio-section p {
    color: rgba(255,255,255,0.7) !important;
  }
  .gold-line {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 30px;
  }

  /* ── MARQUEE ── */
  .marquee-band {
    background: var(--dark);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
  }
  .marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
  }
  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 400;
  }
  .marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── ABOUT ── */
  .about-section { background: var(--white); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .about-images {
    position: relative;
    height: 580px;
  }
  .about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 85%;
    object-fit: cover;
    z-index: 2;
  }
  .about-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border: 6px solid var(--white);
    z-index: 3;
  }
  .about-badge {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark);
    padding: 20px 16px;
    text-align: center;
    z-index: 4;
    width: 90px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .about-badge-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    display: block;
  }
  .about-badge-text {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 4px;
    display: block;
  }
  .about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 300;
  }
  .about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gold-light);
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--gold-dark);
    line-height: 1;
    display: block;
  }
  .stat-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
  }

  /* ── SERVICES ── */
  .services-section { background: var(--dark); }
  .services-section .section-title { color: var(--white); }
  .services-section .section-eyebrow { color: var(--gold-light); }
  .services-section .gold-line { background: var(--gold); }
  .services-header { max-width: 600px; margin-bottom: 70px; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
  }
  .service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.7);
  }
  .service-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.5);
  }
  .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.4s;
  }
  .service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(26,20,16,0.98) 0%, rgba(26,20,16,0.3) 100%);
  }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
    font-style: italic;
  }
  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .service-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s;
    opacity: 0;
    letter-spacing: 0.5px;
  }
  .service-card:hover .service-desc {
    max-height: 100px;
    opacity: 1;
  }
  .service-line {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 12px;
    transition: width 0.4s;
  }
  .service-card:hover .service-line { width: 50px; }

  /* ── WHY US ── */
  .why-section { background: var(--blush); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .why-image {
    position: relative;
    height: 620px;
  }
  .why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .why-img-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 24px 20px;
    text-align: center;
    width: 130px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
  }
  .why-img-badge strong { color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    font-style: italic;
  }
  .why-img-badge span {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-top: 4px;
  }
  .why-features { display: flex; flex-direction: column; gap: 32px; margin-top: 20px; }
  .why-feature {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(76,94,102,0.2);
  }
  .why-feature:last-child { border-bottom: none; padding-bottom: 0; }
  .why-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--gold-dark);
    font-style: italic;
    background: transparent;
  }
  .why-feature h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .why-feature p {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.8;
    font-weight: 300;
  }

  /* ── GALLERY ── */
  .gallery-section { background: var(--ivory); padding-bottom: 0; }
  .gallery-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
  .gallery-header .gold-line { margin: 0 auto 30px; }
  .gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .gallery-item {
    overflow: hidden;
    position: relative;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.92);
  }
  .gallery-item:hover img { transform: scale(1.04); filter: brightness(1); }
  .g-tall { grid-row: span 2; }
  .g-wide { grid-column: span 2; }
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(76,94,102,0.15);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-plus {
    width: 50px;
    height: 50px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    font-weight: 300;
  }

  /* ── REAL WEDDINGS ── */
  .weddings-section { background: var(--white); }
  .weddings-header { max-width: 600px; margin-bottom: 60px; }
  .weddings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .wedding-card {
    cursor: pointer;
  }
  .wedding-img-wrap {
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 20px;
    position: relative;
  }
  .wedding-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }
  .wedding-card:hover .wedding-img-wrap img { transform: scale(1.04); }
  .wedding-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--dark);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    font-weight: 600;
  }
  .wedding-names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .wedding-names em { font-style: italic; color: var(--gold-dark); }
  .wedding-venue {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
    padding: 100px 40px 80px;
  }
  .testimonials-section::before {
    content: '\201C';
    position: absolute;
    top: -60px;
    left: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 400px;
    color: rgba(201,168,76,0.05);
    line-height: 1;
    font-style: italic;
    pointer-events: none;
    user-select: none;
  }
  .testimonials-section .section-title { color: var(--white); }
  .testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
  }
  .testimonials-header .gold-line { margin: 0 auto 24px; }
  .testimonials-header .section-title { color: var(--white); }

  /* Average Rating Display */
  #reviews-avg-rating {
    display: block;
    margin-bottom: 52px;
    margin-top: 16px;
  }

  /* Reviews Grid */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .testimonial-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 36px 28px 28px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    border-radius: 2px;
  }
  .testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 14px;
    left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    color: rgba(201,168,76,0.25);
    line-height: 1;
    font-style: italic;
    pointer-events: none;
  }
  .testimonial-card:hover {
    border-color: rgba(201,168,76,0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(201,168,76,0.08);
  }
  .testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    font-size: 15px;
    margin-top: 16px;
  }
  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .testimonial-divider {
    width: 28px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 16px;
  }
  .testimonial-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  .testimonial-event {
    font-size: 11px;
    color: rgba(201,168,76,0.7);
    margin-top: 4px;
    letter-spacing: 0.5px;
  }

  /* Write a Review CTA Bar — below reviews */
  .reviews-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 52px auto 0;
    padding: 28px 36px;
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 2px;
    background: rgba(201,168,76,0.04);
    flex-wrap: wrap;
    gap: 16px;
  }
  .reviews-cta-text {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    letter-spacing: 0.04em;
    font-weight: 300;
  }
  .btn-write-review {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid #C9A84C;
    color: #C9A84C;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    position: relative;
    z-index: 10;
  }
  .btn-write-review:hover {
    background: #C9A84C;
    color: #000;
  }

  /* ── PROCESS ── */
  .process-section { background: var(--ivory); }
  .process-header { text-align: center; max-width: 600px; margin: 0 auto 80px; }
  .process-header .gold-line { margin: 0 auto 30px; }
  .process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
  }
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--gold-light);
    z-index: 0;
  }
  .process-step { text-align: center; padding: 0 20px; position: relative; }
  .process-circle {
    width: 76px;
    height: 76px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: var(--ivory);
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--gold-dark);
    font-style: italic;
    transition: all 0.3s;
  }
  .process-step:hover .process-circle {
    background: var(--gold);
    color: var(--dark);
  }
  .process-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 10px;
  }
  .process-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
  }

  /* ── VENUE SECTION ── */
  .venues-section { background: var(--blush); }
  .venues-header { max-width: 600px; margin-bottom: 60px; }
  .venues-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .venue-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
  }
  .venue-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: brightness(0.75);
  }
  .venue-card:hover img { transform: scale(1.06); filter: brightness(0.6); }
  .venue-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(26,20,16,0.9) 0%, transparent 100%);
  }
  .venue-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 4px;
    font-style: italic;
  }
  .venue-city {
    font-size: 10px;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* ── CTA BANNER ── */
  .cta-section {
    background: url('images/cta_bg.jpg') center/cover no-repeat;
    position: relative;
    padding: 130px 60px;
    text-align: center;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,20,16,0.82);
  }
  .cta-content { position: relative; }
  .cta-content .section-eyebrow { color: var(--gold-light); }
  .cta-content .section-title { color: var(--white); }
  .cta-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.7;
  }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ── CONTACT ── */
  .contact-section { background: var(--white); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact-info-block { display: flex; flex-direction: column; gap: 36px; margin-top: 20px; }
  .contact-info-item { display: flex; gap: 20px; align-items: flex-start; }
  .contact-info-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--gold-dark);
  }
  .contact-info-text h5 {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .contact-info-text p, .contact-info-text a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--dark);
    text-decoration: none;
    line-height: 1.5;
    font-weight: 400;
    transition: color 0.3s;
  }
  .contact-info-text a:hover { color: var(--gold-dark); }
  .contact-social { display: flex; gap: 12px; margin-top: 10px; }
  .social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
  }
  .social-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
  .contact-form { background: var(--ivory); padding: 50px 44px; }
  .contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--dark);
  }
  .form-group { margin-bottom: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    border: 1px solid #E0D9CF;
    background: var(--white);
    padding: 12px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group textarea { height: 100px; resize: vertical; }
  .form-submit {
    width: 100%;
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 16px;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
  }
  .form-submit:hover { background: #333333; }

  /* ── FOOTER ── */
  footer {
    background: var(--dark-mid);
    padding: 60px 60px 30px;
    border-top: 1px solid rgba(76,94,102,0.15);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 4px;
  }
  .footer-brand-name span { color: var(--gold-light); }
  .footer-tagline {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.9;
    font-weight: 300;
    max-width: 260px;
  }
  .footer-col h5 {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
  }
  .footer-col ul li a:hover { color: var(--white); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
  }
  .footer-bottom a { color: var(--gold-light); text-decoration: none; }
  .footer-social { display: flex; gap: 10px; }
  .footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
  }
  .footer-social a:hover { border-color: var(--white); color: var(--white); }

  /* ── WHATSAPP FLOAT ── */
  .wa-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  .wa-float svg { width: 28px; height: 28px; fill: white; }

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .fade-up.visible, .page-header .fade-up, header .fade-up { opacity: 1; transform: translateY(0); }
  .fade-up-d1 { transition-delay: 0.1s; }
  .fade-up-d2 { transition-delay: 0.2s; }
  .fade-up-d3 { transition-delay: 0.3s; }
  .fade-up-d4 { transition-delay: 0.4s; }

  /* Nav Logo sizing with override control */
  .nav-logo img {
    height: 51px !important;
    transition: height 0.3s ease;
  }

  /* Hamburger toggle button - hidden on desktop */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    flex-direction: column;
    gap: 5px;
    outline: none;
    position: relative;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav {
      padding: 16px 24px;
      /* Ensure nav always has dark background on mobile for visibility */
      background: rgba(17,17,17,0.95);
      backdrop-filter: blur(10px);
    }
    nav.scrolled { padding: 12px 24px; }
    
    .nav-logo img {
      height: 38px !important;
    }
    
    .nav-toggle {
      display: flex;
      margin-left: auto;
    }
    
    .nav-toggle.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links {
      display: flex !important;
      position: fixed;
      inset: 0 0 0 auto;
      width: 280px;
      height: 100vh;
      background: var(--dark-mid);
      border-left: 1px solid var(--gold-light);
      flex-direction: column;
      padding: 100px 40px;
      gap: 24px;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      box-shadow: -10px 0 30px rgba(0,0,0,0.5);
      z-index: 1000;
    }
    
    .nav-links.active {
      transform: translateX(0);
    }
    
    .nav-links a {
      font-size: 16px;
    }
    
    .nav-cta {
      text-align: center;
      margin-top: 10px;
    }
    .nav-review-btn {
      text-align: center;
      margin-top: 10px;
      display: block;
      width: 100%;
      padding: 10px 16px !important;
    }
    
    section { padding: 70px 24px; }
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images, .why-image { height: 360px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .g-tall, .g-wide { grid-row: span 1; grid-column: span 1; }
    .gallery-item { aspect-ratio: 1; }
    .weddings-grid { grid-template-columns: 1fr; }
    .testimonials-section { padding: 70px 20px 60px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonial-card { padding: 28px 20px 24px; }
    .reviews-cta-bar { flex-direction: column; align-items: flex-start; padding: 22px 20px; margin-top: 36px; }
    .reviews-cta-text { font-size: 13px; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .process-timeline::before { display: none; }
    .venues-scroll { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    
    /* Responsive Hero Sizing and Positioning */
    .hero {
      padding: 80px 24px 20px 24px;
      justify-content: center;
    }
    .hero-content {
      text-align: center;
      padding-top: 40px;
    }
    .hero-title {
      font-size: clamp(32px, 8vw, 46px) !important;
      line-height: 1.25 !important;
      margin-bottom: 15px !important;
    }
    .hero-desc {
      font-size: 16px !important;
      line-height: 1.6 !important;
      margin: 0 auto 30px !important;
    }
    .hero-eyebrow {
      font-size: 9px !important;
      letter-spacing: 3px !important;
      margin-bottom: 12px !important;
    }
    .hero-btns {
      justify-content: center !important;
      flex-direction: column !important;
      align-items: center !important;
      gap: 12px !important;
    }
    .btn-primary, .btn-outline {
      width: 100%;
      max-width: 260px;
      text-align: center;
      padding: 14px 30px;
    }
    .hero-divider {
      margin: 0 auto 24px !important;
    }
    .hero-scroll {
      display: none;
    }
  }
  
  /* Subpage Header Styles */
  .page-header {
    background: var(--dark-mid);
    padding: 140px 60px 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.5px;
  }
  .page-header p {
    font-size: 13px;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 15px;
  }
  
  nav.scrolled .nav-links a:hover {
    color: var(--gold-light);
  }

  /* ── 10x SUBPAGES UNIQUE STYLING ── */

  /* About Page Founder Message */
  .founder-message {
    background: var(--blush);
    padding: 100px 60px;
  }
  .founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .founder-img-wrap {
    position: relative;
    border: 1px solid var(--gold-light);
    padding: 12px;
    background: var(--white);
  }
  .founder-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
  }
  .founder-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-style: italic;
    color: var(--gold-dark);
    margin-top: 20px;
  }

  /* Core Values */
  .values-section {
    background: var(--white);
    padding: 100px 60px;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .value-card {
    border: 1px solid var(--gold-light);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .value-card:hover {
    border-color: var(--gold-dark);
    transform: translateY(-5px);
  }
  .value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-style: italic;
    color: var(--gold-dark);
    margin-bottom: 15px;
    display: inline-block;
  }
  .value-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .value-card p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* About Timeline / Journey */
  .timeline-section {
    background: var(--blush);
    padding: 100px 60px;
  }
  .timeline-container {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
  }
  .timeline-line-vertical {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--gold-light);
    transform: translateX(-50%);
  }
  .timeline-node {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    position: relative;
  }
  .timeline-node:last-child {
    margin-bottom: 0;
  }
  .timeline-point {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--gold-dark);
    border: 3px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .timeline-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-dark);
    text-align: right;
    line-height: 1;
  }
  .timeline-node:nth-child(even) .timeline-date {
    text-align: left;
    order: 2;
  }
  .timeline-content {
    background: var(--white);
    border: 1px solid var(--gold-light);
    padding: 30px;
  }
  .timeline-node:nth-child(even) .timeline-content {
    text-align: right;
    order: 1;
  }
  .timeline-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    margin-bottom: 8px;
  }
  .timeline-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* Services Expanded Accordion List */
  .service-detail-list {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255,255,255,0.15);
    text-align: left;
    list-style: none;
  }
  .service-detail-list li {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .service-detail-list li::before {
    content: '✦';
    color: var(--gold-light);
    font-size: 9px;
  }

  /* FAQ Accordion Section */
  .faq-section {
    background: var(--white);
    padding: 100px 60px;
  }
  .faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .faq-item {
    border: 1px solid var(--gold-light);
  }
  .faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
  }
  .faq-trigger h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
  }
  .faq-icon-sign {
    font-size: 20px;
    font-weight: 300;
    color: var(--gold-dark);
    transition: transform 0.3s ease;
  }
  .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s;
    padding: 0 30px;
  }
  .faq-item.active .faq-content {
    padding-bottom: 24px;
  }
  .faq-item.active .faq-icon-sign {
    transform: rotate(45deg);
  }
  .faq-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--charcoal);
    font-weight: 300;
  }

  /* Gallery Filters */
  .filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .filter-btn {
    background: transparent;
    border: 1px solid var(--gold-light);
    padding: 8px 24px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s ease;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
  }
  .gallery-item {
    transition: all 0.5s ease;
  }
  .gallery-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    pointer-events: none;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
  }

  /* Reels Grid Section */
  .reels-section {
    background: #0d0d0d !important;
    padding: 100px 60px;
    border-top: 1px solid rgba(201,168,76,0.12);
  }
  .reels-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
  }
  .reels-header .gold-line {
    margin: 0 auto 30px;
  }
  .reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .reel-card {
    position: relative;
    border: 1px solid var(--gold-light);
    aspect-ratio: 9/16;
    overflow: hidden;
    background: var(--dark-mid);
  }
  .reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .reel-overlay-play {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .reel-card:hover .reel-overlay-play {
    opacity: 1;
  }
  .play-icon-svg {
    width: 48px;
    height: 48px;
    fill: white;
  }

  /* Lightbox Slider */
  .lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(17,17,17,0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
  }
  .lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .lightbox-close:hover {
    color: var(--gold-light);
  }
  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .lightbox-nav:hover {
    background: var(--white);
    color: var(--dark);
  }
  .lightbox-prev { left: 40px; }
  .lightbox-next { right: 40px; }
  .lightbox-img {
    max-width: 80%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 50px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.4s ease;
  }
  .lightbox-modal.active .lightbox-img {
    transform: scale(1);
  }

  /* Portfolio Case Studies Details */
  .case-details-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--gold-light);
    border-bottom: 1px solid var(--gold-light);
    padding: 15px 0;
    margin: 20px 0;
    text-align: left;
  }
  .case-detail-col {
    padding: 0 10px;
  }
  .case-detail-col h6 {
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .case-detail-col p {
    font-size: 13px;
    color: var(--dark);
    font-weight: 400;
  }
  .case-paragraph {
    font-size: 13px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 16px;
    text-align: left;
    font-weight: 300;
  }
  .case-testimonial {
    background: var(--blush);
    border-left: 2px solid var(--gold-dark);
    padding: 16px 20px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    text-align: left;
    color: var(--dark);
    margin-top: 20px;
  }

  /* Portfolio Stats Counter */
  .portfolio-stats-band {
    background: var(--dark-mid);
    padding: 80px 60px;
    color: var(--white);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .p-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .p-stat-card .p-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 10px;
  }
  .p-stat-card .p-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
  }

  /* Budget Estimator */
  .estimator-card {
    background: var(--blush);
    border: 1px solid var(--gold-light);
    padding: 40px 30px;
    border-radius: 1px;
    margin-top: 40px;
  }
  .estimator-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 24px;
    text-align: center;
    color: var(--dark);
  }
  .estimator-grid-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
  }
  .estimator-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .estimator-group select {
    width: 100%;
    background: var(--white);
    border: 1px solid #E0D9CF;
    padding: 10px 14px;
    font-size: 13px;
    outline: none;
    appearance: none;
    cursor: pointer;
  }
  .estimator-group select:focus {
    border-color: var(--gold-dark);
  }
  .estimator-results {
    background: var(--white);
    border: 1px solid var(--gold-light);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: center;
  }
  .est-res-box h5 {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
  }
  .est-res-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--gold-dark);
    font-weight: 500;
  }

  /* Partner Venues Grid */
  .venues-grid-contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
  }
  .venue-item-contact {
    border: 1px solid var(--gold-light);
    padding: 24px;
    text-align: center;
    background: var(--white);
    transition: all 0.3s ease;
  }
  .venue-item-contact:hover {
    border-color: var(--gold-dark);
    transform: translateY(-3px);
  }
  .venue-item-contact h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
  }
  .venue-item-contact p {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  /* Consultation Popup Modal */
  .consultation-modal {
    position: fixed;
    inset: 0;
    background: rgba(17,17,17,0.7);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }
  .consultation-modal.visible {
    opacity: 1;
    pointer-events: auto;
  }
  .consultation-modal-box {
    background: var(--white);
    border: 1px solid var(--gold-light);
    max-width: 500px;
    width: 90%;
    position: relative;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    text-align: center;
    transform: scale(0.92);
    transition: transform 0.5s ease;
  }
  .consultation-modal.visible .consultation-modal-box {
    transform: scale(1);
  }
  .consultation-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
  }
  .consultation-modal-close:hover {
    color: var(--dark);
  }
  .consultation-modal-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--dark);
  }
  .consultation-modal-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
  }
  .consultation-modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .consultation-modal-form input,
  .consultation-modal-form select {
    width: 100%;
    border: 1px solid #E0D9CF;
    padding: 12px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    outline: none;
    background: #ffffff;
    color: var(--dark);
  }
  .consultation-modal-form input:focus,
  .consultation-modal-form select:focus {
    border-color: var(--gold-dark);
  }

  /* Responsive Adjustments for 10x Features */
  @media (max-width: 900px) {
    .founder-grid, .timeline-node, .estimator-grid-inputs, .estimator-results, .reels-grid, .venues-grid-contact, .values-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    .timeline-line-vertical {
      left: 20px;
    }
    .timeline-point {
      left: 20px;
    }
    .timeline-date {
      text-align: left !important;
      padding-left: 40px;
    }
    .timeline-node:nth-child(even) .timeline-date {
      order: 1;
    }
    .timeline-content {
      padding-left: 40px !important;
      text-align: left !important;
      order: 2 !important;
    }
    .founder-img {
      height: 320px;
    }
    .p-stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
  }
  
/* Force light color scheme globally so browsers don't invert colors */
:root {
    color-scheme: light !important;
}

/* Review Modal styling */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
}
.modal-content {
    background: #1a1a1a !important;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(201,168,76,0.3);
    box-sizing: border-box;
}
.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: none; border: none;
    color: #ffffff !important;
    font-size: 1.5rem; cursor: pointer;
    z-index: 1;
    line-height: 1;
    padding: 5px;
}
#reviewModal h3 {
    margin-top: 0; margin-bottom: 1.5rem;
    color: #C9A84C !important;
    font-size: 1.4rem;
}
.form-group {
    margin-bottom: 1.2rem;
}
#reviewModal .form-group > label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    color: #e8e8e8 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}
#reviewModal .form-group input, 
#reviewModal .form-group textarea,
#reviewModal .form-group select {
    width: 100% !important;
    padding: 0.8rem !important;
    background: #2b2b2b !important;
    border: 1px solid rgba(201,168,76,0.3) !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    font-size: 1rem !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
}
#reviewModal .form-group input::placeholder,
#reviewModal .form-group textarea::placeholder {
    color: rgba(255,255,255,0.5) !important;
}
#reviewModal .form-group input:focus,
#reviewModal .form-group textarea:focus,
#reviewModal .form-group select:focus {
    outline: none !important;
    border-color: #C9A84C !important;
    background: #333333 !important;
}
/* Star Rating (Brighter stars by default) */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
}
.star-rating input { display: none; }
.star-rating label {
    font-size: 2.2rem;
    color: #888888 !important; /* Brighter gray so it's fully visible on dark #1a1a1a bg */
    cursor: pointer;
    transition: color 0.15s;
    line-height: 1;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #C9A84C !important;
}
.delete-review-btn {
    background: rgba(255,0,0,0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255,0,0,0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    display: block;
}
.delete-review-btn:hover {
    background: #ff4d4d;
    color: #fff;
}
#reviews-avg-rating {
    margin-bottom: 1rem;
}
