:root {
    --paper: #f8f7f2;
    --paper-warm: #eee7de;
    --mist: #d8dfdc;
    --ink: #252421;
    --muted: #68645c;
    --soft: #918b80;
    --moss: #5f6b55;
    --clay: #8a4e42;
    --line: rgba(37, 36, 33, 0.14);
    --shadow: 0 24px 70px rgba(37, 36, 33, 0.08);
    --heading: "Cormorant Garamond", Georgia, serif;
    --body: "Jost", "Segoe UI", sans-serif;
    --container: 1180px;
    --radius: 4px;
    --photo-home-01: url("cover photo.jpg");
    --photo-home-02: url("assets/photos/home-02.jpg");
    --photo-home-03: url("assets/photos/home-03.jpg");
    --photo-services-hero: url("assets/photos/services-hero.jpg");
    --photo-about-portrait: url("assets/photos/about-portrait-new.jpg");
    --photo-about-working: url("assets/photos/about-working.jpg");
    --photo-portfolio-01: url("assets/photos/portfolio-01.jpg");
    --photo-portfolio-02: url("assets/photos/portfolio-02.jpg");
    --photo-portfolio-03: url("assets/photos/portfolio-03.jpg");
    --photo-portfolio-04: url("assets/photos/portfolio-04.jpg");
    --photo-portfolio-05: url("assets/photos/portfolio-05.jpg");
    --photo-portfolio-06: url("assets/photos/portfolio-06.jpg");
}

/* Final editorial override layer */
body.editorial-site {
    --paper: #eeece5;
    --ink: #191817;
    --muted: #45423e;
    --line: rgba(25, 24, 23, 0.28);
    --body: Georgia, "Times New Roman", serif;
    background: var(--paper);
    color: var(--ink);
}

body.editorial-site .site-header.editorial-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: 108px;
    padding: 1.35rem clamp(1.2rem, 5vw, 4rem);
    border: 0;
    background: linear-gradient(180deg, rgba(238, 236, 229, 0.52), rgba(238, 236, 229, 0));
    backdrop-filter: none;
}

body.editorial-site .editorial-brand {
    gap: 0.25rem;
    color: #111;
}

body.editorial-site .editorial-brand span:first-child {
    font-family: var(--heading);
    font-size: clamp(2.4rem, 6vw, 5.8rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.01em;
}

body.editorial-site .editorial-brand span:last-child {
    padding-left: 0.4rem;
    font-size: clamp(0.62rem, 1.15vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
}

body.editorial-site .menu-toggle.editorial-menu-toggle {
    position: fixed;
    top: clamp(0.75rem, 2vw, 1.25rem);
    right: clamp(0.75rem, 2vw, 1.45rem);
    z-index: 120;
    width: clamp(58px, 7vw, 82px);
    height: clamp(58px, 7vw, 82px);
    display: grid;
    place-items: center;
    border: 1px solid rgba(25, 24, 23, 0.6);
    border-radius: 999px;
    background: rgba(238, 236, 229, 0.36);
    color: var(--ink);
}

body.editorial-site .editorial-menu-toggle em {
    margin-top: 1.15rem;
    font-size: 0.58rem;
    font-style: normal;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.editorial-site .nav-links.editorial-menu {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    place-content: center;
    gap: clamp(1rem, 2vw, 1.6rem);
    width: 100%;
    padding: 7rem 2rem 3rem;
    background: rgba(238, 236, 229, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
}

body.editorial-site .nav-links.editorial-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

body.editorial-site .nav-links.editorial-menu a {
    color: var(--ink);
    font-family: var(--heading);
    font-size: clamp(2.5rem, 7vw, 5.4rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.92;
    text-align: center;
    text-transform: none;
}

body.editorial-site .nav-links.editorial-menu a::after {
    display: none;
}

body.editorial-site .canva-hero,
body.editorial-site .canva-hero-photo {
    min-height: min(790px, 74vw);
}

body.editorial-site .canva-hero-photo {
    background-image: linear-gradient(180deg, rgba(238, 236, 229, 0.08), rgba(238, 236, 229, 0.02)), var(--photo-home-01);
    background-position: center 44%;
    background-size: cover;
}

body.editorial-site .memory-section,
body.editorial-site .chat-section {
    display: grid;
    justify-items: center;
    text-align: center;
}

body.editorial-site .memory-section {
    position: relative;
    gap: clamp(1.4rem, 3vw, 2.4rem);
    padding: clamp(4rem, 8vw, 7.5rem) 1.25rem;
}

body.editorial-site .memory-section h1,
body.editorial-site .memory-section h2,
body.editorial-site .chat-section h1,
body.editorial-site .chat-section h2 {
    max-width: 950px;
    color: var(--ink);
    font-size: clamp(4rem, 10vw, 8.6rem);
    line-height: 0.82;
}

body.editorial-site .memory-section h1 span,
body.editorial-site .memory-section h2 span,
body.editorial-site .chat-section h1,
body.editorial-site .chat-section h2 {
    font-style: italic;
}

body.editorial-site .memory-section p,
body.editorial-site .chat-section p {
    max-width: 620px;
    color: var(--ink);
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.45;
}

body.editorial-site .memory-line {
    position: absolute;
    height: 3px;
    background: rgba(25, 24, 23, 0.7);
}

body.editorial-site .memory-line.top {
    top: 29%;
    right: 0;
    width: 26%;
}

body.editorial-site .memory-line.bottom {
    left: 0;
    top: 55%;
    width: 56%;
}

body.editorial-site .pill-button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.55rem;
    border: 1px solid rgba(25, 24, 23, 0.55);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

body.editorial-site .explore-section {
    position: relative;
    min-height: clamp(620px, 72vw, 860px);
    overflow: hidden;
    background: #3d3d3b;
    color: var(--paper);
}

body.editorial-site .explore-bg {
    position: absolute;
    inset: 0;
    filter: grayscale(1);
    opacity: 0.32;
    transform: scale(1.04);
}

body.editorial-site .explore-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 19, 0.36);
}

body.editorial-site .explore-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: clamp(2.4rem, 5vw, 4rem);
    padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 6vw, 5rem);
}

body.editorial-site .explore-content h2 {
    color: rgba(238, 236, 229, 0.86);
    font-size: clamp(4.4rem, 10vw, 8.6rem);
    text-transform: uppercase;
}

body.editorial-site .explore-grid,
body.editorial-site .investment-grid,
body.editorial-site .portfolio-editorial-grid,
body.editorial-site .meet-section {
    display: grid;
}

body.editorial-site .explore-grid {
    width: min(100%, 1100px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 6vw, 7rem);
}

body.editorial-site .explore-card {
    display: grid;
    gap: clamp(1.2rem, 3vw, 2rem);
    color: var(--paper);
    text-align: center;
}

body.editorial-site .explore-photo {
    min-height: clamp(260px, 28vw, 360px);
    background-size: cover;
    background-position: center;
}

body.editorial-site .explore-card span {
    color: var(--paper);
    font-family: var(--heading);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

body.editorial-site .meet-section {
    grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 0.95fr) minmax(240px, 0.8fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 4rem);
}

body.editorial-site .meet-heading p,
body.editorial-site .script-kicker {
    color: var(--ink);
    font-family: var(--heading);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-style: italic;
    line-height: 1;
}

body.editorial-site .meet-heading h1,
body.editorial-site .meet-heading h2 {
    color: var(--ink);
    font-size: clamp(3.4rem, 7vw, 7rem);
    text-transform: uppercase;
}

body.editorial-site .meet-photo {
    min-height: clamp(320px, 36vw, 460px);
    background-position: center 28%;
    background-size: cover;
}

body.editorial-site .meet-copy {
    display: grid;
    gap: 1rem;
}

body.editorial-site .meet-copy p {
    max-width: 360px;
    color: var(--ink);
    line-height: 1.45;
}

body.editorial-site .duo-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.editorial-site .duo-photo {
    min-height: clamp(440px, 48vw, 780px);
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
}

body.editorial-site .chat-section {
    gap: clamp(1.2rem, 3vw, 2.2rem);
    padding: clamp(4.5rem, 9vw, 8rem) 1.25rem;
}

body.editorial-site .chat-section h1,
body.editorial-site .chat-section h2 {
    font-size: clamp(5rem, 12vw, 10rem);
}

body.editorial-site .filmstrip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.editorial-site .strip-photo {
    min-height: clamp(110px, 13vw, 190px);
    background-size: cover;
    background-position: center;
}

body.editorial-site .strip-photo:nth-child(1),
body.editorial-site .strip-photo:nth-child(5) {
    filter: grayscale(1);
}

body.editorial-site .editorial-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
    padding: 2rem clamp(1.25rem, 5vw, 4rem);
    background: #373634;
    color: var(--paper);
    font-family: var(--heading);
    font-size: clamp(1rem, 2vw, 1.45rem);
    text-transform: uppercase;
}

body.editorial-site .editorial-page-hero {
    min-height: clamp(540px, 62vw, 760px);
    display: grid;
    align-content: end;
    gap: 1rem;
    padding: 8rem clamp(1.25rem, 6vw, 5rem) clamp(3rem, 7vw, 5rem);
    background-image: linear-gradient(180deg, rgba(25, 24, 23, 0.02), rgba(25, 24, 23, 0.36)), var(--editorial-hero-photo, none);
    background-size: cover;
    background-position: center;
    color: var(--paper);
}

body.editorial-site .editorial-page-hero.photo-home-02 {
    --editorial-hero-photo: var(--photo-home-02);
}

body.editorial-site .editorial-page-hero.photo-services-hero {
    --editorial-hero-photo: var(--photo-services-hero);
}

body.editorial-site .editorial-page-hero p,
body.editorial-site .editorial-page-hero h1 {
    color: var(--paper);
}

/* Center specific memory paragraph line */
body.editorial-site .memory-section p.centered {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
    width: min(100%, 620px);
}

body.editorial-site .editorial-page-hero h1 {
    max-width: 950px;
    font-size: clamp(4rem, 9vw, 8rem);
}

body.editorial-site .portfolio-editorial-grid,
body.editorial-site .investment-section,
body.editorial-site .other-investments,
body.editorial-site .editorial-form-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 5rem);
}

body.editorial-site .portfolio-editorial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
}

body.editorial-site .portfolio-editorial-photo {
    min-height: clamp(340px, 38vw, 560px);
    background-size: cover;
    background-position: center;
}

body.editorial-site .portfolio-editorial-grid h2,
body.editorial-site .package-intro h2,
body.editorial-site .other-investments h2 {
    color: var(--ink);
    font-size: clamp(2.5rem, 6vw, 6.8rem);
}

body.editorial-site .investment-section {
    display: grid;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-top: clamp(4.5rem, 7.5vw, 6rem);
    padding-bottom: 1.5rem;
}

body.editorial-site .investment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

body.editorial-site .investment-grid article {
    min-height: 360px;
    display: grid;
    align-content: space-between;
    gap: 1.2rem;
    padding: clamp(1.3rem, 3vw, 2.4rem);
    background: var(--paper);
}

body.editorial-site .investment-grid h3,
body.editorial-site .investment-grid strong {
    color: var(--ink);
    font-family: var(--heading);
}

body.editorial-site .investment-grid h3 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

body.editorial-site .investment-grid strong {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
}

body.editorial-site .investment-grid strong .price-prefix {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--ink);
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
}

body.editorial-site .other-investments {
    display: grid;
    justify-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    border-top: 1px solid var(--line);
    text-align: center;
}

body.editorial-site .other-investments-intro {
    display: grid;
    justify-items: center;
    gap: 0.6rem;
}

body.editorial-site .session-investment-grid {
    width: min(100%, 1100px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    text-align: left;
}

body.editorial-site .session-investment-grid article {
    min-height: clamp(280px, 28vw, 380px);
    display: grid;
    align-content: space-between;
    gap: 1.25rem;
    padding: clamp(1.35rem, 3vw, 2.5rem);
    background: var(--paper);
}

body.editorial-site .session-investment-grid p {
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

body.editorial-site .session-investment-grid h3 {
    color: var(--ink);
    font-size: clamp(2.1rem, 4.6vw, 4rem);
}

body.editorial-site .session-investment-grid strong {
    color: var(--ink);
    font-family: var(--heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
}

body.editorial-site .session-investment-grid strong .price-prefix {
    display: block;
    margin-bottom: 0.45rem;
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.editorial-site .editorial-form-section {
    max-width: 920px;
    margin: 0 auto;
}



body.editorial-site .form-grid {
    background: transparent;
}

body.editorial-site .field input,
body.editorial-site .field select,
body.editorial-site .field textarea {
    border: 1px solid rgba(25, 24, 23, 0.3);
    background: rgba(255, 255, 255, 0.28);
}

body.editorial-site .text-art-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    line-height: 0;
}

body.editorial-site .text-art-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

body.editorial-site .memory-art {
    max-width: min(100%, 980px);
    margin-bottom: clamp(0.7rem, 2vw, 1.4rem);
}

body.editorial-site .amy-art {
    justify-content: flex-start;
    max-width: min(100%, 430px);
}

body.editorial-site .chat-art {
    max-width: min(100%, 700px);
    margin-bottom: clamp(0.6rem, 2vw, 1rem);
}

body.editorial-site .memory-section h1 {
    max-width: min(100%, 980px);
    display: grid;
    justify-items: center;
    color: var(--ink);
    font-family: var(--heading);
    font-size: clamp(4rem, 9.5vw, 8rem);
    font-style: normal;
    font-weight: 700;
    line-height: 0.78;
}

body.editorial-site .memory-section h1 span {
    display: block;
    margin-right: clamp(1rem, 14vw, 8rem);
    font-family: "Great Vibes", cursive;
    font-size: clamp(4.6rem, 11vw, 9.8rem);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.86;
}

body.editorial-site .memory-line.top {
    top: 34%;
    right: 0;
    width: clamp(140px, 24vw, 380px);
}

body.editorial-site .memory-line.bottom {
    left: 0;
    top: 52%;
    width: clamp(260px, 48vw, 650px);
}

body.editorial-site .about-page {
    padding-top: clamp(9rem, 15vw, 13rem);
}

@media (max-width: 900px) {
    body.editorial-site .site-header.editorial-header {
        height: 92px;
        padding: 1.1rem 1rem;
    }

    body.editorial-site .canva-hero,
    body.editorial-site .canva-hero-photo {
        min-height: 72vh;
    }

    body.editorial-site .memory-line {
        display: none;
    }

    body.editorial-site .explore-grid,
    body.editorial-site .meet-section,
    body.editorial-site .portfolio-editorial-grid,
    body.editorial-site .investment-grid,
    body.editorial-site .session-investment-grid {
        grid-template-columns: 1fr;
    }

    body.editorial-site .duo-strip {
        grid-template-columns: 1fr;
    }

    body.editorial-site .filmstrip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.editorial-site .editorial-brand span:first-child {
        max-width: 230px;
        font-size: 2.65rem;
    }

    body.editorial-site .memory-section h1,
    body.editorial-site .memory-section h2,
    body.editorial-site .chat-section h1,
    body.editorial-site .chat-section h2 {
        font-size: 4.6rem;
    }

    body.editorial-site .memory-section h1 span {
        margin-right: 0;
        font-size: 4.8rem;
    }

    body.editorial-site .amy-art {
        max-width: 330px;
    }

    body.editorial-site .chat-art {
        max-width: 340px;
    }
}

/* Keep package cards three-across on desktop/tablet widths. */
@media (min-width: 761px) {
    body.editorial-site .investment-grid,
    body.editorial-site .session-investment-grid,
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .price-card {
        gap: 1.2rem;
        padding: clamp(1.1rem, 2vw, 1.75rem);
    }

    .price-card h3 {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }

    .price {
        font-size: clamp(2rem, 4vw, 3.4rem);
    }

    .detail-list {
        gap: 0.75rem;
        font-size: clamp(0.92rem, 1.6vw, 1.05rem);
    }
}

body.editorial-site .memory-section .text-art-wrap,
body.editorial-site .meet-heading .text-art-wrap,
body.editorial-site .chat-section .text-art-wrap {
    display: flex;
    width: 100%;
    margin-inline: auto;
    line-height: 0;
    color: transparent;
}

body.editorial-site .memory-section .text-art-wrap img,
body.editorial-site .meet-heading .text-art-wrap img,
body.editorial-site .chat-section .text-art-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

body.editorial-site .memory-section .memory-art {
    max-width: min(100%, 980px);
}

body.editorial-site .meet-heading .amy-art {
    max-width: min(100%, 430px);
    justify-content: flex-start;
}

body.editorial-site .chat-section .chat-art {
    max-width: min(100%, 700px);
}

@media (max-width: 560px) {
    body.editorial-site .meet-heading .amy-art {
        max-width: 330px;
    }

    body.editorial-site .chat-section .chat-art {
        max-width: 340px;
    }
}

/* Editorial redesign inspired by the Canva direction */
.editorial-site {
    --paper: #eeece5;
    --ink: #191817;
    --muted: #45423e;
    --line: rgba(25, 24, 23, 0.28);
    background: var(--paper);
    color: var(--ink);
}

.editorial-site .photo-home-01,
.editorial-site .photo-home-02,
.editorial-site .photo-home-03,
.editorial-site .photo-services-hero,
.editorial-site .photo-about-portrait,
.editorial-site .photo-about-working,
.editorial-site .photo-portfolio-01,
.editorial-site .photo-portfolio-02,
.editorial-site .photo-portfolio-03,
.editorial-site .photo-portfolio-04,
.editorial-site .photo-portfolio-05,
.editorial-site .photo-portfolio-06 {
    background-size: cover;
    background-position: center;
}

.editorial-site .photo-home-01 { background-image: var(--photo-home-01); }
.editorial-site .photo-home-02 { background-image: var(--photo-home-02); }
.editorial-site .photo-home-03 { background-image: var(--photo-home-03); }
.editorial-site .photo-services-hero { background-image: var(--photo-services-hero); }
.editorial-site .photo-about-portrait { background-image: var(--photo-about-portrait); }
.editorial-site .photo-about-working { background-image: var(--photo-about-working); }
.editorial-site .photo-portfolio-01 { background-image: var(--photo-portfolio-01); }
.editorial-site .photo-portfolio-02 { background-image: var(--photo-portfolio-02); }
.editorial-site .photo-portfolio-03 { background-image: var(--photo-portfolio-03); }
.editorial-site .photo-portfolio-04 { background-image: var(--photo-portfolio-04); }
.editorial-site .photo-portfolio-05 { background-image: var(--photo-portfolio-05); }
.editorial-site .photo-portfolio-06 { background-image: var(--photo-portfolio-06); }

.editorial-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: 108px;
    padding: 1.35rem clamp(1.2rem, 5vw, 4rem);
    border: 0;
    background: linear-gradient(180deg, rgba(238, 236, 229, 0.52), rgba(238, 236, 229, 0));
    backdrop-filter: none;
}

.editorial-brand {
    gap: 0.25rem;
    color: #111;
}

.editorial-brand span:first-child {
    font-family: var(--heading);
    font-size: clamp(2.4rem, 6vw, 5.8rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.01em;
}

.editorial-brand span:last-child {
    padding-left: 0.4rem;
    font-size: clamp(0.62rem, 1.15vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
}

.editorial-menu-toggle {
    position: fixed;
    top: clamp(0.75rem, 2vw, 1.25rem);
    right: clamp(0.75rem, 2vw, 1.45rem);
    z-index: 120;
    width: clamp(58px, 7vw, 82px);
    height: clamp(58px, 7vw, 82px);
    display: grid;
    place-items: center;
    border: 1px solid rgba(25, 24, 23, 0.6);
    border-radius: 999px;
    background: rgba(238, 236, 229, 0.36);
    color: var(--ink);
}

.editorial-menu-toggle span,
.editorial-menu-toggle span::before,
.editorial-menu-toggle span::after {
    width: 23px;
    background: var(--ink);
}

.editorial-menu-toggle em {
    margin-top: 1.15rem;
    font-size: 0.58rem;
    font-style: normal;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.editorial-menu {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    place-content: center;
    gap: clamp(1rem, 2vw, 1.6rem);
    padding: 7rem 2rem 3rem;
    background: rgba(238, 236, 229, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.editorial-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.editorial-menu a {
    color: var(--ink);
    font-family: var(--heading);
    font-size: clamp(2.5rem, 7vw, 5.4rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.92;
    text-align: center;
    text-transform: none;
}

.editorial-menu a::after {
    display: none;
}

.canva-hero {
    min-height: min(790px, 74vw);
    background: var(--paper);
}

.canva-hero-photo {
    min-height: min(790px, 74vw);
    background-image: linear-gradient(180deg, rgba(238, 236, 229, 0.08), rgba(238, 236, 229, 0.02)), var(--photo-home-01);
    background-position: center 44%;
    background-size: cover;
}

.memory-section {
    position: relative;
    display: grid;
    justify-items: center;
    gap: clamp(1.4rem, 3vw, 2.4rem);
    padding: clamp(4rem, 8vw, 7.5rem) 1.25rem;
    text-align: center;
}

.memory-section h1,
.memory-section h2 {
    max-width: 950px;
    font-size: clamp(4rem, 10vw, 8.6rem);
    line-height: 0.82;
}

.memory-section h1 span,
.memory-section h2 span,
.chat-section h1,
.chat-section h2 {
    font-style: italic;
}

.memory-section h1 span,
.memory-section h2 span {
    display: block;
    font-weight: 400;
}

.memory-section p,
.chat-section p {
    max-width: 620px;
    color: var(--ink);
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.45;
}

.memory-line {
    position: absolute;
    height: 3px;
    background: rgba(25, 24, 23, 0.7);
}

.memory-line.top {
    top: 29%;
    right: 0;
    width: 26%;
}

.memory-line.bottom {
    left: 0;
    top: 55%;
    width: 56%;
}

.pill-button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.55rem;
    border: 1px solid rgba(25, 24, 23, 0.55);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.pill-button:hover {
    background-color: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

.explore-section {
    position: relative;
    min-height: clamp(620px, 72vw, 860px);
    overflow: hidden;
    background: #3d3d3b;
    color: var(--paper);
}

.explore-bg {
    position: absolute;
    inset: 0;
    filter: grayscale(1);
    opacity: 0.32;
    transform: scale(1.04);
}

.explore-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 19, 0.36);
}

.explore-content {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: clamp(2.4rem, 5vw, 4rem);
    padding: clamp(4rem, 7vw, 6rem) clamp(1rem, 6vw, 5rem);
}

.explore-content h2 {
    color: rgba(238, 236, 229, 0.86);
    font-size: clamp(4.4rem, 10vw, 8.6rem);
    text-transform: uppercase;
}

.explore-grid {
    width: min(100%, 1100px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 6vw, 7rem);
    align-items: start;
}

.explore-card {
    display: grid;
    gap: clamp(1.2rem, 3vw, 2rem);
    color: var(--paper);
    text-align: center;
}

.explore-photo {
    min-height: clamp(260px, 28vw, 360px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.explore-card span {
    font-family: var(--heading);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.meet-section {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 0.95fr) minmax(240px, 0.8fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 4rem);
}

.meet-heading p,
.script-kicker {
    font-family: var(--heading);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-style: italic;
    line-height: 1;
}

.meet-heading h1,
.meet-heading h2 {
    font-size: clamp(3.4rem, 7vw, 7rem);
    text-transform: uppercase;
}

.meet-photo {
    min-height: clamp(320px, 36vw, 460px);
    background-position: center 28%;
}

.meet-copy {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.meet-copy p {
    max-width: 360px;
    color: var(--ink);
    line-height: 1.45;
}

.meet-copy .pill-button {
    justify-self: start;
    margin-top: 1rem;
}

.duo-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.duo-photo {
    min-height: clamp(440px, 48vw, 780px);
    filter: grayscale(1);
}

.chat-section {
    display: grid;
    justify-items: center;
    gap: clamp(1.2rem, 3vw, 2.2rem);
    padding: clamp(4.5rem, 9vw, 8rem) 1.25rem;
    text-align: center;
}

.chat-section h1,
.chat-section h2 {
    font-size: clamp(5rem, 12vw, 10rem);
    line-height: 0.85;
}

.filmstrip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    min-height: clamp(110px, 13vw, 190px);
}

.strip-photo {
    min-height: clamp(110px, 13vw, 190px);
}

.strip-photo:nth-child(1),
.strip-photo:nth-child(5) {
    filter: grayscale(1);
}

.editorial-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
    padding: 2rem clamp(1.25rem, 5vw, 4rem);
    background: #373634;
    color: var(--paper);
    font-family: var(--heading);
    font-size: clamp(1rem, 2vw, 1.45rem);
    text-transform: uppercase;
}

.editorial-page-hero {
    min-height: clamp(540px, 62vw, 760px);
    display: grid;
    align-content: end;
    gap: 1rem;
    padding: 8rem clamp(1.25rem, 6vw, 5rem) clamp(3rem, 7vw, 5rem);
    background-image: linear-gradient(180deg, rgba(25, 24, 23, 0.02), rgba(25, 24, 23, 0.36)), var(--editorial-hero-photo, none);
    background-size: cover;
    background-position: center;
    color: var(--paper);
}

.editorial-page-hero.photo-home-02 {
    --editorial-hero-photo: var(--photo-home-02);
}

.editorial-page-hero.photo-services-hero {
    --editorial-hero-photo: var(--photo-services-hero);
}

.editorial-page-hero p {
    color: var(--paper);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.editorial-page-hero h1 {
    max-width: 950px;
    color: var(--paper);
    font-size: clamp(4rem, 9vw, 8rem);
}

.portfolio-editorial-grid,
.investment-section,
.other-investments,
.editorial-form-section {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 5rem);
}

.portfolio-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 4vw, 3rem);
}

.portfolio-editorial-grid article {
    display: grid;
    gap: 1rem;
}

.portfolio-editorial-photo {
    min-height: clamp(340px, 38vw, 560px);
}

.portfolio-editorial-grid h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

.investment-section {
    display: grid;
    gap: clamp(2rem, 5vw, 4rem);
}

.package-intro {
    max-width: 800px;
}

.package-intro h2,
.other-investments h2 {
    font-size: clamp(3rem, 7vw, 6.8rem);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.investment-grid article {
    min-height: 360px;
    display: grid;
    align-content: space-between;
    gap: 1.2rem;
    padding: clamp(1.3rem, 3vw, 2.4rem);
    background: var(--paper);
}

.investment-grid p {
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.investment-grid h3 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.investment-grid strong {
    font-family: var(--heading);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
}

.investment-grid span,
.other-investments p {
    color: var(--ink);
}

.other-investments {
    display: grid;
    justify-items: center;
    gap: 2rem;
    border-top: 1px solid var(--line);
    text-align: center;
}

.other-investments div {
    display: grid;
    gap: 0.7rem;
}

.editorial-form-section {
    max-width: 920px;
    margin: 0 auto;
}

/* Editorial form styling for Option 2 */
.editorial-site .editorial-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.8rem);
    background: transparent;
    padding-bottom: clamp(4rem, 8vw, 6rem);
    position: relative;
    z-index: 2;
}

.editorial-site .editorial-form-grid .field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.editorial-site .editorial-form-grid .field.full-width {
    grid-column: span 2;
}

.editorial-site .editorial-form-grid .field label {
    font-family: var(--body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.editorial-site .editorial-form-grid .field label .required-star {
    color: var(--clay);
    margin-left: 2px;
    font-weight: bold;
}

.editorial-site .editorial-form-grid .field input,
.editorial-site .editorial-form-grid .field select,
.editorial-site .editorial-form-grid .field textarea {
    font-family: var(--body);
    font-size: 1rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(25, 24, 23, 0.25);
    background: rgba(255, 255, 255, 0.4);
    color: var(--ink);
    border-radius: 4px;
    transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
    width: 100%;
}

.editorial-site .editorial-form-grid .field input:focus,
.editorial-site .editorial-form-grid .field select:focus,
.editorial-site .editorial-form-grid .field textarea:focus {
    outline: none;
    border-color: var(--ink);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 2px rgba(25, 24, 23, 0.05);
}

.editorial-site .editorial-form-grid .field textarea {
    min-height: 180px;
    resize: vertical;
}

.editorial-site .editorial-form-grid .form-submit-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    grid-column: span 2;
}

.editorial-site .editorial-form-grid .form-submit-container .pill-button {
    padding: 1rem 3.5rem;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.editorial-site .editorial-form-grid .form-submit-container .pill-button:hover {
    background: var(--ink);
    color: var(--paper);
}

@media (max-width: 768px) {
    .editorial-site .editorial-form-grid {
        grid-template-columns: 1fr;
    }
    .editorial-site .editorial-form-grid .field.full-width {
        grid-column: span 1;
    }
}

/* Redirect Success Modal Styling */
.editorial-site .success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(25, 24, 23, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 400ms ease;
}

.editorial-site .success-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.editorial-site .success-modal {
    background: var(--paper);
    padding: clamp(2rem, 5vw, 3.5rem);
    max-width: 520px;
    width: 90%;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(25, 24, 23, 0.08);
    box-shadow: 0 20px 50px rgba(25, 24, 23, 0.15);
    transform: scale(0.92) translateY(20px);
    transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-site .success-overlay.show .success-modal {
    transform: scale(1) translateY(0);
}

.editorial-site .modal-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 500;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.editorial-site .modal-text {
    font-family: var(--body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(25, 24, 23, 0.85);
    margin-bottom: 2.2rem;
}

.editorial-site .modal-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.editorial-site .modal-primary-btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--ink);
    color: var(--paper);
    border: 1px solid var(--ink);
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    text-decoration: none;
    transition: all 250ms ease;
    box-shadow: 0 4px 15px rgba(25, 24, 23, 0.1);
}

.editorial-site .modal-primary-btn:hover {
    background: transparent;
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 24, 23, 0.15);
}

.editorial-site .modal-close-btn {
    background: transparent;
    border: none;
    color: rgba(25, 24, 23, 0.55);
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: color 200ms ease;
}

.editorial-site .modal-close-btn:hover {
    color: var(--ink);
}

/* Inquire Parallax Background Wrapper & Container */
.editorial-site .inquire-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/photos/inquire-bg-rainbow.jpg?v=030132"); /* Updated background photo to 0301 (32) */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%; /* Balanced vertical framing for the couple and horizon */
    z-index: -1;
    pointer-events: none;
}

@media (min-width: 901px) {
    .editorial-site .inquire-bg-wrapper {
        background-image: url("assets/photos/inquire-bg-rainbow.jpg?v=030132"); /* Updated background photo to 0301 (32) */
        background-position: center 30%; /* Balanced vertical framing for the couple and horizon */
        height: 100%;
        will-change: background-position-y;
    }
}

.editorial-site .inquire-bg-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(25, 24, 23, 0.14); /* Soft transparent overlay to darken slightly for legibility */
    z-index: 1;
}

.editorial-site .inquire-parallax-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: clamp(8rem, 14vw, 11rem) 1.5rem clamp(4rem, 8vw, 6rem);
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

/* Inquire Centered Page Layout */
.editorial-site .inquire-split-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    max-width: 780px;
    width: 100%;
    z-index: 2;
    margin: 0 auto;
}

/* Form Card Tile with Frosted Glassmorphism (Apple Glass/Notification Style) */
.editorial-site .form-card-tile {
    position: relative;
    width: 100%;
    max-width: 780px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(35px); /* Deep, ultra-premium frosted blur */
    -webkit-backdrop-filter: blur(35px);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4.5vw, 3.5rem);
    border-radius: 24px; /* Ultra-smooth Apple-like corner squircle styling */
    box-shadow: 
        0 30px 60px rgba(25, 24, 23, 0.07),                /* Gentle elevation shadow */
        inset 0 1px 2px rgba(255, 255, 255, 0.35),          /* Bright top glare reflection edge */
        inset 0 -1px 1px rgba(255, 255, 255, 0.12);         /* Soft bottom outline */
    border: 1px solid rgba(255, 255, 255, 0.22); /* Sharp glass boundary border */
}

.editorial-site .inquire-header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    max-width: 580px;
}

.editorial-site .inquire-header-content .chat-art {
    max-width: min(100%, 540px); /* Made a tiny bit bigger */
    width: 100%;
    margin-bottom: -0.8rem; /* Pull subtitle closer by countering graphic loop padding */
    opacity: 0;
    transform: scale(0.55) translateY(40px);
    animation: elasticPopUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.1s;
}

.editorial-site .inquire-subtitle {
    font-family: var(--body);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.6;
    color: var(--ink);
    margin: 0;
    max-width: 580px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.4s;
}

@keyframes elasticPopUp {
    0% {
        opacity: 0;
        transform: scale(0.55) translateY(40px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.editorial-site .form-grid {
    background: transparent;
}

.editorial-site .field input,
.editorial-site .field select,
.editorial-site .field textarea {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12); /* Clean glass field transparency */
    backdrop-filter: blur(12px); /* Apple glass pane layering effect */
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px; /* Slightly rounder to harmonize with card corner radius */
    box-shadow: 
        inset 0 1px 2px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15); /* Soft inner outline */
    color: var(--ink);
}

.editorial-site .field input:focus,
.editorial-site .field select:focus,
.editorial-site .field textarea:focus {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(25, 24, 23, 0.5); /* Apple dark stroke focus */
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.35),
        inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.about-page {
    padding-top: clamp(9rem, 15vw, 13rem);
}

.small-memory {
    padding-top: clamp(3rem, 7vw, 5rem);
}

@media (max-width: 900px) {
    .editorial-header {
        height: 92px;
        padding: 1.1rem 1rem;
    }

    .canva-hero,
    .canva-hero-photo {
        min-height: 72vh;
    }

    .memory-line {
        display: none;
    }

    .explore-grid,
    .meet-section,
    .portfolio-editorial-grid,
    .investment-grid {
        grid-template-columns: 1fr;
    }

    .explore-photo,
    .portfolio-editorial-photo {
        min-height: 390px;
    }

    .duo-strip {
        grid-template-columns: 1fr;
    }

    .duo-photo {
        min-height: 420px;
    }

    .filmstrip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .editorial-brand span:first-child {
        max-width: 230px;
        font-size: 2.65rem;
    }

    .editorial-brand span:last-child {
        font-size: 0.62rem;
    }

    .memory-section h1,
    .memory-section h2,
    .chat-section h1,
    .chat-section h2 {
        font-size: 4.2rem;
    }

    .explore-content h2 {
        font-size: 4.3rem;
    }

    .meet-section {
        padding-inline: 1rem;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(37, 36, 33, 0.025) 1px, transparent 1px) 0 0 / 74px 74px,
        var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.1rem clamp(1.1rem, 4vw, 4rem);
    background: rgba(248, 247, 242, 0.9);
    border-bottom: 1px solid rgba(37, 36, 33, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    box-shadow: 0 12px 40px rgba(37, 36, 33, 0.07);
}

.brand {
    display: grid;
    gap: 0.1rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.1;
}

.brand span:first-child {
    font-family: var(--heading);
    font-size: clamp(1.05rem, 2.2vw, 1.55rem);
    letter-spacing: 0.18em;
}

.brand span:last-child {
    color: var(--soft);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.6vw, 2.3rem);
}

.nav-links a {
    position: relative;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.45rem;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
    position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-toggle span::before {
    top: -6px;
}

.menu-toggle span::after {
    top: 6px;
}

.menu-open .menu-toggle span {
    background: transparent;
}

.menu-open .menu-toggle span::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span::after {
    transform: translateY(-6px) rotate(-45deg);
}

.page {
    padding-top: 86px;
}

.container {
    width: min(var(--container), calc(100vw - 2rem));
    margin: 0 auto;
}

.section {
    padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section.compact {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.section.spacious {
    padding: clamp(5.5rem, 10vw, 10rem) 0;
}

.eyebrow {
    color: var(--clay);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: var(--heading);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
}

h1 {
    max-width: 900px;
    font-size: clamp(4rem, 9vw, 8.7rem);
}

h2 {
    font-size: clamp(2.6rem, 6vw, 5.6rem);
}

h3 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

p {
    color: var(--muted);
}

.lead {
    color: var(--ink);
    font-family: var(--heading);
    font-size: clamp(1.45rem, 2.8vw, 2.25rem);
    line-height: 1.25;
}

.body-large {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(1.03rem, 1.5vw, 1.18rem);
}

.hero {
    min-height: calc(100vh - 86px);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    align-items: stretch;
    border-bottom: 1px solid var(--line);
}

.photo-hero {
    position: relative;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 5.5rem);
    border-bottom: 1px solid var(--line);
    background-image:
        linear-gradient(180deg, rgba(37, 36, 33, 0.04), rgba(37, 36, 33, 0.34)),
        var(--hero-photo, none),
        linear-gradient(135deg, rgba(37, 36, 33, 0.78), rgba(95, 107, 85, 0.62)),
        repeating-linear-gradient(45deg, rgba(248, 247, 242, 0.08) 0 1px, transparent 1px 18px);
    background-size: cover, cover, cover, auto;
    background-position: center;
}

.photo-services-hero {
    --hero-photo: var(--photo-services-hero);
}

.photo-hero.compact-hero {
    min-height: min(760px, calc(88vh - 40px));
}

.photo-hero::before {
    content: "";
    position: absolute;
    inset: clamp(1rem, 2.4vw, 2rem);
    border: 1px solid rgba(248, 247, 242, 0.32);
    pointer-events: none;
}

.photo-hero::after {
    content: attr(data-label);
    position: absolute;
    right: clamp(3rem, 8vw, 8rem);
    top: 48%;
    transform: translateY(-50%);
    width: min(80%, 340px);
    color: rgba(248, 247, 242, 0.74);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    pointer-events: none;
}

.photo-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    max-width: 980px;
    gap: 1.45rem;
    text-shadow: 0 18px 44px rgba(37, 36, 33, 0.45);
}

.photo-hero .eyebrow {
    color: var(--mist);
}

.photo-hero h1,
.photo-hero .lead {
    color: var(--paper);
}

.photo-hero .lead {
    max-width: 620px;
}

.photo-carousel {
    position: relative;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 5.5rem);
    border-bottom: 1px solid var(--line);
    background: var(--ink);
}

.photo-carousel::before {
    content: "";
    position: absolute;
    inset: clamp(1rem, 2.4vw, 2rem);
    z-index: 2;
    border: 1px solid rgba(248, 247, 242, 0.32);
    pointer-events: none;
}

.carousel-radio {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    opacity: 0;
    pointer-events: none;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image:
        linear-gradient(180deg, rgba(37, 36, 33, 0.02), rgba(37, 36, 33, 0.34)),
        var(--slide-photo, none),
        linear-gradient(135deg, rgba(37, 36, 33, 0.82), rgba(95, 107, 85, 0.58)),
        repeating-linear-gradient(45deg, rgba(248, 247, 242, 0.08) 0 1px, transparent 1px 18px);
    background-size: cover, cover, cover, auto;
    background-position: center, center 44%, center, center;
    transition: opacity 420ms ease;
}

.carousel-slide.slide-1 {
    --slide-photo: var(--photo-home-01);
}

.carousel-slide.slide-2 {
    --slide-photo: var(--photo-home-02);
    background-image:
        linear-gradient(180deg, rgba(37, 36, 33, 0.04), rgba(37, 36, 33, 0.42)),
        var(--slide-photo, none),
        linear-gradient(135deg, rgba(95, 107, 85, 0.76), rgba(138, 78, 66, 0.54)),
        repeating-linear-gradient(45deg, rgba(248, 247, 242, 0.08) 0 1px, transparent 1px 18px);
    background-position: center, center 46%, center, center;
}

.carousel-slide.slide-3 {
    --slide-photo: var(--photo-home-03);
    background-image:
        linear-gradient(180deg, rgba(37, 36, 33, 0.04), rgba(37, 36, 33, 0.36)),
        var(--slide-photo, none),
        linear-gradient(135deg, rgba(138, 78, 66, 0.62), rgba(216, 223, 220, 0.52)),
        repeating-linear-gradient(45deg, rgba(248, 247, 242, 0.08) 0 1px, transparent 1px 18px);
    background-position: center, center 42%, center, center;
}

#home-slide-1:checked ~ .slide-1,
#home-slide-2:checked ~ .slide-2,
#home-slide-3:checked ~ .slide-3 {
    opacity: 1;
}

.carousel-slide::after {
    content: attr(data-label);
    position: absolute;
    right: clamp(3rem, 8vw, 8rem);
    top: 48%;
    width: min(80%, 340px);
    color: rgba(248, 247, 242, 0.74);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
}

.photo-carousel .photo-hero-content {
    position: relative;
    z-index: 3;
}

.photo-carousel .eyebrow {
    color: var(--mist);
}

.photo-carousel h1,
.photo-carousel .lead {
    color: var(--paper);
}

.carousel-control {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: clamp(44px, 5vw, 62px);
    height: clamp(44px, 5vw, 62px);
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(248, 247, 242, 0.52);
    border-radius: 999px;
    background: rgba(248, 247, 242, 0.1);
    color: var(--paper);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
    transition: background 180ms ease, transform 180ms ease;
}

#home-slide-1:checked ~ .control-for-1,
#home-slide-2:checked ~ .control-for-2,
#home-slide-3:checked ~ .control-for-3 {
    display: inline-flex;
}

.carousel-control:hover {
    background: rgba(248, 247, 242, 0.2);
    transform: translateY(-50%) scale(1.04);
}

.carousel-control span {
    display: block;
    font-family: var(--heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.8;
    transform: translateY(-2px);
}

.carousel-control.previous {
    left: clamp(1rem, 3vw, 2.5rem);
}

.carousel-control.next {
    right: clamp(1rem, 3vw, 2.5rem);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.7rem;
    padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 6vw, 6rem);
}

.hero-copy .lead {
    max-width: 610px;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.hero-aside {
    min-height: 560px;
    padding: clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: stretch;
}

.photo-slot {
    position: relative;
    min-height: 260px;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(37, 36, 33, 0.18);
    border-radius: var(--radius);
    background-image:
        linear-gradient(180deg, rgba(248, 247, 242, 0.02), rgba(248, 247, 242, 0.08)),
        var(--slot-photo, none),
        linear-gradient(135deg, rgba(216, 223, 220, 0.72), rgba(238, 231, 222, 0.82)),
        repeating-linear-gradient(45deg, rgba(37, 36, 33, 0.06) 0 1px, transparent 1px 18px);
    background-size: cover, cover, cover, auto;
    background-position: center;
}

.photo-slot::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(37, 36, 33, 0.22);
}

.photo-slot::after {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(80%, 260px);
    color: rgba(37, 36, 33, 0.7);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
}

.photo-slot:not([data-label])::after,
.photo-hero:not([data-label])::after,
.carousel-slide:not([data-label])::after {
    display: none;
}

.photo-slot.tall {
    min-height: 650px;
}

.photo-slot.wide {
    min-height: 420px;
}

.photo-slot.small {
    min-height: 210px;
}

.photo-slot.dark {
    background-image:
        linear-gradient(180deg, rgba(37, 36, 33, 0.05), rgba(37, 36, 33, 0.18)),
        var(--slot-photo, none),
        linear-gradient(135deg, rgba(37, 36, 33, 0.78), rgba(95, 107, 85, 0.62)),
        repeating-linear-gradient(45deg, rgba(248, 247, 242, 0.08) 0 1px, transparent 1px 18px);
}

.photo-about-portrait {
    --slot-photo: var(--photo-about-portrait);
}

.photo-about-working {
    --slot-photo: var(--photo-about-working);
}

.photo-portfolio-01 {
    --slot-photo: var(--photo-portfolio-01);
}

.photo-portfolio-02 {
    --slot-photo: var(--photo-portfolio-02);
}

.photo-portfolio-03 {
    --slot-photo: var(--photo-portfolio-03);
}

.photo-portfolio-04 {
    --slot-photo: var(--photo-portfolio-04);
}

.photo-portfolio-05 {
    --slot-photo: var(--photo-portfolio-05);
}

.photo-portfolio-06 {
    --slot-photo: var(--photo-portfolio-06);
}

.photo-slot.dark::before {
    border-color: rgba(248, 247, 242, 0.3);
}

.photo-slot.dark::after {
    color: rgba(248, 247, 242, 0.82);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0.82rem 1.35rem;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.secondary {
    background: transparent;
    color: var(--ink);
}

.button.secondary:hover {
    background: var(--ink);
    color: var(--paper);
}

.button.light {
    border-color: rgba(248, 247, 242, 0.75);
    background: var(--paper);
    color: var(--ink);
}

.button.secondary.light {
    background: transparent;
    color: var(--paper);
}

.button.secondary.light:hover {
    background: var(--paper);
    color: var(--ink);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.split.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.stack {
    display: grid;
    gap: 1.25rem;
}

.stack.wide {
    gap: 2rem;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.simple-intro {
    max-width: 760px;
    display: grid;
    gap: 1.1rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.centered-cta {
    min-height: 42vh;
    display: grid;
    place-items: center;
    gap: 1.5rem;
    text-align: center;
}

.centered-cta h2 {
    max-width: 860px;
}

.minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.minimal-card {
    min-height: clamp(220px, 28vw, 360px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(248, 247, 242, 0.62);
}

.minimal-card span {
    color: var(--clay);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.minimal-card h3 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.service-grid,
.pricing-grid,
.values-grid,
.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.service-card,
.price-card,
.value-card,
.journal-card,
.testimonial,
.info-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(248, 247, 242, 0.78);
}

.service-card,
.value-card,
.journal-card {
    display: grid;
    gap: 1rem;
    padding: clamp(1.35rem, 3vw, 2rem);
}

.service-card .photo-slot,
.journal-card .photo-slot {
    margin: -0.35rem -0.35rem 0;
}

.service-card h3,
.price-card h3,
.value-card h3,
.journal-card h3 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.meta {
    color: var(--clay);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.price-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.75rem;
    padding: clamp(1.45rem, 3vw, 2.2rem);
}

.price-card .button {
    margin-top: auto;
}

.price {
    font-family: var(--heading);
    font-size: clamp(2.3rem, 4.5vw, 4rem);
    line-height: 1;
}

.price span {
    color: var(--soft);
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.detail-list {
    display: grid;
    gap: 0.65rem;
    color: var(--muted);
    list-style: none;
}

.detail-list li {
    position: relative;
    padding-left: 1.05rem;
}

.detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--clay);
}

.band {
    background: var(--ink);
    color: var(--paper);
}

.band p,
.band .body-large {
    color: rgba(248, 247, 242, 0.72);
}

.band .eyebrow {
    color: var(--mist);
}

.band h2,
.band h3,
.band .lead {
    color: var(--paper);
}

.process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(248, 247, 242, 0.2);
    border-left: 1px solid rgba(248, 247, 242, 0.2);
}

.process-step {
    min-height: 240px;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-right: 1px solid rgba(248, 247, 242, 0.2);
    border-bottom: 1px solid rgba(248, 247, 242, 0.2);
}

.process-step span {
    color: var(--mist);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.process-step h3 {
    margin: 1.8rem 0 1rem;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.portfolio-item {
    display: grid;
    gap: 0.85rem;
}

.portfolio-item:nth-child(2),
.portfolio-item:nth-child(5),
.portfolio-item:nth-child(8) {
    margin-top: 3rem;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2rem;
}

.filter-btn {
    min-height: 42px;
    padding: 0.65rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
}

.portfolio-item.is-hidden {
    display: none;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
}

.testimonial blockquote {
    color: var(--ink);
    font-family: var(--heading);
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1.25;
}

.testimonial cite {
    display: block;
    margin-top: 1.5rem;
    color: var(--clay);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.62fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: end;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.page-hero h1 {
    font-size: clamp(4rem, 8vw, 8rem);
}

.page-hero.slim-hero {
    padding-top: clamp(5rem, 9vw, 8rem);
    padding-bottom: clamp(2rem, 5vw, 4rem);
}

.page-hero.slim-hero h1 {
    max-width: 980px;
}

.form-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.form-shell.simple-form-shell {
    grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
}

.form-grid {
    display: grid;
    gap: 1rem;
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(248, 247, 242, 0.85);
}

.field {
    display: grid;
    gap: 0.4rem;
}

.field label {
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.48);
    color: var(--ink);
    padding: 0.85rem 0.9rem;
    outline: none;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--clay);
    box-shadow: 0 0 0 3px rgba(138, 78, 66, 0.1);
}

.form-note {
    color: var(--soft);
    font-size: 0.9rem;
}

.info-panel {
    display: grid;
    gap: 1rem;
    padding: clamp(1.35rem, 3vw, 2rem);
}

.info-panel.slim-panel {
    padding: 0;
    border: 0;
    background: transparent;
}

.process-strip {
    min-height: 38vh;
    display: grid;
    align-content: center;
    gap: 1rem;
}

.process-strip h2 {
    max-width: 1080px;
}

.faq {
    display: grid;
    gap: 1rem;
}

.faq details {
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.faq summary {
    cursor: pointer;
    color: var(--ink);
    font-family: var(--heading);
    font-size: 1.55rem;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.site-footer {
    display: grid;
    gap: 2.5rem;
    padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 4rem);
    border-top: 1px solid var(--line);
    background: var(--paper-warm);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
    gap: 2rem;
    align-items: start;
}

.footer-brand {
    font-family: var(--heading);
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.4rem;
    justify-content: flex-end;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--soft);
    font-size: 0.85rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.photo-carousel.reveal,
.photo-hero.reveal {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .hero,
    .split,
    .split.reverse,
    .section-head,
    .page-hero,
    .form-shell,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 0;
    }

    .hero-aside {
        min-height: 420px;
    }

    .photo-slot.tall {
        min-height: 460px;
    }

    .service-grid,
    .pricing-grid,
    .values-grid,
    .journal-grid,
    .portfolio-grid,
    .minimal-grid,
    .process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 0.85rem 1rem;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(86vw, 380px);
        height: 100vh;
        padding: 6rem 2rem 2rem;
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
        background: var(--paper);
        border-left: 1px solid var(--line);
        box-shadow: -20px 0 60px rgba(37, 36, 33, 0.1);
        transform: translateX(105%);
        transition: transform 220ms ease;
    }

    .nav-links.is-open {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .page {
        padding-top: 73px;
    }

    .hero-copy {
        padding: 3.2rem 1rem 2rem;
    }

    .hero-aside {
        padding: 0 1rem 1rem;
        min-height: 360px;
    }

    .service-grid,
    .pricing-grid,
    .values-grid,
    .journal-grid,
    .portfolio-grid,
    .minimal-grid,
    .process {
        grid-template-columns: 1fr;
    }

    .photo-carousel {
        min-height: calc(88vh - 73px);
        padding: 1rem;
        align-items: flex-end;
    }

    .photo-carousel .photo-hero-content {
        padding: 0 0 4rem 0;
    }

    .carousel-slide::after {
        display: none;
    }

    .carousel-control {
        top: auto;
        bottom: 1rem;
        transform: none;
    }

    .carousel-control:hover {
        transform: scale(1.04);
    }

    .carousel-control.previous {
        left: 1rem;
    }

    .carousel-control.next {
        right: 1rem;
    }

    .minimal-card {
        min-height: 210px;
    }

    .form-shell.simple-form-shell {
        grid-template-columns: 1fr;
    }

    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(5),
    .portfolio-item:nth-child(8) {
        margin-top: 0;
    }

    .photo-slot.tall,
    .photo-slot.wide {
        min-height: 360px;
    }

    .photo-hero::after {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Final text-image sizing for Canva typography exports. */
body.editorial-site .memory-section .memory-art {
    max-width: min(100%, 1040px);
    margin-block: clamp(0.75rem, 2vw, 1.5rem);
}

body.editorial-site .meet-heading .amy-art {
    max-width: min(100%, 500px);
    justify-content: flex-start;
}

body.editorial-site .chat-section .chat-art {
    max-width: min(100%, 720px);
}

@media (min-width: 761px) {
    body.editorial-site .meet-section {
        grid-template-columns: minmax(300px, 0.9fr) minmax(260px, 0.95fr) minmax(260px, 0.9fr);
    }
}

@media (max-width: 560px) {
    body.editorial-site .memory-section .memory-art {
        max-width: min(100%, 680px);
    }

    body.editorial-site .meet-heading .amy-art {
        max-width: 330px;
    }

    body.editorial-site .chat-section .chat-art {
        max-width: 340px;
    }
}

/* Home menu button: text-only, no circle. */
body.editorial-site .menu-toggle.editorial-menu-toggle {
    width: 54px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.editorial-site .menu-toggle.editorial-menu-toggle em {
    margin-top: 1.25rem;
    font-size: 0.58rem;
    font-style: normal;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Final home photo mapping from the Canva reference. */
body.editorial-site .canva-hero-photo {
    background-image: linear-gradient(90deg, rgba(239, 237, 229, 0.1), rgba(239, 237, 229, 0.02)), url("cover photo.jpg");
    background-position: center center;
}

body.editorial-site .explore-bg {
    background-image: url("assets/photos/home-explore-bg.jpg");
    background-position: center center;
}

body.editorial-site .explore-card:nth-child(1) .explore-photo {
    background-image: url("assets/photos/home-explore-weddings.jpg");
    background-position: center center;
}

body.editorial-site .explore-card:nth-child(2) .explore-photo {
    background-image: url("assets/photos/home-explore-couples.jpg");
    background-position: center center;
}

body.editorial-site .explore-card:nth-child(3) .explore-photo {
    background-image: url("assets/photos/home-explore-portraits.jpg");
    background-position: center center;
}

body.editorial-site .meet-photo {
    background-image: url("assets/photos/home-amy.jpg");
    background-position: center center;
}

body.editorial-site .duo-strip .duo-photo:nth-child(1) {
    background-image: url("assets/photos/home-duo-left.jpg");
    background-position: center center;
}

body.editorial-site .duo-strip .duo-photo:nth-child(2) {
    background-image: url("assets/photos/home-duo-right.jpg");
    background-position: center center;
}

body.editorial-site .filmstrip .strip-photo:nth-child(1) {
    background-image: url("assets/photos/home-strip-01.jpg");
    background-position: center center;
}

body.editorial-site .filmstrip .strip-photo:nth-child(2) {
    background-image: url("assets/photos/home-strip-02.jpg");
    background-position: center center;
}

body.editorial-site .filmstrip .strip-photo:nth-child(3) {
    background-image: url("assets/photos/home-strip-03.jpg");
    background-position: center center;
}

body.editorial-site .filmstrip .strip-photo:nth-child(4) {
    background-image: url("assets/photos/home-strip-04.jpg");
    background-position: center center;
}

body.editorial-site .filmstrip .strip-photo:nth-child(5) {
    background-image: url("assets/photos/home-strip-05.jpg");
    background-position: center center;
}

body.editorial-site .filmstrip .strip-photo:nth-child(6) {
    background-image: url("assets/photos/home-strip-06.jpg");
    background-position: center center;
}

/* Final home brand lockup: large black Canva-style title. */
body.editorial-site .site-header.editorial-header .editorial-brand {
    display: grid;
    gap: 0;
    color: #111;
    letter-spacing: 0;
    line-height: 0.82;
    text-transform: uppercase;
}

body.editorial-site .site-header.editorial-header .editorial-brand span:first-child {
    color: #111;
    font-family: var(--heading);
    font-size: clamp(3.1rem, 7.4vw, 6.2rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 0.82;
}

/* Home header should sit on the hero, not follow the page while scrolling. */
body.editorial-site .site-header.editorial-header {
    position: absolute;
}

body.editorial-site .site-header.editorial-header .menu-toggle.editorial-menu-toggle {
    position: absolute;
    top: clamp(0.75rem, 2vw, 1.25rem);
    right: clamp(0.75rem, 2vw, 1.45rem);
}

/* Keep the Amy intro copy from clipping on medium desktop widths. */
body.editorial-site .meet-section {
    grid-template-columns: minmax(190px, 0.85fr) minmax(220px, 0.9fr) minmax(220px, 0.8fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-inline: clamp(1.25rem, 4vw, 3rem);
    overflow: visible;
}

body.editorial-site .meet-copy,
body.editorial-site .meet-copy p {
    min-width: 0;
}

body.editorial-site .meet-copy p {
    max-width: 420px;
}

/* Shared wedding package inclusions below the pricing cards. */
body.editorial-site .package-includes {
    display: grid;
    gap: clamp(1.2rem, 2vw, 1.8rem);
    margin-top: clamp(1.4rem, 3vw, 2.5rem);
    padding: clamp(1.6rem, 3vw, 2.5rem);
    border: 1px solid var(--line);
}

body.editorial-site .package-includes h3 {
    color: var(--ink);
    font-family: var(--heading);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 400;
    line-height: 0.95;
}

body.editorial-site .package-includes ul {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.editorial-site .package-includes li {
    color: var(--ink);
    font-size: clamp(0.9rem, 1.25vw, 1.05rem);
    line-height: 1.45;
}

body.editorial-site .package-includes li::before {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    margin-bottom: 0.8rem;
    background: var(--line);
}

/* Investment intro hierarchy: emphasize package label over the supporting line. */
body.editorial-site .package-intro {
    display: grid;
    gap: clamp(0.45rem, 1.2vw, 0.9rem);
    justify-content: center;
    text-align: center;
    margin: 0 auto 0;
}

body.editorial-site .package-intro .script-kicker {
    font-size: clamp(2.5rem, 5.2vw, 4.8rem);
    line-height: 0.9;
}

body.editorial-site .package-intro h2 {
    max-width: 920px;
    font-size: clamp(2.2rem, 4.2vw, 4.4rem);
    line-height: 0.98;
}

@media (max-width: 980px) {
    body.editorial-site .package-includes ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.editorial-site .package-includes ul {
        grid-template-columns: 1fr;
    }
}

/* Home scroll reveals: soft pop-in for sections and image groups. */
body.editorial-site .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
}

body.editorial-site .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

body.editorial-site .photo-reveal,
body.editorial-site .explore-card.reveal,
body.editorial-site .portfolio-canva-card.reveal {
    transform: translateY(38px) scale(0.965);
}

body.editorial-site .photo-reveal.visible,
body.editorial-site .explore-card.reveal.visible,
body.editorial-site .portfolio-canva-card.reveal.visible {
    transform: translateY(0) scale(1);
}

body.editorial-site .explore-card:nth-child(2),
body.editorial-site .duo-photo:nth-child(2),
body.editorial-site .filmstrip .strip-photo:nth-child(2),
body.editorial-site .portfolio-canva-card:nth-child(2) {
    transition-delay: 90ms;
}

body.editorial-site .explore-card:nth-child(3),
body.editorial-site .filmstrip .strip-photo:nth-child(3),
body.editorial-site .portfolio-canva-card:nth-child(3) {
    transition-delay: 180ms;
}

body.editorial-site .filmstrip .strip-photo:nth-child(4) {
    transition-delay: 270ms;
}

body.editorial-site .filmstrip .strip-photo:nth-child(5) {
    transition-delay: 360ms;
}

body.editorial-site .filmstrip .strip-photo:nth-child(6) {
    transition-delay: 450ms;
}

/* Shared gray footer with image strip, navigation, and Instagram connect link. */
body.editorial-site .editorial-footer {
    display: block;
    padding: 0;
    background: #3b3a39;
    color: #eeece5;
}

body.editorial-site .editorial-footer .filmstrip {
    width: 100%;
    min-height: clamp(120px, 13vw, 190px);
}

body.editorial-site .editorial-footer .strip-photo {
    display: block;
    min-height: clamp(120px, 13vw, 190px);
    cursor: pointer;
}

body.editorial-site .footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.7rem, 3vw, 2.4rem) clamp(1.25rem, 5vw, 4rem);
}

body.editorial-site .footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1rem, 2.8vw, 2.6rem);
}

body.editorial-site .footer-nav a,
body.editorial-site .instagram-link {
    color: #eeece5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

body.editorial-site .footer-nav a {
    opacity: 0.84;
}

body.editorial-site .footer-nav a:hover,
body.editorial-site .instagram-link:hover {
    opacity: 1;
}

body.editorial-site .instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    opacity: 0.92;
    white-space: nowrap;
}

body.editorial-site .instagram-link svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 760px) {
    body.editorial-site .editorial-footer .filmstrip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.editorial-site .footer-bar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.editorial-site .reveal,
    body.editorial-site .photo-reveal,
    body.editorial-site .explore-card.reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Canva page-one matching pass for the home page. Keeps custom menu, footer, and reveal behavior. */
body.editorial-site .site-header.editorial-header {
    height: clamp(78px, 8vw, 110px);
    padding: clamp(1.55rem, 3vw, 3.55rem) clamp(1.25rem, 5.1vw, 4.4rem);
    background: transparent;
}

body.editorial-site .site-header.editorial-header .editorial-brand span:first-child {
    font-size: clamp(2.3rem, 5.2vw, 4.8rem);
    letter-spacing: -0.02em;
}

body.editorial-site .site-header.editorial-header .menu-toggle.editorial-menu-toggle {
    top: clamp(1.35rem, 2.55vw, 2.05rem);
    right: clamp(1rem, 2.4vw, 1.8rem);
}

/* Canva slide 6 portfolio match. */
body.editorial-site .portfolio-canva-hero {
    height: clamp(540px, 58vw, 780px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center 42%;
    color: #f4f0e8;
    filter: grayscale(1);
    margin: 0 auto 0;
}

body.editorial-site .package-intro .script-kicker {
    font-size: clamp(2.5rem, 5.2vw, 4.8rem);
    line-height: 0.9;
}

body.editorial-site .package-intro h2 {
    max-width: 920px;
    font-size: clamp(2.2rem, 4.2vw, 4.4rem);
    line-height: 0.98;
}

@media (max-width: 980px) {
    body.editorial-site .package-includes ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.editorial-site .package-includes ul {
        grid-template-columns: 1fr;
    }
}

/* Home scroll reveals: soft pop-in for sections and image groups. */
body.editorial-site .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
}

body.editorial-site .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

body.editorial-site .photo-reveal,
body.editorial-site .explore-card.reveal,
body.editorial-site .portfolio-canva-card.reveal {
    transform: translateY(38px) scale(0.965);
}

body.editorial-site .photo-reveal.visible,
body.editorial-site .explore-card.reveal.visible,
body.editorial-site .portfolio-canva-card.reveal.visible {
    transform: translateY(0) scale(1);
}

body.editorial-site .explore-card:nth-child(2),
body.editorial-site .duo-photo:nth-child(2),
body.editorial-site .filmstrip .strip-photo:nth-child(2),
body.editorial-site .portfolio-canva-card:nth-child(2) {
    transition-delay: 90ms;
}

body.editorial-site .explore-card:nth-child(3),
body.editorial-site .filmstrip .strip-photo:nth-child(3),
body.editorial-site .portfolio-canva-card:nth-child(3) {
    transition-delay: 180ms;
}

body.editorial-site .filmstrip .strip-photo:nth-child(4) {
    transition-delay: 270ms;
}

body.editorial-site .filmstrip .strip-photo:nth-child(5) {
    transition-delay: 360ms;
}

body.editorial-site .filmstrip .strip-photo:nth-child(6) {
    transition-delay: 450ms;
}

/* Shared gray footer with image strip, navigation, and Instagram connect link. */
body.editorial-site .editorial-footer {
    display: block;
    padding: 0;
    background: #3b3a39;
    color: #eeece5;
}

body.editorial-site .editorial-footer .filmstrip {
    width: 100%;
    min-height: clamp(120px, 13vw, 190px);
}

body.editorial-site .editorial-footer .strip-photo {
    display: block;
    min-height: clamp(120px, 13vw, 190px);
    cursor: pointer;
}

body.editorial-site .footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.7rem, 3vw, 2.4rem) clamp(1.25rem, 5vw, 4rem);
}

body.editorial-site .footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(1rem, 2.8vw, 2.6rem);
}

body.editorial-site .footer-nav a,
body.editorial-site .instagram-link {
    color: #eeece5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

body.editorial-site .footer-nav a {
    opacity: 0.84;
}

body.editorial-site .footer-nav a:hover,
body.editorial-site .instagram-link:hover {
    opacity: 1;
}

body.editorial-site .instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    opacity: 0.92;
    white-space: nowrap;
}

body.editorial-site .instagram-link svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 760px) {
    body.editorial-site .editorial-footer .filmstrip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.editorial-site .footer-bar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.editorial-site .reveal,
    body.editorial-site .photo-reveal,
    body.editorial-site .explore-card.reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Canva page-one matching pass for the home page. Keeps custom menu, footer, and reveal behavior. */
body.editorial-site .site-header.editorial-header {
    height: clamp(78px, 8vw, 110px);
    padding: clamp(1.55rem, 3vw, 3.55rem) clamp(1.25rem, 5.1vw, 4.4rem);
    background: transparent;
}

body.editorial-site .site-header.editorial-header .editorial-brand span:first-child {
    font-size: clamp(2.3rem, 5.2vw, 4.8rem);
    letter-spacing: -0.02em;
}

body.editorial-site .site-header.editorial-header .menu-toggle.editorial-menu-toggle {
    top: clamp(1.35rem, 2.55vw, 2.05rem);
    right: clamp(1rem, 2.4vw, 1.8rem);
}

/* Canva slide 6 portfolio match. */
body.editorial-site .portfolio-canva-hero {
    height: clamp(540px, 58vw, 780px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center 42%;
    color: #f4f0e8;
    filter: grayscale(1);
    isolation: isolate;
    position: relative;
}

body.editorial-site .portfolio-canva-hero.photo-portfolio-01 {
    background-image: url("assets/photos/portfolio-hero-0726-265.jpg");
    background-position: center 24%;
    filter: none;
}

body.editorial-site .portfolio-canva-hero.investment-hero-banner {
    background-image: url("assets/photos/investment-hero-1024.jpg");
    background-position: center 35%;
    filter: none;
}

body.editorial-site .portfolio-canva-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 19, 0.02), rgba(20, 20, 19, 0.15));
    z-index: -1;
}

body.editorial-site .portfolio-canva-hero h1 {
    margin: 0;
    color: #f4f0e8;
    font-family: var(--heading);
    font-size: clamp(4rem, 7.2vw, 7.3rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.editorial-site .portfolio-canva-section {
    padding: clamp(4.6rem, 7vw, 6.6rem) clamp(2rem, 7vw, 6rem) clamp(5rem, 8vw, 7.2rem);
    background: #eeece5;
}

body.editorial-site .portfolio-canva-intro {
    max-width: 980px;
    margin: 0 auto clamp(5rem, 8vw, 7.6rem);
    color: var(--muted);
    font-family: var(--heading);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 300;
    line-height: 1.45;
    text-align: center;
}

body.editorial-site .portfolio-canva-intro .cute-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    color: var(--clay);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: none;
    font-weight: 400;
    letter-spacing: normal;
}

body.editorial-site .portfolio-canva-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: clamp(4rem, 8.2vw, 8.4rem);
    max-width: 1180px;
    margin: 0 auto;
}

body.editorial-site .portfolio-canva-grid article {
    display: grid;
    justify-items: center;
    gap: clamp(2.2rem, 4.2vw, 3.6rem);
}

body.editorial-site .portfolio-canva-photo {
    width: 100%;
    max-width: 310px;
    aspect-ratio: 0.77;
    background-color: #ddd8cf;
    background-size: cover;
    background-position: center 50%;
    will-change: background-position-y;
}

body.editorial-site .portfolio-canva-photo.photo-home-explore-weddings {
    background-image: url("assets/photos/home-explore-weddings.jpg");
}

body.editorial-site .portfolio-canva-photo.photo-home-explore-couples {
    background-image: url("assets/photos/home-explore-couples.jpg");
}

body.editorial-site .portfolio-canva-photo.photo-home-explore-portraits {
    background-image: url("assets/photos/home-explore-portraits.jpg");
}

body.editorial-site .portfolio-canva-grid h2 {
    margin: 0;
    color: #45433f;
    font-family: var(--body);
    font-size: clamp(1.65rem, 2.55vw, 2.35rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

body.editorial-site .portfolio-canva-actions {
    display: flex;
    justify-content: center;
    gap: clamp(1.8rem, 3.2vw, 3rem);
    margin-top: clamp(3.4rem, 5.2vw, 4.6rem);
}

/* portfolio-canva-button styles removed, using unified pill-button instead */

@media (max-width: 860px) {
    body.editorial-site .portfolio-canva-grid {
        grid-template-columns: 1fr;
        gap: 3.8rem;
        max-width: 390px;
    }

    body.editorial-site .portfolio-canva-intro {
        text-align: left;
    }
}

@media (max-width: 560px) {
    body.editorial-site .portfolio-canva-hero {
        min-height: 390px;
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }

    body.editorial-site .portfolio-canva-section {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }

    body.editorial-site .portfolio-canva-actions {
        flex-direction: column;
        align-items: center;
    }
}

body.editorial-site .canva-hero,
body.editorial-site .canva-hero-photo {
    min-height: clamp(520px, 58.6vw, 805px);
}

body.editorial-site .canva-hero-photo {
    background-position: center center;
}

body.editorial-site .memory-section {
    gap: clamp(1.1rem, 1.9vw, 1.8rem);
    padding: clamp(4.3rem, 7.2vw, 6.2rem) clamp(1rem, 5vw, 4rem) clamp(3.7rem, 6vw, 5.4rem);
}

body.editorial-site .memory-section .memory-art {
    width: min(100%, 930px);
    max-width: 930px;
    margin: 0 auto clamp(0.2rem, 1vw, 0.6rem);
}

body.editorial-site .memory-section p,
body.editorial-site .chat-section p,
body.editorial-site .meet-copy p {
    color: #222;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.76rem, 0.93vw, 0.95rem);
    line-height: 1.34;
}

body.editorial-site .memory-section p {
    max-width: 640px;
}

body.editorial-site .pill-button {
    min-height: 32px;
    padding: 0.5rem 1.35rem;
    border-color: rgba(25, 24, 23, 0.48);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.64rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

body.editorial-site .pill-button:hover {
    background-color: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

body.editorial-site .explore-section {
    min-height: clamp(650px, 70vw, 965px);
}

body.editorial-site .explore-bg {
    opacity: 0.42;
    background-position: center 70%;
    transform: scale(1.02);
}

body.editorial-site .explore-section::after {
    background: rgba(20, 20, 19, 0.28);
}

body.editorial-site .explore-content {
    gap: clamp(2.1rem, 4.2vw, 3.8rem);
    padding: clamp(4rem, 6.1vw, 5.4rem) clamp(2rem, 7vw, 6.2rem);
}

body.editorial-site .explore-content h2 {
    font-family: var(--heading);
    font-size: clamp(4.1rem, 8vw, 7.4rem);
    font-weight: 400;
    letter-spacing: 0.04em;
}

body.editorial-site .explore-grid {
    width: min(100%, 1180px);
    gap: clamp(3rem, 8vw, 8.2rem);
}

body.editorial-site .explore-photo {
    min-height: clamp(260px, 28vw, 390px);
    aspect-ratio: 0.75;
}

body.editorial-site .explore-card {
    gap: clamp(1.4rem, 2vw, 2rem);
}

body.editorial-site .explore-card span {
    font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

body.editorial-site .meet-section {
    min-height: clamp(530px, 56vw, 760px);
    grid-template-columns: minmax(250px, 0.86fr) minmax(260px, 0.96fr) minmax(230px, 0.74fr);
    gap: clamp(2rem, 5vw, 5.4rem);
    padding: clamp(4.8rem, 7.4vw, 6.5rem) clamp(2rem, 4.6vw, 4rem);
}

body.editorial-site .meet-heading .amy-art {
    width: min(100%, 470px);
    max-width: 470px;
}

body.editorial-site .meet-photo {
    min-height: clamp(320px, 33vw, 410px);
}

body.editorial-site .meet-copy {
    gap: 1rem;
}

body.editorial-site .meet-copy p {
    max-width: 275px;
}

body.editorial-site .duo-strip {
    min-height: clamp(480px, 52vw, 790px);
}

body.editorial-site .duo-photo {
    min-height: clamp(480px, 52vw, 790px);
}

body.editorial-site .chat-section {
    gap: clamp(1.2rem, 2.3vw, 2rem);
    padding: clamp(4.7rem, 7.4vw, 6.8rem) clamp(1.25rem, 5vw, 4rem);
}

body.editorial-site .chat-section .chat-art {
    width: min(100%, 720px);
    max-width: 720px;
}

body.editorial-site .chat-section p {
    max-width: 720px;
    text-align: center;
}

/* Canva memory copy placement: offset left under the title art. */
body.editorial-site .memory-section {
    justify-items: stretch;
}

body.editorial-site .memory-section p {
    justify-self: start;
    width: min(640px, 62vw);
    margin-left: clamp(1.5rem, 20vw, 18rem);
    text-align: left;
}

body.editorial-site .memory-section > .pill-button {
    justify-self: start;
    margin-left: clamp(8rem, 45vw, 37rem);
}

/* Canva Amy portrait crop: smaller, portrait-shaped center image. */
body.editorial-site .meet-section {
    grid-template-columns: minmax(250px, 0.92fr) minmax(220px, 0.62fr) minmax(230px, 0.72fr);
}

body.editorial-site .meet-photo {
    justify-self: center;
    width: min(100%, 360px);
    min-height: 0;
    aspect-ratio: 0.88;
    background-size: 145%;
    background-position: center 58%;
}

/* Tighten the home Let's Chat section. */
body.editorial-site .chat-section {
    gap: clamp(0.8rem, 1.6vw, 1.4rem);
    padding: clamp(3.2rem, 5vw, 4.5rem) clamp(1.25rem, 5vw, 4rem);
}

body.editorial-site .chat-section .chat-art {
    width: min(100%, 560px);
    max-width: 560px;
}

body.editorial-site .chat-section p {
    max-width: 680px;
}

/* Use the full Amy photo with no crop, border, or zoom. */
body.editorial-site .meet-photo {
    width: min(100%, 360px);
    aspect-ratio: 0.856;
    min-height: 0;
    background-image: url("assets/photos/home-amy-full.jpg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
}

@media (max-width: 760px) {
    body.editorial-site .canva-hero,
    body.editorial-site .canva-hero-photo {
        min-height: 64vh;
    }

    body.editorial-site .meet-section {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    body.editorial-site .meet-copy p {
        max-width: 520px;
    }

    body.editorial-site .memory-section {
        justify-items: center;
    }

    body.editorial-site .memory-section p,
    body.editorial-site .memory-section > .pill-button {
        justify-self: center;
        margin-left: 0;
        text-align: center;
    }
}

/* ==========================================================================
   Antigravity Updates: Portfolio Hover & Subpages, Lightbox, About, Pricing
   ========================================================================== */

/* Portfolio Category Hover Effects */
body.editorial-site .portfolio-canva-card {
    text-decoration: none;
    color: inherit;
    display: grid;
    justify-items: center;
    gap: clamp(1.2rem, 2.5vw, 2.2rem);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

body.editorial-site .portfolio-canva-card:hover {
    transform: translateY(-8px);
}

body.editorial-site .portfolio-canva-card .portfolio-canva-photo {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    border-radius: var(--radius);
}

body.editorial-site .portfolio-canva-card:hover .portfolio-canva-photo {
    transform: scale(1.03);
    filter: brightness(0.95);
}

/* Portfolio Subpage Gallery Layout */
.gallery-header-section {
    padding: clamp(6rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem) 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-header-section .breadcrumb {
    font-family: var(--body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--soft);
    margin-bottom: 1.5rem;
}

.gallery-header-section .breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.gallery-header-section .breadcrumb a:hover {
    color: var(--ink);
}

.gallery-header-section h1 {
    font-family: var(--heading);
    font-size: clamp(3.2rem, 6.5vw, 6rem);
    font-weight: 400;
    margin: 0 0 1.2rem;
    text-transform: uppercase;
    line-height: 1;
}

.gallery-intro-desc {
    font-family: var(--heading);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-style: italic;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.gallery-grid-section {
    padding: 2rem clamp(1.5rem, 5vw, 4rem) 6rem;
    max-width: var(--container);
    margin: 0 auto;
}

/* CSS Masonry Gallery Grid */
.gallery-grid {
    column-count: 3;
    column-gap: 30px;
    margin-bottom: 4.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 30px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--paper-warm);
    border-radius: var(--radius);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(25, 24, 23, 0.08);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid var(--line);
    padding-top: 3rem;
}

.gallery-actions .text-link {
    font-family: var(--body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s;
}

.gallery-actions .text-link:hover {
    color: var(--ink);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(20, 19, 18, 0.97);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.lightbox-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.96);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.is-active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #eeeece;
    font-size: 2.2rem;
    font-weight: 200;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1010;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #eeeece;
    font-size: 2.5rem;
    font-weight: 200;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s, transform 0.3s;
    padding: 20px;
    z-index: 1010;
    height: 100%;
    display: grid;
    place-items: center;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-prev:hover, .lightbox-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

/* Simple About Me Styling */
.simple-about-section {
    max-width: 820px;
    margin: clamp(7rem, 11vw, 9rem) auto 4rem;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
    text-align: center;
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.about-image-wrapper {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 0.76;
    box-shadow: 0 10px 30px rgba(25, 24, 23, 0.05);
}

.about-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.1);
    display: block;
}

.about-greeting-art {
    max-width: min(100%, 460px);
    width: 100%;
    margin: 0.5rem auto 1.8rem;
}

.about-greeting-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 680px;
    margin: 0 auto;
    text-align: left;
}

.about-paragraphs p {
    font-family: var(--body);
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.about-cta-section {
    text-align: center;
    padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 5vw, 2.5rem);
    background-color: var(--paper-warm);
    margin-top: 5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    justify-items: center;
    gap: 1rem;
}

.about-cta-section h2 {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 400;
    margin: 0;
}

.about-cta-section p {
    font-family: var(--body);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--muted);
    margin: 0 0 1.5rem;
}

/* Pricing Page (Investment) Redo */
.hover-instruction-text {
    font-family: var(--body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--soft);
    margin-top: 0.5rem;
}

.pricing-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: var(--container);
    margin: 0.5rem auto 1.2rem;
}

.package-card {
    position: relative;
    height: 500px;
    background: var(--paper-warm);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.package-card:hover, .package-card:focus-within, .package-card.show-details {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--soft);
}

.package-card-header {
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.package-card:hover .package-card-header,
.package-card.show-details .package-card-header {
    transform: translateY(-20px);
    opacity: 0.15;
}

.package-number {
    font-family: var(--body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--soft);
    margin-bottom: 1.2rem;
}

.package-card-header h3 {
    font-family: var(--heading);
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 0.8rem;
}

.package-kicker {
    font-family: var(--body);
    font-size: 0.95rem;
    color: var(--muted);
    margin: 0 0 1.8rem;
}

.package-price {
    font-family: var(--heading);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--ink);
}

.hover-indicator {
    margin-top: 2.2rem;
    font-family: var(--body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--soft);
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
}

.package-card-details {
    position: absolute;
    inset: 0;
    background: var(--paper);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.package-card:hover .package-card-details,
.package-card.show-details .package-card-details {
    transform: translateY(0);
}

.package-card-details h4 {
    font-family: var(--heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin: 0 0 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.75rem;
}

.package-card-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.package-card-details li {
    font-family: var(--body);
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.45;
    position: relative;
    padding-left: 1.25rem;
}

.package-card-details li::before {
    content: "";
    position: absolute;
    left: 0.05rem;
    top: 0.62em;
    width: 0.42rem;
    height: 0.42rem;
    border: 1px solid var(--soft);
    border-radius: 50%;
    transform: translateY(-50%);
}

.package-addons-note {
    text-align: center;
    max-width: 720px;
    margin: 1.2rem auto 1.2rem;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
    display: grid;
    justify-items: center;
    gap: 1rem;
}

.package-addons-note p {
    font-family: var(--body);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

/* A La Carte Section */
body.editorial-site .package-intro h2 {
    font-family: var(--heading);
    font-size: clamp(2.8rem, 5.2vw, 4.4rem);
    font-weight: 400;
    text-align: center !important;
    margin: 0 auto !important;
    justify-self: center !important;
}

/* Parallax Image Divider on Investment Page */
.investment-parallax-divider {
    height: clamp(280px, 35vw, 480px);
    width: 100%;
    background-image: url("assets/photos/portfolio-hero-bouquet.jpg");
    background-position: center 50%;
    background-repeat: no-repeat;
    background-size: 115% auto;
    margin: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    will-change: background-position-y;
}

.alacarte-section {
    background-color: var(--paper-warm);
    padding: clamp(3.5rem, 5vw, 4.5rem) clamp(1.25rem, 5vw, 2.5rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* Graphic image labels on investment page */
body.editorial-site .wedding-packages-label-art {
    max-width: min(100%, 480px) !important;
    width: 100% !important;
    margin: 0.5rem auto 0 !important;
    text-align: center !important;
    display: block !important;
}

body.editorial-site .alacarte-label-art {
    max-width: min(100%, 340px) !important;
    width: 100% !important;
    margin: 0.5rem auto 0 !important;
    text-align: center !important;
    display: block !important;
}

body.editorial-site .investment-label-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

.alacarte-section .section-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}

.alacarte-section .section-intro h2 {
    font-family: var(--heading);
    font-size: clamp(2.8rem, 5.2vw, 4.4rem);
    font-weight: 400;
    margin: 0;
}

.alacarte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: var(--container);
    margin: 0 auto 3.5rem;
}

.alacarte-actions {
    text-align: center;
    margin-top: 1rem;
}

/* Responsive Overrides for New Styles */
@media (max-width: 960px) {
    .pricing-packages-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .package-card {
        height: 440px;
    }

    .alacarte-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 860px) {
    .gallery-grid {
        column-count: 2;
        column-gap: 20px;
    }
    .gallery-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 560px) {
    .gallery-grid {
        column-count: 1;
        column-gap: 0;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
    }
    
    .lightbox-prev, .lightbox-next {
        font-size: 2rem;
        padding: 10px;
    }
    
    .simple-about-section {
        margin-top: 6rem;
    }
}

@media (max-width: 760px) {
    .editorial-site .form-card-tile .editorial-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .editorial-site .form-card-tile .editorial-form-grid .field,
    .editorial-site .form-card-tile .editorial-form-grid .field.full-width,
    .editorial-site .form-card-tile .editorial-form-grid .form-submit-container {
        grid-column: 1 / -1;
        min-width: 0;
        width: 100%;
    }
}
