/* =========================================================
   PHOTO & VIDEO PAGE — section-scoped styles only.
   All selectors prefixed with .pv-* per CLAUDE.md no-cross-section rule.
   ========================================================= */

/* ===== Page header sits absolutely over the hero ===== */
.pv-page .site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 5; }
.pv-page main { overflow-x: clip; }

/* White nav text for this page only (photo bg behind header) */
.pv-page .site-header .nav-links a,
.pv-page .site-header .nav-submenu-trigger { color: #fff; }
.pv-page .site-header .nav-caret { color: #fff; }
/* Submenu dropdown items also white; darken the panel so they read */
.pv-page .site-header .nav-submenu { background: rgba(20, 25, 50, 0.78); }
.pv-page .site-header .nav-submenu a { color: #fff; }
.pv-page .site-header .menu-toggle span { background: #fff; }

/* ===== Reusable typography tokens (consumed inside this file) =====
   These mirror About's section-heading / section-sublede / body-paragraph / body-large
   tokens documented in STYLE-TOKENS.md. */

/* =========================================================
   1) HERO — full-bleed photo with light blue veil
   ========================================================= */
.pv-hero {
    position: relative;
    background-color: #1f2a44;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}
.pv-hero-veil {
    position: absolute; inset: 0;
    background: rgba(70, 80, 160, 0.55); /* lavender-blue tint matches mockup */
    pointer-events: none;
    z-index: 1;
}
.pv-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    width: 100%;
    padding-top: clamp(330px, 42vh, 430px);
}
.pv-hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.5rem, 4.8vw, 4.4rem);
    line-height: 1.16;
    letter-spacing: -0.005em;
    color: #fff;
    margin: 0 0 56px;
}
.pv-hero-title .line { display: block; }

/* Yellow scribble underline under "photography" */
.pv-hero-photo,
.pv-hero-video {
    position: relative;
    display: inline-block;
    padding: 0 0.05em;
    isolation: isolate;
}
.pv-hero-photo::before,
.pv-hero-video::before {
    content: "";
    position: absolute;
    left: -2px; right: -2px;
    bottom: 2px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}
.pv-hero-photo::before {
    background-image: url('../assets/images/mission-effect.png');
}
/* Red scribble: tint the same brushstroke red via mask */
.pv-hero-video::before {
    background-color: var(--clr-red);
    -webkit-mask: url('../assets/images/mission-effect.png') no-repeat center / 100% 100%;
            mask: url('../assets/images/mission-effect.png') no-repeat center / 100% 100%;
}

.pv-hero-cta {
    font-family: var(--font-mono);
    font-weight: 500;
    letter-spacing: 1.6px;
    padding: 18px 44px;
    text-transform: uppercase;
    font-size: 0.78rem;
}

/* =========================================================
   2) VISUAL STORYTELLING — 2-col intro on lavender-light
   ========================================================= */
.pv-storytelling {
    position: relative;
    background-color: rgba(205, 211, 255, 0.55);
    padding: clamp(80px, 9vw, 140px) 0;
    overflow: hidden;
}
.pv-storytelling-container {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
    max-width: 1240px;
}
.pv-storytelling-photo {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(20, 25, 60, 0.10);
    aspect-ratio: 4 / 5;
}
.pv-storytelling-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 60% 65%;
    transform: scale(2);
    transform-origin: 60% 0%;
    display: block;
}
.pv-storytelling-content { max-width: 620px; }
.pv-storytelling-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 4.1vw, 3.6rem);
    line-height: 1.18;
    color: var(--clr-navy);
    margin: 0 0 28px;
}
.pv-storytelling-title .line { display: block; }

/* Colored brushstroke underline — red / blue / yellow variants */
.pv-under {
    position: relative;
    display: inline-block;
    padding: 0 0.05em;
    isolation: isolate;
}
.pv-under::before {
    content: "";
    position: absolute;
    left: -2px; right: -2px;
    bottom: 2px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}
.pv-under--yellow::before {
    background-image: url('../assets/images/mission-effect.png');
}
.pv-under--red::before {
    background-color: var(--clr-red);
    -webkit-mask: url('../assets/images/mission-effect.png') no-repeat center / 100% 100%;
            mask: url('../assets/images/mission-effect.png') no-repeat center / 100% 100%;
}
.pv-under--blue::before {
    background-color: #0152f5;
    -webkit-mask: url('../assets/images/mission-effect.png') no-repeat center / 100% 100%;
            mask: url('../assets/images/mission-effect.png') no-repeat center / 100% 100%;
}
.pv-storytelling-lede {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.35rem, 1.75vw, 1.65rem);
    line-height: 1.4;
    color: var(--clr-navy);
    margin: 0 0 22px;
}
.pv-storytelling-lede strong { font-weight: 500; }
.pv-storytelling-body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.08rem;
    line-height: 1.65;
    letter-spacing: 0.4px;
    color: var(--clr-navy);
    margin: 0;
    max-width: 480px;
}

/* Decorative brand shapes scattered in storytelling section.
   All three reuse the canonical brand-shape SVGs from assets/images/SVG/.
   Red dot: brand-yellow-circle.svg masked + red bg color. */
.pv-deco { position: absolute; pointer-events: none; }
.pv-deco-red-dot {
    top: 56%; left: 5%;
    width: 44px; height: 44px;
    background-color: var(--clr-red);
    -webkit-mask: url('../assets/images/SVG/brand-yellow-circle.svg') no-repeat center / contain;
            mask: url('../assets/images/SVG/brand-yellow-circle.svg') no-repeat center / contain;
}
.pv-deco-blue-half {
    top: 22%; right: 0;
    width: 38px; height: 60px;
    background-image: url('../assets/images/SVG/brand-half-blue-circle.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
}
.pv-deco-lavender-tri {
    bottom: 14%; right: 4%;
    width: 58px; height: 58px;
    background-image: url('../assets/images/SVG/brand-lavender-triangle-upsidedown.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

/* =========================================================
   3) WHAT WE OFFER + 4) 3 SERVICE CARDS — cream band
   ========================================================= */
.pv-offer {
    background-color: var(--clr-cream);
    padding: clamp(80px, 9vw, 140px) 0 clamp(64px, 7vw, 112px);
}
.pv-offer-container { max-width: 1240px; }
.pv-offer-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(3.2rem, 5.6vw, 4.9rem);
    line-height: 1.08;
    color: var(--clr-navy);
    text-align: center;
    margin: 0 0 30px;
}
.pv-offer-sub {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.65rem, 2.15vw, 2rem);
    line-height: 1.4;
    color: var(--clr-navy);
    text-align: center;
    letter-spacing: 0.2px;
    max-width: 920px;
    margin: 0 auto 28px;
}
.pv-offer-sub strong { font-weight: 500; }
.pv-offer-sub-2 { margin-bottom: 64px; }

.pv-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: clamp(20px, 2vw, 32px);
    row-gap: 56px; /* extra breathing room below each card so the overlapping
                      Inquire For Pricing pill doesn't kiss the next card. */
}
.pv-service {
    background: var(--clr-cream);
    border: 1px solid var(--clr-navy);
    border-radius: 28px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pv-service-head {
    position: relative;
    padding: 18px 28px;
    color: #fff;
    border-top-left-radius: 27px;
    border-top-right-radius: 27px;
    text-align: center;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pv-service-head--red      { background: var(--clr-red); }
.pv-service-head--blue     { background: #0152f5; }
.pv-service-head--lavender { background: #8090ff; }
.pv-service-num {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.04em;
}
.pv-service-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.65rem, 2.1vw, 2.05rem);
    text-align: center;
    margin: 0;
    line-height: 1.1;
    color: #fff;
}
.pv-service-body {
    padding: 28px 32px 64px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: var(--clr-cream);
    border-bottom-left-radius: 27px;
    border-bottom-right-radius: 27px;
}
.pv-service-lead {
    font-family: var(--font-body);
    font-size: 1.04rem;
    line-height: 1.55;
    color: var(--clr-navy);
    margin: 0 0 18px;
    letter-spacing: 0.4px;
}
.pv-service-bullets-label {
    font-family: var(--font-body);
    font-size: 1.04rem;
    line-height: 1.55;
    color: var(--clr-navy);
    margin: 0 0 8px;
    letter-spacing: 0.4px;
}
.pv-service-bullets-label strong { font-weight: 500; }
.pv-service-bullets {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 28px;
    font-family: var(--font-body);
    font-size: 1.04rem;
    line-height: 1.55;
    color: var(--clr-navy);
    letter-spacing: 0.4px;
}
.pv-service-bullets li { margin-bottom: 4px; }
.pv-service-cta {
    position: absolute;
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
    background: #fff;
    color: var(--clr-navy);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid var(--clr-navy);
    white-space: nowrap;
    z-index: 2;
}
/* Keep button centered on hover (global .btn:hover translateY would otherwise
   clobber our translateX and visibly jump the button to the right). */
.pv-service-cta:hover,
.pv-service-cta:focus { transform: translateX(-50%); }

/* =========================================================
   5) CURATED PORTFOLIO GRID
   ========================================================= */
.pv-portfolio {
    background: #fff;
    padding: clamp(80px, 9vw, 140px) 0;
    text-align: center;
}
.pv-portfolio-container { max-width: 1180px; }
.pv-portfolio-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 3.75vw, 3.3rem);
    line-height: 1.18;
    color: var(--clr-navy);
    margin: 0 0 56px;
}
.pv-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 32px);
    margin-bottom: 56px;
}
.pv-portfolio-tile {
    aspect-ratio: 16 / 10;
    background: #c8cdff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-navy);
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    line-height: 1.2;
}
.pv-portfolio-tile span { display: block; text-align: center; }
.pv-portfolio-cta {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 16px 44px;
    color: var(--clr-navy);
}

/* =========================================================
   6) ONE TRUSTED PARTNER — production process 3-cards
   ========================================================= */
.pv-process {
    background-color: var(--clr-cream);
    padding: clamp(80px, 9vw, 140px) 0;
}
.pv-process-container { max-width: 1240px; }
.pv-process-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.65rem, 4.4vw, 3.95rem);
    line-height: 1.12;
    color: var(--clr-navy);
    text-align: center;
    margin: 0 0 24px;
}
.pv-process-title .line { display: block; }
.pv-strike {
    position: relative;
    display: inline-block;
    font-weight: 500;
    padding: 0 0.1em;
    isolation: isolate;
}
.pv-strike::before {
    content: "";
    position: absolute;
    left: -4px; right: -4px;
    bottom: 4px;
    height: 22px;
    background-image: url('../assets/images/mission-effect.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}
.pv-process-sub {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    line-height: 1.4;
    color: var(--clr-navy);
    text-align: center;
    margin: 0 auto 64px;
    max-width: 760px;
    letter-spacing: 0.2px;
}

.pv-process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2vw, 32px);
}
.pv-process-card {
    background: #fff;
    border: 1px solid #d8d2c5;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}
.pv-process-card-head { padding: 18px 28px; color: #fff; text-align: center; }
.pv-process-card-head--red      { background: var(--clr-red); }
.pv-process-card-head--blue     { background: #0152f5; }
.pv-process-card-head--lavender { background: #8090ff; }
.pv-process-card-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.65rem, 2.1vw, 2.05rem);
    line-height: 1.1;
    margin: 0;
    color: #fff;
}
.pv-process-card-body {
    position: relative;
    padding: 28px 28px 64px;
    flex: 1;
}
.pv-process-card-body p {
    font-family: var(--font-body);
    font-size: 1.04rem;
    line-height: 1.55;
    color: var(--clr-navy);
    margin: 0;
    letter-spacing: 0.4px;
}
.pv-process-mark { position: absolute; right: 24px; bottom: 24px; }
.pv-process-mark--red-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--clr-red);
}
.pv-process-mark--blue-tri {
    width: 0; height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 16px solid #0152f5;
}
.pv-process-mark--lavender-half {
    width: 11px; height: 22px;
    background: #8090ff;
    border-radius: 22px 0 0 22px;
}

/* =========================================================
   7) MEET THE OH YES CREW — yellow band, 2-col
   ========================================================= */
.pv-crew {
    background-color: #fae395;
    padding: clamp(80px, 8vw, 130px) 0;
    overflow: visible;
    position: relative;
}
.pv-crew-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
    max-width: 1240px;
}

/* Photo panel + decorations */
.pv-crew-photo-wrap {
    position: relative;
    align-self: stretch;
}
.pv-crew-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    display: block;
    box-shadow: 0 20px 50px rgba(20,25,60,0.10);
}

.pv-crew-sticker {
    position: absolute;
    z-index: 2;
    top: -22px; left: -28px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(20,25,60,0.12);
    padding: 14px 22px;
    transform: rotate(-9deg);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1;
    color: var(--clr-navy);
    text-align: center;
    border-radius: 4px;
}
.pv-crew-sticker-line { display: block; font-size: 1.1rem; letter-spacing: 0.04em; }
.pv-crew-sticker-line--brand { font-size: 1.5rem; color: var(--clr-red); margin: 4px 0; }

.pv-crew-deco { position: absolute; pointer-events: none; }
.pv-crew-deco-red-circle {
    top: -34px; right: 16%;
    width: 110px; height: 110px;
    background-color: var(--clr-red);
    -webkit-mask: url('../assets/images/SVG/brand-yellow-circle.svg') no-repeat center / contain;
            mask: url('../assets/images/SVG/brand-yellow-circle.svg') no-repeat center / contain;
    z-index: 1;
}
.pv-crew-deco-blue-half {
    bottom: 22%; left: -52px;
    width: 100px; height: 150px;
    background-image: url('../assets/images/SVG/brand-half-blue-circle.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
}
.pv-crew-deco-blue-tri {
    top: 38%;
    right: -55px;
    width: 110px;
    height: 110px;
    background-image: url('../assets/images/SVG/brand-lavender-triangle-upsidedown.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.pv-crew-photo-cta {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 22px 36px;
    border: 1px solid var(--clr-navy);
    background: #fff;
    color: var(--clr-navy);
    z-index: 3;
}
/* Lock the hover transform to the centering translate so the global
   .btn:hover{translateY(-1px)} doesn't slide the button to the right. */
.pv-crew-photo-cta:hover,
.pv-crew-photo-cta:focus { transform: translateX(-50%); }

/* Right-side content */
.pv-crew-content {
    position: relative;
    max-width: 620px;
}
.pv-crew-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 4vw, 3.3rem);
    line-height: 1.05;
    color: var(--clr-navy);
    margin: 0 0 24px;
    text-transform: uppercase;
}
.pv-crew-title .line { display: block; }
.pv-crew-lede {
    font-family: var(--font-body);
    font-size: 1.08rem;
    line-height: 1.55;
    color: var(--clr-navy);
    margin: 0 0 18px;
    letter-spacing: 0.4px;
}
.pv-crew-lede-2 { margin-bottom: 22px; }

.pv-crew-specialties {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(16px, 3vw, 40px);
    row-gap: 22px;
}
.pv-crew-spec {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.pv-crew-spec-icon {
    display: inline-block;
    width: 36px; height: 36px;
}
/* Specialty icons — all four use brand SVGs from assets/images/SVG/. */
.pv-crew-spec-icon--red-dot {
    width: 22px; height: 22px;
    background-color: var(--clr-red);
    -webkit-mask: url('../assets/images/SVG/brand-yellow-circle.svg') no-repeat center / contain;
            mask: url('../assets/images/SVG/brand-yellow-circle.svg') no-repeat center / contain;
}
.pv-crew-spec-icon--yellow-flower {
    width: 28px; height: 28px;
    background-image: url('../assets/images/SVG/brand-4-circle-angled.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.pv-crew-spec-icon--blue-tri {
    width: 24px; height: 24px;
    background-image: url('../assets/images/SVG/brand-lavender-triangle-upsidedown.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.pv-crew-spec-icon--blue-half {
    width: 22px; height: 30px;
    background-image: url('../assets/images/SVG/brand-half-blue-circle.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.pv-crew-spec-label {
    font-family: var(--font-body);
    font-size: 1.04rem;
    line-height: 1.3;
    color: var(--clr-navy);
    letter-spacing: 0.4px;
}

.pv-crew-closing {
    font-family: var(--font-body);
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--clr-navy);
    margin: 0;
    letter-spacing: 0.4px;
}

/* Big yellow 4-circle clover mark — straddles the yellow band's bottom edge
   so it spills into the white section below.
   Positioned on `.pv-crew` (the section) so `bottom` is relative to the band edge. */
.pv-crew-flower {
    position: absolute;
    bottom: -85px;
    right: 6%;
    width: 180px;
    height: 180px;
    background-image: url('../assets/images/SVG/brand-4-circle-normal.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 3;
    pointer-events: none;
}

/* =========================================================
   8) HOW WE CAPTURE — 5 dark-overlay cards (3 + 2)
   ========================================================= */
.pv-capture {
    background: #fff;
    padding: clamp(80px, 9vw, 140px) 0 clamp(56px, 6vw, 96px);
}
.pv-capture-container { max-width: 1240px; }
.pv-capture-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.65rem, 4.85vw, 4.4rem);
    line-height: 1.08;
    color: var(--clr-navy);
    margin: 0 0 56px;
}
.pv-capture-title .line { display: block; }
.pv-capture-circle {
    position: relative;
    display: inline-block;
    color: #8090ff;
    font-weight: 600;
    padding: 0 26px;
}
.pv-capture-circle::before {
    content: "";
    position: absolute;
    inset: -10px -6px;
    background-image: url('../assets/images/lavender-circle-scribble.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}

/* 14-col sub-grid: Card 1 = Card 2 equal widths on top row, Card 4 still the
   widest panel on bottom row, with Card 3 a bit wider and Card 5 wider than
   the previous round. Top: 5/5/4 = 14. Bottom: 6/4/4 = 14. */
.pv-capture-grid {
    display: grid;
    grid-template-columns: repeat(14, 1fr);
    grid-template-rows: 360px 320px;
    gap: clamp(20px, 2vw, 28px);
}
.pv-capture-card--1 { grid-column: 1 / 6;   grid-row: 1; }
.pv-capture-card--2 { grid-column: 6 / 11;  grid-row: 1; }
.pv-capture-card--3 { grid-column: 11 / 15; grid-row: 1 / 3; }
.pv-capture-card--4 { grid-column: 1 / 7;   grid-row: 2; }
.pv-capture-card--5 { grid-column: 7 / 11;  grid-row: 2; }
.pv-capture-card {
    position: relative;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}
.pv-capture-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.35) 100%);
    z-index: 0;
}
.pv-capture-card-inner {
    position: relative;
    z-index: 1;
    padding: 28px 28px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.pv-capture-card-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.4rem, 1.85vw, 1.75rem);
    line-height: 1.15;
    color: #fff;
    margin: 0 0 12px;
    max-width: 90%;
}
.pv-capture-card-inner p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.4px;
    margin: 0;
}

/* =========================================================
   9) GEOMETRIC DIVIDER STRIP
   ========================================================= */
.pv-divider {
    height: 24px;
    background-image: url('../assets/images/1x/shape-border.png');
    background-repeat: repeat-x;
    background-size: auto 24px;
    background-position: left center;
}

/* =========================================================
   10) ENGAGING VISUALS (US MAP) — light blue band
   ========================================================= */
.pv-nationwide {
    background-color: #abc3e7;
    padding: clamp(80px, 9vw, 140px) 0;
    text-align: center;
}
.pv-nationwide-container { max-width: 1100px; }
.pv-nationwide-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.65rem, 4.4vw, 3.95rem);
    line-height: 1.12;
    color: var(--clr-navy);
    margin: 0 0 18px;
}
.pv-nationwide-title .line { display: block; }
.pv-nationwide-sub {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    color: var(--clr-navy);
    margin: 0 0 14px;
    letter-spacing: 0.2px;
}
.pv-nationwide-body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--clr-navy);
    margin: 0 auto 48px;
    max-width: 720px;
    letter-spacing: 0.4px;
}
.pv-nationwide-map {
    margin: 0 auto;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    background: rgba(255,255,255,0.18);
    border: 1px dashed rgba(20,25,60,0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pv-nationwide-map-placeholder {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: rgba(20,25,60,0.55);
    letter-spacing: 0.05em;
}

/* =========================================================
   11) FINAL CTA — premium photo & video / agency strategy
   ========================================================= */
.pv-final {
    position: relative;
    background-color: #1a1f36;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: clamp(96px, 10vw, 160px) 0;
    overflow: hidden;
}
.pv-final-veil {
    position: absolute; inset: 0;
    background: rgba(20, 25, 50, 0.55);
    z-index: 1;
}
.pv-final-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 920px;
    color: #fff;
}
.pv-final-title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.1rem, 3.6vw, 3.2rem);
    line-height: 1.08;
    color: #fff;
    margin: 0;
}
.pv-final-op {
    display: block;
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 2.85vw, 2.65rem);
    line-height: 1;
    color: #fff;
    margin: 8px 0;
}
.pv-final-sub {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.65rem, 2.15vw, 2rem);
    line-height: 1.3;
    color: #fff;
    margin: 14px 0 22px;
    letter-spacing: 0.2px;
}
.pv-final-body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    margin: 0 auto 36px;
    max-width: 660px;
    letter-spacing: 0.4px;
}
.pv-final-cta {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 22px 56px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .pv-hero { padding: 180px 0 140px; min-height: 0; }
    .pv-hero-container { padding-top: 0; }
    .pv-hero-title { font-size: clamp(1.9rem, 5.4vw, 2.6rem); }

    /* Storytelling stacks 1-col; hide decorative shapes since they collide
       with the now-full-width content (Phase 1, #1 + #2). */
    .pv-storytelling-container,
    .pv-crew-container { grid-template-columns: 1fr; }
    .pv-storytelling-photo { max-width: 480px; margin: 0 auto; }
    .pv-deco-red-dot,
    .pv-deco-blue-half,
    .pv-deco-lavender-tri { display: none; }

    .pv-services,
    .pv-portfolio-grid,
    .pv-process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Orphan-card full-width spans for the 3rd item in each 3-card grid
       (Phase 2, #4 + #5). */
    .pv-services .pv-service:nth-child(3),
    .pv-process-cards .pv-process-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: calc(50% - clamp(10px, 1vw, 16px));
        margin: 0 auto;
    }
    /* Process cards: drop the fixed min-height that leaves huge empty space
       below short body copy (Phase 1, #3). */
    .pv-process-card { min-height: auto; }

    .pv-capture-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .pv-capture-card--1 { grid-column: 1; grid-row: 1; }
    .pv-capture-card--2 { grid-column: 2; grid-row: 1; }
    .pv-capture-card--3 { grid-column: 1 / 3; grid-row: 2; }
    .pv-capture-card--4 { grid-column: 1; grid-row: 3; }
    .pv-capture-card--5 { grid-column: 2; grid-row: 3; }

    /* Keep crew specialty icons 2-col at tablet — only collapse to 1-col on
       phone (Phase 3, #9). */
    .pv-crew-specialties { grid-template-columns: 1fr 1fr; }
    /* Flower-mark stays visible but scales down and tucks closer to the
       edge (Phase 3, #6). */
    .pv-crew-flower {
        display: block;
        width: 120px;
        height: 120px;
        right: 4%;
        bottom: -60px;
    }
    .pv-crew-deco-red-circle { right: 8%; }
    .pv-crew-deco-blue-tri  { right: 4%; }
}

@media (max-width: 768px) {
    .pv-hero { padding: 160px 0 120px; }
    .pv-hero-title { font-size: clamp(1.7rem, 7vw, 2.1rem); }

    .pv-services,
    .pv-portfolio-grid,
    .pv-process-cards {
        grid-template-columns: 1fr;
    }
    /* Once stacked 1-col, drop the orphan-card max-width override */
    .pv-services .pv-service:nth-child(3),
    .pv-process-cards .pv-process-card:nth-child(3) {
        max-width: none;
        grid-column: auto;
    }
    .pv-capture-grid {
        grid-template-columns: 1fr;
    }
    .pv-capture-card--1,
    .pv-capture-card--2,
    .pv-capture-card--3,
    .pv-capture-card--4,
    .pv-capture-card--5 { grid-column: 1; grid-row: auto; }

    .pv-storytelling-photo { aspect-ratio: 1 / 1; }

    /* Specialty icons stack 1-col on phone */
    .pv-crew-specialties { grid-template-columns: 1fr; }

    .pv-final-title { font-size: clamp(1.55rem, 5vw, 1.95rem); }
}

@media (max-width: 480px) {
    /* Trim hero headline so it sits cleanly on small phones (Phase 4, #10) */
    .pv-hero-title { font-size: clamp(1.55rem, 7.5vw, 1.95rem); line-height: 1.18; }

    .pv-offer-title,
    .pv-process-title,
    .pv-capture-title,
    .pv-nationwide-title { font-size: clamp(1.7rem, 7.4vw, 2.1rem); }
    .pv-portfolio-title  { font-size: clamp(1.4rem, 6vw, 1.8rem); }
}
