
.studio-aura {
    background: var(--off-white, #f8f4f0);
    padding: 100px 0 0;
}

.studio-aura-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
    padding: 0 6%;
}

.studio-aura-header .section-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    margin: 12px 0 16px;
}

.studio-features {
    display: flex;
    flex-direction: column;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 6%;
    gap: 64px;
}

.studio-feature-row {
    display: flex;
    align-items: center;
    gap: 56px;
    min-height: unset;
}

.studio-feature-row--reverse {
    flex-direction: row-reverse;
}

.studio-feature-img {
    flex: 0 0 48%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(74, 13, 23, 0.09);
}

.studio-feature-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.studio-feature-row:hover .studio-feature-img img {
    transform: scale(1.03);
}

.studio-feature-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    background: transparent;
}

.feature-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--maroon-main, #7a1c2a);
    margin-bottom: 16px;
    display: block;
}

.feature-number::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--maroon-main, #7a1c2a);
    margin-top: 8px;
    opacity: 0.5;
}

.studio-feature-text h3 {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--maroon-deep, #5a0e18);
    margin: 0 0 20px;
}

.studio-feature-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted, #6b5a5e);
    max-width: 340px;
}

/* Video + CTA block */
.studio-aura-video-block {
    display: flex;
    align-items: center;
    gap: 72px;
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 80px 6% 100px;
}

.studio-aura-video-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.studio-aura-video-text h3 {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 400;
    color: var(--maroon-deep, #5a0e18);
    line-height: 1.2;
    margin: 0;
}

.studio-aura-video-text p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted, #6b5a5e);
    max-width: 360px;
    margin: 0;
}

.studio-aura-video-embed {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fb-video-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74, 13, 23, 0.12);
    width: 380px;
    height: 676px;
    flex-shrink: 0;
    background: #111;
}

.fb-video-wrapper iframe {
    display: block;
    width: 380px;
    height: 676px;
    border: none;
}

.video-caption {
    font-size: 12px;
    color: var(--text-muted, #6b5a5e);
    opacity: 0.7;
}

.video-caption a {
    color: var(--maroon-main, #7a1c2a);
    text-decoration: none;
}

.video-caption a:hover {
    text-decoration: underline;
}

/* =============================================
   END STUDIO AURA
   ============================================= */

.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--maroon-darkest);
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.60;
    mix-blend-mode: luminosity;
    filter: contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(222, 8, 47, 0.4) 0%,
        rgba(119, 6, 24, 0.85) 100%
    );
    z-index: 1;
}

.hero-fullscreen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.12), transparent 44%),
                linear-gradient(180deg, rgba(15, 15, 15, 0.15), rgba(20, 20, 20, 0.36));
    pointer-events: none;
    z-index: 1;
}

.hero-bg-marquee {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
    -webkit-mask-composite: destination-in;
    mask-image:
        linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
    mask-composite: intersect;
}

.hero-marquee-track {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    width: max-content;
}

.marquee-left,
.marquee-right {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}

.marquee-left {
    animation: marqueeLeft 90s linear infinite;
}

.marquee-right {
    animation: marqueeRight 75s linear infinite;
}

.marquee-left img,
.marquee-right img {
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 24px;
    margin-right: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.16);
    filter: contrast(1.02) brightness(0.72) saturate(0.85);
    transition: transform 0.4s ease;
}

.marquee-left img:nth-child(6n+1), .marquee-right img:nth-child(6n+1) { width: 220px; height: 320px; }
.marquee-left img:nth-child(6n+2), .marquee-right img:nth-child(6n+2) { width: 300px; height: 210px; }
.marquee-left img:nth-child(6n+3), .marquee-right img:nth-child(6n+3) { width: 190px; height: 260px; }
.marquee-left img:nth-child(6n+4), .marquee-right img:nth-child(6n+4) { width: 340px; height: 460px; }
.marquee-left img:nth-child(6n+5), .marquee-right img:nth-child(6n+5) { width: 240px; height: 180px; }
.marquee-left img:nth-child(6n),   .marquee-right img:nth-child(6n)   { width: 220px; height: 320px; }

@keyframes marqueeLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: appear 1.2s ease-out forwards;
}

.hero-content h1 {
    color: var(--text-light);
    font-style: italic;
    font-size: clamp(40px, 6vw, 85px);
    line-height: 1;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 14px 42px rgba(235, 227, 228, 0.25);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-review {
    background: rgba(255, 255, 255, 0.92);
    color: var(--maroon-deep);
}

.reviews-summary {
    margin: 0.5rem 0 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-pill-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

.hero-pill-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(122, 28, 42, 0.08);
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.intro {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
        var(--cream);
    text-align: center;
    padding: 180px 6%;
}

.intro-inner {
    max-width: 820px;
    margin: 0 auto;
}

.intro-inner .eyebrow {
    font-size: 13px;
    letter-spacing: 3px;
}

.intro-title {
    font-size: clamp(36px, 4.8vw, 58px);
    font-style: italic;
    margin: 24px 0 28px 0;
    line-height: 1.15;
    color: var(--maroon-deep);
    font-weight: 400;
}

.intro-sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-preview {
    position: relative;
    background: var(--off-white);
    overflow: hidden;
    padding: 110px 6% 80px;
    border-top: 1px solid rgba(122, 28, 42, 0.08);
}

.gallery-preview .gallery-head {
    text-align: center;
    padding: 0 6%;
    margin-bottom: 56px;
}

.gallery-preview .eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
}

.gallery-preview .section-title {
    font-size: clamp(26px, 2.6vw, 38px);
    line-height: 1.2;
    margin: 0 0 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.gallery-preview .section-description {
    max-width: 520px;
}

.gallery-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
}

.gallery-card-item {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(74, 13, 23, 0.05);
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(122, 28, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.gallery-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(74, 13, 23, 0.10);
    border-color: rgba(122, 28, 42, 0.14);
}

.card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-card-item:hover .card-image img {
    transform: scale(1.05);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(74, 13, 23, 0.08) 100%);
    pointer-events: none;
    transition: opacity 0.45s ease;
    opacity: 0;
}

.gallery-card-item:hover .card-image-overlay {
    opacity: 1;
}

.card-body {
    padding: 24px 22px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.card-title {
    font-family: 'Libre Baskerville', 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 2.5px;
    color: var(--maroon-deep);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.3;
}

.card-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    max-width: 240px;
    opacity: 0.85;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 22px;
    border: 1px solid var(--maroon-main);
    color: var(--maroon-main);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-btn:hover {
    background: var(--maroon-main);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(122, 28, 42, 0.18);
}

.card-arrow {
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 14px;
}

.card-btn:hover .card-arrow {
    transform: translateX(4px);
}

.gallery-cta {
    text-align: center;
    padding: 50px 6% 0;
}

.gallery-preview .gallery-marquee,
.gallery-preview .track {
    display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(75vw, 300px);
    height: 100vh;
    background: var(--maroon-darkest);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px 28px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 100;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 16px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 1px;
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    border-bottom: none;
  }

  .hero-fullscreen {
    min-height: 100svh;
    min-height: 600px;
  }

  .hero-content {
    gap: 20px;
    padding: 0 24px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 9vw, 52px);
    line-height: 1.05;
  }

  .hero-tagline {
    font-size: 15px;
    max-width: 90%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 260px;
    gap: 12px;
  }

  .hero-actions .btn-center,
  .hero-actions .btn-review {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
  }

  .hero-pill-row {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-pill-row span {
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .hero-bg-marquee {
    gap: 30px;
    opacity: 0.45;
  }

  .marquee-left img,
  .marquee-right img {
    border-radius: 14px;
    margin-right: 4px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }

  .marquee-left img:nth-child(6n+1), .marquee-right img:nth-child(6n+1) { width: 140px; height: 200px; }
  .marquee-left img:nth-child(6n+2), .marquee-right img:nth-child(6n+2) { width: 180px; height: 130px; }
  .marquee-left img:nth-child(6n+3), .marquee-right img:nth-child(6n+3) { width: 120px; height: 170px; }
  .marquee-left img:nth-child(6n+4), .marquee-right img:nth-child(6n+4) { width: 200px; height: 280px; }
  .marquee-left img:nth-child(6n+5), .marquee-right img:nth-child(6n+5) { width: 150px; height: 110px; }
  .marquee-left img:nth-child(6n),   .marquee-right img:nth-child(6n)   { width: 140px; height: 200px; }

  .intro {
    padding: 100px 6%;
  }

  .intro-title {
    font-size: clamp(28px, 6vw, 42px);
    margin: 16px 0 20px;
  }

  .intro-sub {
    font-size: 15px;
    line-height: 1.7;
  }

  .gallery-preview {
    padding: 80px 0 60px;
  }

  .gallery-preview .gallery-head {
    margin-bottom: 36px;
    padding: 0 24px;
  }

  .gallery-preview .section-title {
    font-size: clamp(22px, 5vw, 30px);
  }

  .gallery-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 20px;
    padding: 0 24px;
  }

  .card-image {
    height: 220px;
  }

  .card-body {
    padding: 20px 18px 24px;
    gap: 8px;
  }

  .card-title {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .card-description {
    font-size: 12.5px;
    max-width: 100%;
  }

  .card-btn {
    padding: 10px 20px;
    font-size: 10px;
  }

  .services-discovery {
    padding: 80px 6%;
  }

  .services-head {
    margin-bottom: 36px;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-item {
    border-radius: 14px;
  }

  .service-image {
    height: 220px;
  }

  .service-content {
    padding: 24px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 14px;
  }

  .studio-aura {
    padding: 60px 0;
  }

  .studio-aura-header {
    padding: 0 24px;
    margin-bottom: 48px;
  }

  .studio-features {
    padding: 0 24px;
    gap: 48px;
  }

  .studio-feature-row {
    flex-direction: column;
    gap: 24px;
    min-height: unset;
  }

  .studio-feature-row--reverse {
    flex-direction: column;
  }

  .studio-feature-img {
    width: 100%;
    flex: unset;
    border-radius: 14px;
  }

  .studio-feature-img img {
    height: 240px;
  }

  .studio-feature-text {
    padding: 0;
  }

  .studio-feature-text h3 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .studio-feature-row--reverse .studio-feature-img {
    order: 1;
}

  .studio-feature-row--reverse .studio-feature-text {
    order: 2;
}
  .studio-aura-video-block {
    flex-direction: column;
    gap: 40px;
    padding: 60px 24px;
    margin: 0;
  }

  .studio-aura-video-text {
    text-align: center;
    align-items: center;
  }

  .studio-aura-video-text h3 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .fb-video-wrapper {
    border-radius: 14px;
    width: 267px;
    height: 476px;
  }

  .fb-video-wrapper iframe {
    width: 267px;
    height: 476px;
  }

  .testimonials-static {
    margin-bottom: 32px;
  }

  .testimonials-grid-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 20px;
    padding: 0 6%;
  }

  .testimonial-card-item {
    padding: 24px;
  }

  .card-quote {
    font-size: 14px;
    line-height: 1.6;
  }

  .card-reviewer {
    margin-top: 16px;
  }

  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .fb-reviews-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
  }

  .page-footer {
    padding: 32px 24px;
    text-align: center;
  }

  .page-footer p {
    font-size: 13px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  #lightboxImage {
    max-width: 92vw;
    max-height: 70vh;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .hero-fullscreen {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .hero-bg-marquee {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  .marquee-left,
  .marquee-right {
    animation: none;
  }

  .hero-content {
    animation: none;
  }

  .gallery-card-item,
  .card-btn,
  .card-arrow {
    transition: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .gallery-card-item:hover {
    transform: none;
  }

  .card-btn:hover {
    transform: none;
  }

  .card-btn:active {
    transform: scale(0.98);
  }
}
/* =============================================
   WHERE TO FIND US — Location Block
   ============================================= */

.location-block {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(122, 28, 42, 0.10);
}

.location-map-wrap {
    flex: 1;
    min-height: 360px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(122, 28, 42, 0.12);
    box-shadow: 0 28px 80px rgba(74, 13, 23, 0.08);
}

.location-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

@media (max-width: 768px) {
    .location-map-wrap {
        min-height: 280px;
    }

    .location-map-wrap iframe {
        min-height: 280px;
    }
}