/** Shopify CDN: Minification failed

Line 558:1 Expected "}" to go with "{"

**/
/* ════════════════════════════════════════
   FLACO PHOTOGRAPHY — commercial.css
   
   Commercial Work routing page.
   Inherits all typography from sandbox.css:
   - Headings:  Fraunces 300, gradient
   - Body:      Spectral 300
   - Labels:    Spectral 400, uppercase, 4px tracking
   - CTAs:      button-link from sandbox.css
════════════════════════════════════════ */

/* ════════════════════════════════════════
   SHARED UTILITIES
════════════════════════════════════════ */

.comm-label {
    display: block;
    font-family: 'Spectral', serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.35);
    margin-bottom: 20px;
}

.comm-label--light {
    color: rgba(245, 245, 245, 0.5);
}

.comm-rule {
    margin: 28px 0;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */

.comm-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0f0f0f;
}

.comm-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.comm-hero:hover .comm-hero__bg {
    transform: scale(1.0);
}

.comm-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.55) 50%,
        rgba(10, 10, 10, 0.2) 100%
    );
}

.comm-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 2370px;
    margin: 0 auto;
    padding: 0 60px 100px;
    width: 100%;
}

.comm-hero__heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1.0;
    margin-bottom: 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comm-hero__heading--italic {
    font-style: italic;
    display: block;
    background: linear-gradient(135deg, #f5f5f5 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comm-hero__body {
    font-family: 'Spectral', serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(245, 245, 245, 0.6);
    max-width: 480px;
}

/* scroll nudge */
.comm-hero__scroll {
    position: absolute;
    bottom: 48px;
    right: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.comm-hero__scroll span {
    font-family: 'Spectral', serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.3);
    writing-mode: vertical-rl;
}

.comm-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(245, 245, 245, 0.2);
    position: relative;
    overflow: hidden;
}

.comm-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 245, 245, 0.6);
    animation: scroll-drip 2s ease-in-out infinite;
}

@keyframes scroll-drip {
    0%   { top: -100%; }
    100% { top: 100%; }
}

/* ════════════════════════════════════════
   FEATURE TILE — full width
════════════════════════════════════════ */

.comm-feature {
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.comm-feature__link {
    display: block;
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
    text-decoration: none;
}

.comm-feature__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.comm-feature__link:hover .comm-feature__bg {
    transform: scale(1.03);
}

.comm-feature__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.7) 40%,
        rgba(10, 10, 10, 0.2) 70%,
        rgba(10, 10, 10, 0.05) 100%
    );
    transition: background 0.4s ease;
}

.comm-feature__link:hover .comm-feature__overlay {
    background: linear-gradient(
        105deg,
        rgba(10, 10, 10, 0.88) 0%,
        rgba(10, 10, 10, 0.62) 40%,
        rgba(10, 10, 10, 0.15) 70%,
        rgba(10, 10, 10, 0.02) 100%
    );
}

.comm-feature__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 64px;
}

.comm-feature__content { max-width: 600px; }

.comm-feature__heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.05;
    background: linear-gradient(135deg, #f5f5f5 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.comm-feature__hook {
    font-family: 'Spectral', serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.65);
    margin-bottom: 28px;
    max-width: 440px;
}

/* CTA within feature tile */
.comm-feature__inner .comm-cta {
    font-family: 'Spectral', serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.5);
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.comm-feature__link:hover .comm-cta {
    color: rgba(245, 245, 245, 0.9);
    letter-spacing: 4px;
}

/* client proof strip */
.comm-feature__proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comm-feature__client {
    font-family: 'Spectral', serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.3);
}

.comm-feature__client-divider {
    color: rgba(245, 245, 245, 0.15);
}

/* ════════════════════════════════════════
   SEGMENT INTRO
════════════════════════════════════════ */

.comm-intro {
    background: #0f0f0f;
    padding: 72px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comm-intro__inner {
    max-width: 1300px;
    margin: 0 auto;
}

.comm-intro__text {
    font-family: 'Spectral', serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(245, 245, 245, 0.45);
    max-width: 720px;
}

/* ════════════════════════════════════════
   6-TILE GRID
════════════════════════════════════════ */

.comm-grid {
    background: #0f0f0f;
    padding: 0;
}

.comm-grid__inner {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Individual tile ── */
.comm-tile {
    position: relative;
    height: 999px;
    overflow: hidden;
    text-decoration: none;
    background: #0f0f0f;
    display: block;
}

.comm-tile__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(20%);
}

.comm-tile:hover .comm-tile__bg {
    transform: scale(1.0);
    filter: grayscale(0%);
}

.comm-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.96) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.15) 100%
    );
    transition: background 0.4s ease;
}

.comm-tile:hover .comm-tile__overlay {
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.1) 100%
    );
}

.comm-tile__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comm-tile__num {
    font-family: 'Spectral', serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(245, 245, 245, 0.3);
    align-self: flex-start;
}

.comm-tile__content { margin-top: auto; }

.comm-tile__heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #f5f5f5 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.comm-tile__hook {
    font-family: 'Spectral', serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(245, 245, 245, 0.0);
    max-width: 280px;
    transition: color 0.4s ease;
}

.comm-tile:hover .comm-tile__hook {
    color: rgba(245, 245, 245, 0.6);
}

.comm-tile__arrow {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    color: rgba(245, 245, 245, 0.0);
    align-self: flex-end;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.comm-tile:hover .comm-tile__arrow {
    color: rgba(245, 245, 245, 0.6);
    transform: translate(4px, -4px);
}

/* ════════════════════════════════════════
   BOTTOM CTA SECTION
════════════════════════════════════════ */

.comm-cta-section {
    background: #0f0f0f;
    padding: 120px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.comm-cta-section__inner {
    max-width: 600px;
    margin: 0 auto;
}

.comm-cta-section__heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #f5f5f5 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.comm-cta-section__heading--italic {
    font-style: italic;
    font-family: 'Fraunces', serif;
    font-weight: 300;
    display: block;
    background: linear-gradient(135deg, #f5f5f5 0%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comm-cta-section__body {
    font-family: 'Spectral', serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(245, 245, 245, 0.55);
    margin-bottom: 44px;
}

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-reveal="1"] { transition-delay: 0.00s; }
[data-reveal="2"] { transition-delay: 0.15s; }
[data-reveal="3"] { transition-delay: 0.28s; }
[data-reveal="4"] { transition-delay: 0.42s; }

[data-reveal].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

@media (max-width: 1440px) {

   .comm-tile {
    position: relative;
    height: 600px;
}

@media (max-width: 1024px) {
    .comm-grid__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .comm-hero__inner,
    .comm-feature__inner,
    .comm-intro,
    .comm-cta-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .comm-hero__scroll { display: none; }

    .comm-grid__inner {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .comm-tile { height: 360px; }

    .comm-tile__hook { color: rgba(245, 245, 245, 0.55); }

    .comm-feature__link { height: 55vh; }

    .comm-intro { padding-top: 48px; padding-bottom: 48px; }
    .comm-intro__text { font-size: 18px; }
}