/* =========================================
   DESIGN SYSTEM
========================================= */

:root {
    --color-ink: #1f1c19;
    --color-text: #4a4641;
    --color-muted: #756f68;
    --color-cream: #f8f4ee;
    --color-stone: #eee7dc;
    --color-white: #ffffff;
    --color-black: #111111;

    --section-padding: 140px 8%;
    --section-padding-small: 90px 6%;

    --max-text: 760px;
    --max-wide: 1180px;

    --shadow-soft: 0 24px 70px rgba(31, 28, 25, 0.14);
    --shadow-card: 0 18px 50px rgba(31, 28, 25, 0.12);

    --transition: 0.35s ease;
}

/* =========================================
   GUIDANCE PLACEHOLDER
========================================= */

.guidance-placeholder {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 113px);
    display: grid;
    place-items: center;
    padding: 150px 8%;
    overflow: hidden;
    text-align: center;
    background-color: var(--color-cream);
    background-image: var(--paper-texture);
    background-size: var(--paper-texture-size);
}

.guidance-placeholder-copy {
    position: relative;
    z-index: 2;
    width: min(100%, 780px);
}

.guidance-placeholder-copy h1 {
    margin-bottom: 30px;
    font-size: clamp(3.6rem, 8vw, 7.6rem);
    line-height: 0.94;
    text-wrap: balance;
}

.guidance-placeholder-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin: 0 auto;
    font-size: 18px;
}

.guidance-placeholder-copy .outline-btn {
    margin-top: 38px;
}

.guidance-placeholder-divider {
    display: block;
    width: 78px;
    height: 1px;
    margin: 0 auto 30px;
    background: rgba(31, 28, 25, 0.35);
}

.guidance-bg,
.guidance-bg-text {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.guidance-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    mix-blend-mode: multiply;
}

.guidance-bg-brand {
    width: min(48vw, 650px);
    aspect-ratio: 1;
    left: -13%;
    top: 5%;
    background-image: url("images/background_fade/Evergrain.png");
    opacity: 0.035;
    transform: rotate(-8deg);
}

.guidance-bg-flowers {
    width: min(44vw, 560px);
    aspect-ratio: 1;
    right: -9%;
    bottom: -18%;
    background-image: url("images/background_fade/EG Flowers.png");
    opacity: 0.05;
    transform: rotate(10deg);
}

.guidance-bg-photo {
    width: min(27vw, 350px);
    height: 68%;
    right: 5%;
    top: 16%;
    background-image: url("images/background_fade/_K0A0166.jpg");
    background-size: cover;
    background-position: center 34%;
    filter: grayscale(1) sepia(0.1) contrast(0.9);
    opacity: 0.075;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0 42%, transparent 76%);
    mask-image: radial-gradient(ellipse at center, #000 0 42%, transparent 76%);
}

.guidance-bg-text {
    left: 50%;
    bottom: -0.08em;
    color: rgba(31, 28, 25, 0.035);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(6rem, 18vw, 17rem);
    line-height: 0.8;
    white-space: nowrap;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .guidance-placeholder {
        min-height: 76vh;
        padding: 110px 7%;
    }

    .guidance-placeholder-copy h1 {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

    .guidance-placeholder-copy > p:not(.eyebrow) {
        font-size: 16px;
    }

    .guidance-bg-photo {
        display: none;
    }

    .guidance-bg-brand,
    .guidance-bg-flowers {
        width: 90vw;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: var(--color-ink);
    background: var(--color-cream);
}

img {
    max-width: 100%;
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-weight: 400;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
}

h2 {
    font-size: clamp(2.3rem, 4vw, 4.25rem);
    line-height: 1.05;
}

h3 {
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    line-height: 1.15;
}

p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--color-text);
}

.eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-muted);
}

.section-header {
    max-width: var(--max-text);
    margin: 0 auto 70px;
    text-align: center;
}

/* =========================================
   BUTTONS + LINKS
========================================= */

.hero-btn,
.outline-btn,
.text-link,
button {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.hero-btn,
.outline-btn,
button {
    display: inline-block;
    padding: 16px 34px;
    border: 1px solid currentColor;
    transition: var(--transition);
}

.hero-btn {
    color: white;
}

.hero-btn:hover {
    background: white;
    color: var(--color-ink);
}

.outline-btn {
    color: var(--color-ink);
}

.outline-btn:hover,
button:hover {
    background: var(--color-ink);
    color: white;
}

.text-link {
    display: inline-block;
    margin-top: 34px;
    color: var(--color-ink);
    border-bottom: 1px solid currentColor;
    padding-bottom: 7px;
}

.button-wrapper {
    text-align: center;
    margin-top: 64px;
}

/* =========================================
   NAVBAR
========================================= */

.navbar {
    width: 100%;
    padding: 24px 0;
    background: white;
    z-index: 1000;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.logo img {
    height: 60px;
    width: auto;
}

/* =========================================
   HOME HERO
========================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(rgba(0,0,0,0.26), rgba(0,0,0,0.38)),
        radial-gradient(circle at center, rgba(0,0,0,0.08), rgba(0,0,0,0.35));
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: url("images/web/site/backgroundlp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroSlideshow 32s infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1050px;
}

.hero .eyebrow {
    color: rgba(255,255,255,0.82);
}

.hero h1 {
    margin-bottom: 38px;
}

@keyframes heroSlideshow {
    0%, 16% {
        background-image: url("images/web/site/backgroundlp.jpg");
    }

    17%, 33% {
        background-image: url("images/web/site/F&B Bubble Exit.jpg");
    }

    34%, 50% {
        background-image: url("images/web/site/Higgings Coast.jpg");
    }

    51%, 67% {
        background-image: url("images/web/site/Gino Bridge.jpg");
    }

    68%, 84% {
        background-image: url("images/web/site/M&A Outside.jpg");
    }

    85%, 100% {
        background-image: url("images/web/site/F&B Bubble Exit.jpg");
    }
}

/* =========================================
   TEAM SECTION
========================================= */

.team-section {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 80px;
    padding: var(--section-padding);
    background: var(--color-cream);
}

.team-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-soft);
}

.team-text {
    max-width: 640px;
}

.team-text h2 {
    margin-bottom: 34px;
}

.team-text p:not(.eyebrow) {
    margin-bottom: 22px;
}

/* =========================================
   PURPOSE SECTION
========================================= */

.purpose-section {
    position: relative;
    padding: 180px 8%;
    background: var(--color-stone);
    overflow: hidden;
}

.purpose-image {
    width: 64%;
    max-width: 1040px;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.purpose-image img {
    width: 100%;
    height: 740px;
    object-fit: cover;
    object-position: center 82%;
    display: block;
    transform: scaleX(-1);
    box-shadow: var(--shadow-soft);
}

.purpose-text {
    position: absolute;
    top: 50%;
    left: 8%;
    z-index: 3;
    width: min(520px, 42vw);
    padding: 64px;
    transform: translateY(-50%);
    background: var(--color-cream);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-card);
}

.purpose-text h2 {
    margin-bottom: 28px;
}

.purpose-text p:not(.eyebrow) {
    margin-bottom: 22px;
}

/* =========================================
   IMAGE BREAK
========================================= */

.image-break {
    height: 92vh;
    background-image: url("images/web/site/imagebreak.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

/* =========================================
   PORTFOLIO PREVIEW
========================================= */

.portfolio-preview {
    padding: var(--section-padding);
    background: var(--color-cream);
    text-align: center;
}

.portfolio-link {
    display: block;
    max-width: var(--max-wide);
    margin: 0 auto;
    color: inherit;
    text-decoration: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

.portfolio-grid img {
    width: 100%;
    height: clamp(300px, 32vw, 380px);
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(92%);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.portfolio-grid img:nth-child(1) {
    object-position: 38% center;
}

.portfolio-grid img:nth-child(2) {
    object-position: 50% 76%;
}

.portfolio-grid img:nth-child(3) {
    object-position: 32% 55%;
}

.portfolio-grid img:nth-child(4) {
    object-position: 36% center;
}

.portfolio-grid img:nth-child(2),
.portfolio-grid img:nth-child(3) {
    margin-top: 70px;
}

.portfolio-link:hover img {
    filter: brightness(100%);
}

.portfolio-link:hover img:hover {
    transform: scale(1.025);
}

/* =========================================
   GUIDANCE SECTION
========================================= */

.guidance-section {
    padding: var(--section-padding);
    background: var(--color-white);
}

.guidance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--max-wide);
    margin: 0 auto;
}

.guidance-card {
    position: relative;
    overflow: hidden;
    height: 560px;
    color: white;
    text-decoration: none;
    background: var(--color-black);
    box-shadow: var(--shadow-card);
}

.guidance-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(78%);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.guidance-card:hover img {
    transform: scale(1.06);
    filter: brightness(92%);
}

.guidance-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.64),
        rgba(0,0,0,0.04)
    );
}

.guidance-overlay p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.78);
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.guidance-overlay h3 {
    margin-bottom: 0;
    color: white;
}

/* =========================================
   CONTACT
========================================= */

.contact {
    padding: var(--section-padding);
    background: var(--color-stone);
}

.contact-form {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form > label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-honeypot {
    display: none !important;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: 0.55;
}

.contact-form-status {
    min-height: 1.5em;
    margin-top: 18px;
    font-size: 0.92rem;
}

.contact-form-status.is-success {
    color: #35583b;
}

.contact-form-status.is-error {
    color: #8b2f2f;
}

input,
textarea {
    width: 100%;
    padding: 18px 0;
    margin-bottom: 26px;
    border: none;
    border-bottom: 1px solid rgba(31, 28, 25, 0.28);
    background: transparent;
    font: inherit;
    color: var(--color-ink);
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom-color: var(--color-ink);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    background: transparent;
    color: var(--color-ink);
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: var(--color-black);
    color: white;
    position: relative;
    z-index: 2;
}

.footer-main {
    padding: 52px 8% 32px;
    text-align: center;
}

.footer-logo img {
    height: 55px;
    width: auto;
    margin-bottom: 24px;
    filter: invert(1);
    opacity: 0.92;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-bottom: 24px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    opacity: 0.72;
    transition: opacity var(--transition);
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    color: white;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-instagram svg {
    width: 21px;
    height: 21px;
}

.footer-instagram:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
}

.footer-tagline {
    max-width: 520px;
    margin: 0 auto 18px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-copy {
    margin: 0;
    font-size: 11px;
    color: rgba(255,255,255,0.38);
}

.footer-photo-strip {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    width: 100%;
    height: clamp(220px, 18vw, 320px);
    overflow: hidden;
    margin-top: 34px;
}

.footer-photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(82%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.footer-photo-strip img:hover {
    transform: scale(1.06);
    filter: brightness(100%);
}

/* =========================================
   PORTFOLIO PAGE SUPPORT
========================================= */

.featured-gallery-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.portfolio-decor-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.portfolio-decor-section > *:not(.portfolio-bg-element):not(.portfolio-bg-text) {
    position: relative;
    z-index: 2;
}

.portfolio-bg-element,
.portfolio-bg-text {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.portfolio-bg-element {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.portfolio-bg-photo {
    background-size: cover;
    filter: grayscale(1) sepia(0.1) contrast(0.9);
    opacity: 0.105;
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0 45%, transparent 78%);
    mask-image: radial-gradient(ellipse at center, #000 0 45%, transparent 78%);
}

.portfolio-bg-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(248,244,238,0), rgba(248,244,238,0.72) 74%);
}

.portfolio-bg-brand,
.portfolio-bg-flowers {
    aspect-ratio: 1;
    mix-blend-mode: multiply;
}

.portfolio-bg-brand {
    width: min(54vw, 680px);
    background-image: url("images/background_fade/Evergrain.png");
    opacity: 0.038;
}

.portfolio-bg-flowers {
    width: min(42vw, 540px);
    background-image: url("images/background_fade/EG Flowers.png");
    opacity: 0.052;
}

.portfolio-bg-text {
    color: rgba(31, 28, 25, 0.05);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.6rem, 8vw, 8.6rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 0;
    white-space: nowrap;
}

.portfolio-featured-decor .portfolio-bg-brand {
    left: -16%;
    top: 8%;
}

.portfolio-bg-flowers-featured {
    right: -12%;
    top: -13%;
    transform: rotate(10deg);
}

.portfolio-bg-photo-featured-left {
    width: min(32vw, 430px);
    height: 54%;
    left: -8%;
    bottom: 2%;
    background-image: url("images/background_fade/_K0A2971.jpg");
    background-position: center 48%;
}

.portfolio-bg-text-featured {
    right: 8%;
    bottom: 18px;
}

.portfolio-bg-flowers-switch {
    left: -11%;
    top: 11%;
    transform: rotate(-8deg);
    opacity: 0.046;
}

.portfolio-bg-photo-switch-left {
    width: min(30vw, 390px);
    height: 52%;
    left: -8%;
    bottom: 4%;
    background-image: url("images/background_fade/_K0A3111.jpg");
    background-position: center 52%;
}

.portfolio-bg-photo-switch-right {
    width: min(32vw, 420px);
    height: 58%;
    right: -9%;
    top: 18%;
    background-image: url("images/background_fade/_K0A4710.jpg");
    background-position: center 60%;
    opacity: 0.095;
}

.portfolio-bg-text-switch {
    left: 8%;
    bottom: 20px;
    transform: rotate(-3deg);
}

.portfolio-bg-brand-favorites {
    right: -15%;
    top: 3%;
    transform: rotate(8deg);
}

.portfolio-bg-flowers-favorites {
    left: -12%;
    bottom: -18%;
    transform: rotate(-14deg);
    opacity: 0.048;
}

.portfolio-bg-photo-favorites {
    width: min(34vw, 450px);
    height: 64%;
    right: -9%;
    bottom: 10%;
    background-image: url("images/background_fade/_K0A9657.jpg");
    background-position: center 48%;
}

.portfolio-bg-text-favorites {
    left: 6%;
    top: 34px;
}

.portfolio-hero-intro {
    position: relative;
    width: 100vw;
    max-width: none;
    min-height: 420px;
    margin: -130px 0 74px calc(50% - 50vw);
    padding: 112px max(6%, calc((100vw - 1240px) / 2)) 88px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.76), rgba(0,0,0,0.38) 48%, rgba(0,0,0,0.12)),
        linear-gradient(to top, rgba(0,0,0,0.56), rgba(0,0,0,0.08) 58%),
        url("images/web/site/Higgings Coast.jpg");
    background-size: cover;
    background-position: center 44%;
    color: white;
}

.portfolio-hero-intro .eyebrow,
.portfolio-hero-intro p {
    color: rgba(255,255,255,0.86);
}

.portfolio-hero-intro h2,
.portfolio-hero-intro p {
    max-width: 720px;
}

.portfolio-divider {
    position: relative;
    padding: 54px max(6%, calc((100vw - 1240px) / 2)) 46px;
    background:
        linear-gradient(90deg, rgba(23,21,19,0.04), rgba(255,255,255,0) 30%, rgba(23,21,19,0.035)),
        var(--color-stone);
    color: var(--color-ink);
    text-align: center;
    overflow: hidden;
}

.portfolio-divider::before,
.portfolio-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: min(28vw, 360px);
    height: 1px;
    background: rgba(23,21,19,0.16);
}

.portfolio-divider::before {
    left: max(6%, calc((100vw - 1240px) / 2));
}

.portfolio-divider::after {
    right: max(6%, calc((100vw - 1240px) / 2));
}

.portfolio-divider .eyebrow {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    color: var(--color-muted);
}

.portfolio-divider h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--color-ink);
    font-size: clamp(2rem, 4vw, 4.1rem);
}

.section.best-photos-section {
    padding-top: 56px;
}

.stacked-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stacked-carousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 100%;
}

.stacked-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 420px;
    height: 560px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transform: translate(-50%, -50%) scale(0.75);
    opacity: 0;
    filter: brightness(45%);
    transition:
        transform 0.6s ease,
        opacity 0.6s ease,
        filter 0.6s ease,
        z-index 0.6s ease;
    box-shadow: var(--shadow-soft);
}

.stacked-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stacked-card-overlay {
    position: absolute;
    inset: 0;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.48),
        rgba(0,0,0,0.04)
    );
}

.stacked-card-overlay h3 {
    margin: 0 0 6px;
    font-size: 2rem;
}

.stacked-card-overlay p {
    margin: 0;
    color: rgba(255,255,255,0.86);
}

.stacked-card.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: brightness(100%);
    z-index: 5;
}

.stacked-card.prev {
    transform: translate(-115%, -50%) scale(0.82);
    opacity: 0.75;
    filter: brightness(45%);
    z-index: 3;
}

.stacked-card.next {
    transform: translate(15%, -50%) scale(0.82);
    opacity: 0.75;
    filter: brightness(45%);
    z-index: 3;
}

.stacked-card.far-next {
    transform: translate(75%, -50%) scale(0.68);
    opacity: 0.35;
    filter: brightness(35%);
    z-index: 1;
}

.stacked-card.hidden-card {
    transform: translate(-50%, -50%) scale(0.65);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.stacked-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 54px;
    height: 54px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--color-ink);
    font-size: 1.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.stacked-carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.08);
}

.portfolio-switch-section {
    padding-top: 72px;
}

.gallery-toggle {
    width: min(100%, 620px);
    margin: 16px auto 56px;
    padding: 6px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    border: 1px solid rgba(23, 21, 19, 0.16);
    background: rgba(255,255,255,0.42);
}

.gallery-toggle-btn {
    min-height: 48px;
    border: none;
    background: transparent;
    color: var(--color-muted);
    font: inherit;
    font-size: 12px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-toggle-btn.active,
.gallery-toggle-btn:hover {
    background: var(--color-ink);
    color: white;
}

.gallery-switch-panel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 320px));
    gap: 34px;
    justify-content: center;
}

.gallery-switch-panel[hidden] {
    display: none;
}

.gallery-story-card {
    background: rgba(255,255,255,0.36);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.gallery-story-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(92%);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-story-card:hover img {
    transform: scale(1.04);
    filter: brightness(100%);
}

.gallery-story-copy {
    padding: 24px;
    text-align: center;
}

.gallery-story-copy p {
    margin: 0 0 8px;
    color: var(--color-muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-story-copy h3 {
    margin: 0 0 20px;
    font-size: 1.7rem;
    color: var(--color-ink);
}

.gallery-story-copy a {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(23, 21, 19, 0.28);
    color: var(--color-ink);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.gallery-story-copy a:hover {
    background: var(--color-ink);
    color: white;
}

.stacked-carousel-btn.prev {
    left: 5%;
}

.stacked-carousel-btn.next {
    right: 5%;
}

.best-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.best-photos-grid img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.best-photos-grid img:nth-child(1) {
    object-position: 52% 62%;
}

.best-photos-grid img:nth-child(2) {
    object-position: 38% center;
}

.best-photos-grid img:nth-child(3) {
    object-position: 50% 72%;
}

.best-photos-grid img:nth-child(4) {
    object-position: 32% center;
}

.best-photos-grid img:nth-child(5) {
    object-position: 36% center;
}

.best-photos-grid img:nth-child(6) {
    object-position: 50% 86%;
}

.best-photos-grid img:hover {
    transform: scale(1.02);
}

/* =========================================
   PACKAGES PAGE
========================================= */

.packages-page {
    background: #f6f2ec;
    color: #1f1f1f;
}

/* PACKAGES HERO */

.packages-hero {
    min-height: 95vh;
    background:
        linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.65)),
        url("images/web/site/fireworks.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 0 8vw 12vh;
    color: white;
}

.packages-hero-copy {
    max-width: 850px;
}

.packages-hero-copy span {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: .75rem;
}

.packages-hero-copy h1 {
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 300;
    line-height: .95;
    margin: 24px 0;
}

.packages-hero-copy p {
    max-width: 620px;
    line-height: 1.9;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
}

/* PACKAGES INTRO */

.packages-intro {
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.packages-intro h2 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.05;
    margin: 0;
}

.packages-intro p {
    color: #555;
    line-height: 2;
    font-size: 1.08rem;
}

/* INCLUDED STRIP */

.included-strip {
    background: #111;
    color: white;
    padding: 34px 8vw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.included-strip div {
    border-left: 1px solid rgba(255,255,255,.25);
    padding-left: 20px;
}

.included-strip h3 {
    margin: 0 0 8px;
    font-weight: 400;
    font-size: 1rem;
}

.included-strip p {
    margin: 0;
    color: #cfcfcf;
    font-size: .9rem;
    line-height: 1.6;
}

/* PACKAGE IMAGE BREAK */

.package-image-break {
    min-height: 70vh;
    background:
        linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)),
        url("images/web/site/F&B Bubble Exit.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* PACKAGE CARDS */

.packages-area {
    padding: var(--section-padding);
}

.packages-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
}

.packages-section-heading span {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: .75rem;
    color: #777;
}

.packages-section-heading h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    margin: 20px 0;
}

.packages-section-heading p {
    color: #555;
    line-height: 1.9;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.package-card {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: white;
    cursor: pointer;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.38),
        rgba(0,0,0,.12)
    );
    transition: .45s ease;
}

.package-card:hover::before,
.package-card.active::before {
    background: linear-gradient(
        to top,
        rgba(0,0,0,.92),
        rgba(0,0,0,.58),
        rgba(0,0,0,.25)
    );
}

.package-number {
    position: absolute;
    top: 34px;
    left: 38px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: .72rem;
    color: rgba(255,255,255,.75);
    transition: .3s ease;
    z-index: 2;
}

.package-tag {
    position: absolute;
    top: 68px;
    left: 38px;
    border: 1px solid white;
    padding: 9px 14px;
    border-radius: 100px;
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: .3s ease;
    z-index: 2;
}

.package-card:hover .package-number,
.package-card:hover .package-tag,
.package-card.active .package-number,
.package-card.active .package-tag {
    opacity: 0;
    pointer-events: none;
}

.package-inner {
    position: absolute;
    inset: 0;
    padding: 140px 38px 38px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: .45s ease;
    z-index: 2;
}

.package-card:hover .package-inner,
.package-card.active .package-inner {
    transform: translateY(-18px);
}

.package-inner h3 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 300;
    margin: 0 0 8px;
}

.package-price {
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.package-short {
    line-height: 1.8;
    color: #eee;
    margin-bottom: 22px;
}

.package-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: .5s ease;
}

.package-card:hover .package-details,
.package-card.active .package-details {
    max-height: 620px;
    opacity: 1;
}

.package-details ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.package-details li {
    margin-bottom: 11px;
    line-height: 1.5;
    font-size: .95rem;
}

.package-details li::before {
    content: "- ";
}

/* OPTIONAL PACKAGE ADD-ONS */

.package-addons {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.package-addons .packages-section-heading {
    margin-bottom: 96px;
}

.package-addons-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.package-addon-group {
    padding: 8px 8% 0;
}

.package-addon-group:first-child {
    border-right: 1px solid rgba(31,28,25,.16);
}

.package-addon-group h3 {
    margin: 0 0 38px;
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 300;
    line-height: 1.1;
}

.package-addon-group ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.package-addon-group li {
    position: relative;
    padding: 0 0 19px 24px;
    color: var(--color-muted);
    line-height: 1.65;
}

.package-addon-group li::before {
    content: "";
    position: absolute;
    top: .78em;
    left: 0;
    width: 9px;
    height: 1px;
    background: currentColor;
}

.package-addon-group li span {
    color: var(--color-muted);
    font-size: .9em;
}

.package-raw-note {
    max-width: 940px;
    margin: 88px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(31,28,25,.14);
    color: var(--color-muted);
    font-size: .82rem;
    line-height: 1.85;
    text-align: center;
}

@media (max-width: 900px) {
    .package-addons .packages-section-heading {
        margin-bottom: 64px;
    }

    .package-addons-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .package-addon-group {
        padding: 0;
    }

    .package-addon-group:first-child {
        padding-bottom: 58px;
        border-right: 0;
        border-bottom: 1px solid rgba(31,28,25,.16);
    }

    .package-raw-note {
        margin-top: 64px;
        text-align: left;
    }
}

/* TWO PHOTOGRAPHERS SECTION */

.two-photo-section {
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
    background: #fff;
}

.two-photo-copy span {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: .75rem;
    color: #777;
}

.two-photo-copy h2 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 300;
    line-height: 1.05;
    margin: 20px 0 28px;
}

.two-photo-copy p {
    color: #555;
    line-height: 2;
}

.two-photo-photo {
    min-height: 600px;
    background: url("images/web/site/scottlexfarahblake.jpg");
    background-size: cover;
    background-position: center;
    transition: .5s ease;
}

.two-photo-photo:hover {
    transform: scale(.97);
}

/* PACKAGES CTA */

.packages-cta {
    padding: 90px 6%;
    text-align: center;
    background: var(--color-cream);
    color: var(--color-ink);
}

.packages-cta h2 {
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    font-weight: 300;
    margin: 0 0 24px;
}

.packages-cta p {
    max-width: 660px;
    margin: 0 auto 38px;
    color: var(--color-text);
    line-height: 1.9;
}

.packages-cta a {
    display: inline-block;
    padding: 18px 44px;
    background: var(--color-ink);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    transition: .3s ease;
}

.packages-cta a:hover {
    background: #333;
    transform: translateY(-3px);
}

/* =========================================
   MEET THE TEAM PAGE
========================================= */

.meet-page {
    background: var(--color-cream);
}

.meet-decor-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.meet-decor-section > *:not(.meet-bg-element):not(.meet-bg-text) {
    position: relative;
    z-index: 2;
}

.meet-bg-element {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.meet-bg-photo {
    background-size: cover;
    filter: grayscale(1) sepia(0.1) contrast(0.92);
    opacity: 0.105;
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0 45%, transparent 78%);
    mask-image: radial-gradient(ellipse at center, #000 0 45%, transparent 78%);
}

.meet-bg-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(248,244,238,0), rgba(248,244,238,0.7) 74%);
}

.meet-bg-text {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    color: rgba(31, 28, 25, 0.055);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 9vw, 9rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 0;
    white-space: nowrap;
}

.meet-bg-flowers {
    width: min(44vw, 560px);
    aspect-ratio: 1;
    right: -10%;
    top: -24%;
    background-image: url("images/background_fade/EG Flowers.png");
    opacity: 0.055;
    mix-blend-mode: multiply;
    transform: rotate(8deg);
}

.meet-bg-brand {
    width: min(52vw, 680px);
    aspect-ratio: 1;
    left: -16%;
    top: 12%;
    background-image: url("images/background_fade/Evergrain.png");
    opacity: 0.04;
    mix-blend-mode: multiply;
}

.meet-bg-flowers-small {
    width: min(34vw, 420px);
    left: auto;
    right: -12%;
    top: 42%;
    opacity: 0.045;
    transform: rotate(-12deg);
}

.meet-bg-brand-cta {
    left: auto;
    right: -12%;
    top: 50%;
    width: min(42vw, 520px);
    opacity: 0.035;
    transform: translateY(-50%) rotate(10deg);
}

.meet-bg-photo-intro {
    width: min(30vw, 380px);
    height: 76%;
    left: -7%;
    bottom: -12%;
    background-image: url("images/background_fade/_K0A0166.jpg");
    background-position: center 34%;
}

.meet-bg-text-intro {
    right: 6%;
    bottom: 20px;
}

.meet-bg-photo-profile-left {
    width: min(32vw, 420px);
    height: 36%;
    left: -10%;
    top: 20%;
    background-image: url("images/background_fade/1K0A4701-Enhanced-NR.jpg");
    background-position: center 42%;
}

.meet-bg-photo-profile-right {
    width: min(34vw, 440px);
    height: 38%;
    right: -10%;
    bottom: 8%;
    background-image: url("images/background_fade/DSC00398.jpg");
    background-position: center 58%;
    opacity: 0.095;
}

.meet-bg-text-profile {
    left: 8%;
    top: 47%;
    transform: rotate(-4deg);
}

.meet-bg-photo-values {
    inset: -18% -6%;
    background-image: url("images/background_fade/_K0A4739-Edit.jpg");
    background-position: center 48%;
    opacity: 0.16;
    mix-blend-mode: normal;
    filter: grayscale(1) contrast(0.8) brightness(0.7);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.meet-bg-photo-values::after {
    background: rgba(17,17,17,0.72);
}

.meet-bg-photo-cta {
    width: min(31vw, 390px);
    height: 72%;
    left: -8%;
    top: 12%;
    background-image: url("images/background_fade/_K0A0058.jpg");
    background-position: center 42%;
    opacity: 0.09;
}

.meet-bg-text-cta {
    left: 8%;
    bottom: -20px;
    color: rgba(31, 28, 25, 0.045);
}

/* HERO */

.meet-hero {
    min-height: 96vh;
    background:
        linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.58)),
        url("images/web/site/scottlexfarahblake.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 0 8% 12vh;
    color: white;
}

.meet-hero-copy {
    max-width: 850px;
}

.meet-hero-copy span {
    display: block;
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.meet-hero-copy h1 {
    margin-bottom: 28px;
}

.meet-hero-copy p {
    max-width: 620px;
    color: rgba(255,255,255,0.88);
}

/* INTRO */

.meet-intro {
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.meet-intro p {
    font-size: 18px;
}

/* TEAM PROFILES */

.team-profile-section {
    padding: 0 8% 140px;
    display: grid;
    gap: 90px;
    background: var(--color-cream);
}

.team-profile-card {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 70px;
    align-items: center;
}

.team-profile-card.reverse {
    grid-template-columns: 1fr 0.9fr;
}

.team-profile-card.reverse .team-profile-image {
    order: 2;
}

.team-profile-image {
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.team-profile-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(92%);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.team-profile-image img.profile-photo-scott {
    object-position: center 78%;
}

.team-profile-image img.profile-photo-alexis {
    object-position: center 74%;
}

.team-profile-card:hover .team-profile-image img {
    transform: scale(1.04);
    filter: brightness(100%);
}

.team-profile-copy span {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-muted);
}

.team-profile-copy h2 {
    margin-bottom: 28px;
}

.team-profile-copy p {
    max-width: 620px;
    margin-bottom: 22px;
}

/* VALUES */

.team-values {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--color-black);
    color: white;
    padding: 54px 8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.team-values div {
    position: relative;
    z-index: 2;
    border-left: 1px solid rgba(255,255,255,0.24);
    padding-left: 22px;
}

.team-values h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: white;
}

.team-values p {
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

/* IMAGE BREAK */

.meet-image-break {
    min-height: 70vh;
    background:
        linear-gradient(rgba(0,0,0,0.12), rgba(0,0,0,0.3)),
        url("images/theteam/scottlexfarahblake.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* CTA */

.meet-cta {
    padding: var(--section-padding-small);
    text-align: center;
    background: var(--color-cream);
}

.meet-cta h2 {
    max-width: 850px;
    margin: 0 auto 24px;
}

.meet-cta p {
    max-width: 640px;
    margin: 0 auto 38px;
}

.meet-cta a {
    display: inline-block;
    padding: 18px 44px;
    background: var(--color-ink);
    color: white;
    text-decoration: none;
    border-radius: 100px;
    transition: var(--transition);
}

.meet-cta a:hover {
    background: #333;
    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 1000px) {
    .meet-intro,
    .team-profile-card,
    .team-profile-card.reverse {
        grid-template-columns: 1fr;
    }

    .team-profile-card.reverse .team-profile-image {
        order: 0;
    }

    .team-values {
        grid-template-columns: 1fr;
    }

    .meet-image-break {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .meet-hero {
        padding: 0 6% 90px;
        background-position: 52% 68%;
    }

    .meet-bg-flowers {
        width: 86vw;
        right: -44vw;
        top: -18vw;
        opacity: 0.04;
    }

    .meet-bg-brand {
        width: 100vw;
        left: -58vw;
        top: 16%;
        opacity: 0.028;
    }

    .meet-bg-flowers-small {
        display: none;
    }

    .meet-bg-photo {
        width: 78vw;
        height: 42%;
        opacity: 0.06;
    }

    .meet-bg-photo-intro,
    .meet-bg-photo-profile-left,
    .meet-bg-photo-cta {
        left: auto;
        right: -34vw;
        top: 6%;
        bottom: auto;
    }

    .meet-bg-photo-profile-right {
        display: none;
    }

    .meet-bg-photo-values {
        inset: -12% -24%;
        opacity: 0.12;
    }

    .meet-bg-text {
        font-size: clamp(3rem, 16vw, 5.8rem);
        white-space: normal;
    }

    .meet-bg-text-intro,
    .meet-bg-text-profile,
    .meet-bg-text-cta {
        left: 6%;
        right: 6%;
        top: auto;
        bottom: 12px;
        transform: none;
    }

    .team-profile-section {
        padding: 0 6% 90px;
    }

    .team-profile-image img {
        height: 520px;
    }

    .team-profile-image img.profile-photo-scott,
    .team-profile-image img.profile-photo-alexis {
        object-position: center 68%;
    }
}

/* =========================================
   INDIVIDUAL WEDDING GALLERY PAGE
========================================= */

.wedding-gallery-page {
    background: var(--color-cream);
    overflow: hidden;
}

.gallery-detail-decor {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.gallery-detail-decor > *:not(.gallery-bg-element):not(.gallery-bg-text) {
    position: relative;
    z-index: 2;
}

.gallery-bg-element,
.gallery-bg-text {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.gallery-bg-element {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.gallery-bg-brand,
.gallery-bg-flowers {
    aspect-ratio: 1;
    mix-blend-mode: multiply;
}

.gallery-bg-brand {
    width: min(46vw, 580px);
    right: -14%;
    top: -22%;
    background-image: url("images/background_fade/Evergrain.png");
    opacity: 0.035;
    transform: rotate(8deg);
}

.gallery-bg-flowers {
    width: min(34vw, 420px);
    left: -10%;
    bottom: -24%;
    background-image: url("images/background_fade/EG Flowers.png");
    opacity: 0.05;
    transform: rotate(-10deg);
}

.gallery-bg-photo {
    background-size: cover;
    filter: grayscale(1) sepia(0.08) contrast(0.9);
    opacity: 0.09;
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0 44%, transparent 78%);
    mask-image: radial-gradient(ellipse at center, #000 0 44%, transparent 78%);
}

.gallery-bg-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(248,244,238,0), rgba(248,244,238,0.72) 74%);
}

.gallery-bg-photo-intro {
    width: min(30vw, 380px);
    height: 76%;
    left: -8%;
    top: 12%;
    background-image: url("images/background_fade/timing.jpg");
    background-position: center 52%;
}

.gallery-bg-photo-grid {
    width: min(34vw, 430px);
    height: 520px;
    right: -11%;
    top: 8%;
    background-image: url("images/background_fade/_K0A5119.jpg");
    background-position: center 50%;
}

.gallery-bg-text {
    color: rgba(31, 28, 25, 0.045);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: 0;
    white-space: nowrap;
}

.gallery-bg-text-grid {
    left: 6%;
    top: 28px;
}

.gallery-detail-intro {
    padding: 86px max(6%, calc((100vw - 1180px) / 2)) 58px;
    border-bottom: 1px solid rgba(23, 21, 19, 0.08);
}

.gallery-detail-kicker {
    margin-bottom: 20px;
    color: var(--color-muted);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gallery-detail-intro h1 {
    max-width: 960px;
    margin: 0 0 30px;
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    line-height: 0.95;
}

.gallery-detail-meta {
    max-width: 980px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-detail-meta div {
    padding-top: 18px;
    border-top: 1px solid rgba(31, 28, 25, 0.16);
}

.gallery-detail-meta dt {
    margin-bottom: 8px;
    color: var(--color-muted);
    font-size: 11px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.gallery-detail-meta dd {
    margin: 0;
    color: var(--color-ink);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.5;
}

.wedding-gallery-hero {
    width: 100%;
    height: calc(100vh - 108px);
    overflow: hidden;
    background: var(--color-black);
}

.wedding-gallery-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(92%);
}

.wedding-gallery-grid {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    background: var(--color-cream);
}

.wedding-gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1000px) {
    .wedding-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .wedding-gallery-hero {
        height: 78vh;
    }

    .wedding-gallery-grid {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 12px;
    }

    .wedding-gallery-grid img,
    .wedding-gallery-grid img:nth-child(3n + 2),
    .wedding-gallery-grid img:nth-child(4n) {
        height: 520px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 1000px) {
    .team-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: var(--section-padding-small);
    }

    .team-image img {
        height: 560px;
    }

    .purpose-section {
        display: flex;
        flex-direction: column;
        padding: var(--section-padding-small);
    }

    .purpose-text {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 680px;
        margin: 0 auto 42px;
        padding: 42px 34px;
        transform: none;
    }

    .purpose-image {
        width: 100%;
    }

    .purpose-image img {
        height: 520px;
    }

    .portfolio-grid,
    .guidance-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid img,
    .portfolio-grid img:nth-child(2),
    .portfolio-grid img:nth-child(3) {
        height: clamp(260px, 82vw, 340px);
        margin-top: 0;
    }

    .guidance-card {
        height: 460px;
    }

    .packages-intro,
    .two-photo-section,
    .package-grid,
    .package-addons-grid {
        grid-template-columns: 1fr;
    }

    .included-strip {
        grid-template-columns: 1fr 1fr;
    }

    .package-card {
        min-height: 680px;
    }

    .package-details {
        max-height: 620px;
        opacity: 1;
    }

    .package-image-break,
    .image-break {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 5% 12px;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px 10px;
    }

    .nav-links a {
        font-size: 9px;
        line-height: 1.25;
        padding: 3px 0;
        text-align: center;
    }

    .logo {
        display: flex;
        order: -1;
        grid-column: 1 / -1;
        justify-content: center;
        margin-bottom: 4px;
    }

    .logo img {
        height: 42px;
    }

    .hero {
        min-height: 82vh;
        padding: 0 6%;
    }

    .hero h1 {
        margin-bottom: 30px;
    }

    .section-header {
        margin-bottom: 46px;
    }

    .team-image img,
    .purpose-image img {
        height: 440px;
    }

    .image-break {
        height: 80vh;
        background-size: cover;
    }

    .portfolio-preview,
    .guidance-section,
    .contact {
        padding: 90px 6%;
    }

    .footer-main {
        padding: 42px 6% 28px;
    }

    .footer-nav {
        gap: 16px;
    }

    .footer-photo-strip {
        grid-template-columns: repeat(4, 1fr);
        height: auto;
    }

    .footer-photo-strip img {
        height: clamp(170px, 48vw, 230px);
    }

    .stacked-carousel-wrapper {
        height: 560px;
    }

    .stacked-card {
        width: 300px;
        height: 450px;
    }

    .stacked-card.prev {
        transform: translate(-95%, -50%) scale(0.75);
    }

    .stacked-card.next {
        transform: translate(-5%, -50%) scale(0.75);
    }

    .stacked-card.far-next {
        opacity: 0;
    }

    .stacked-carousel-btn {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }

    .packages-hero {
        padding: 0 28px 90px;
    }

    .included-strip {
        grid-template-columns: 1fr;
    }

    .package-inner {
        padding: 120px 30px 30px;
    }

    .package-number,
    .package-tag {
        left: 30px;
    }
}

/* =========================================
   HIGH-END EDITORIAL REFINEMENT
========================================= */

:root {
    --color-ink: #171513;
    --color-text: #45413b;
    --color-muted: #756d62;
    --color-cream: #f7f3ec;
    --color-stone: #e8e1d6;
    --color-mist: #f4f5f2;
    --color-accent: #6f6a58;
    --max-wide: 1240px;
    --shadow-soft: 0 30px 90px rgba(23, 21, 19, 0.18);
    --shadow-card: 0 20px 60px rgba(23, 21, 19, 0.14);
    --paper-texture:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 .09 0 0 0 0 .08 0 0 0 0 .065 0 0 0 .045 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E"),
        linear-gradient(135deg, rgba(23,21,19,0.018), rgba(255,255,255,0.16));
    --paper-texture-size: 180px 180px, 100% 100%;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    text-rendering: geometricPrecision;
    background-color: var(--color-cream);
    background-image: var(--paper-texture);
    background-size: var(--paper-texture-size);
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
}

p {
    max-width: 68ch;
}

.navbar {
    position: sticky;
    top: 0;
    padding: 12px 5%;
    background-color: rgba(247, 243, 236, 0.97);
    background-image: var(--paper-texture);
    background-size: var(--paper-texture-size);
    border-top: 3px solid rgba(31, 28, 25, 0.82);
    border-bottom: 1px solid rgba(23, 21, 19, 0.16);
    box-shadow: 0 12px 32px rgba(31, 28, 25, 0.08);
    backdrop-filter: blur(18px);
}

.nav-links {
    max-width: 1320px;
    margin: 0 auto;
    gap: clamp(20px, 2.4vw, 40px);
}

.nav-links a {
    position: relative;
    padding: 10px 0;
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-ink);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.logo img {
    height: 82px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 174px;
    padding: 0 26px;
}

.hero {
    min-height: calc(100vh - 113px);
}

.hero::before {
    background:
        linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.46)),
        radial-gradient(circle at center, rgba(0,0,0,0), rgba(0,0,0,0.38));
}

.hero-content {
    max-width: 980px;
}

.hero h1,
.packages-hero-copy h1,
.meet-hero-copy h1,
.wedding-gallery-hero-copy h1 {
    text-wrap: balance;
}

.hero-btn,
.outline-btn,
button,
.packages-cta a,
.meet-cta a {
    border-radius: 0;
    letter-spacing: 2.3px;
}

.hero-btn,
.outline-btn {
    background: transparent;
}

.hero-btn:hover,
.outline-btn:hover,
button:hover,
.packages-cta a:hover,
.meet-cta a:hover {
    transform: translateY(-2px);
}

.team-section,
.purpose-section,
.portfolio-preview,
.guidance-section,
.contact,
.packages-area,
.meet-intro,
.two-photo-section,
.section {
    padding-left: max(6%, calc((100vw - 1240px) / 2));
    padding-right: max(6%, calc((100vw - 1240px) / 2));
}

.team-image img,
.purpose-image img,
.guidance-card,
.stacked-card,
.team-profile-image,
.package-card,
.best-photos-grid img {
    border-radius: 4px;
}

.purpose-text {
    border: 1px solid rgba(23, 21, 19, 0.08);
}

.portfolio-grid {
    gap: 14px;
}

.portfolio-grid img {
    background: var(--color-stone);
}

.guidance-section,
.two-photo-section {
    background: var(--color-mist);
}

.contact-form {
    padding: 48px;
    background: rgba(255,255,255,0.42);
    border: 1px solid rgba(23, 21, 19, 0.08);
}

.section {
    padding-top: 130px;
    padding-bottom: 130px;
    background: var(--color-cream);
}

.featured-gallery-section {
    background:
        linear-gradient(90deg, rgba(23,21,19,0.04), rgba(255,255,255,0) 24%),
        var(--color-cream);
}

.featured-gallery-section > h2,
.section > h2 {
    text-align: center;
}

.team-section,
.portfolio-preview,
.contact,
.packages-area,
.meet-intro,
.team-profile-section,
.meet-cta,
.packages-cta,
.wedding-story-intro,
.wedding-gallery-grid,
.section:not(.featured-gallery-section),
.portfolio-divider {
    background-image: var(--paper-texture);
    background-size: var(--paper-texture-size);
    background-blend-mode: multiply;
}

.purpose-section {
    background-color: var(--color-stone);
    background-image: var(--paper-texture);
    background-size: var(--paper-texture-size);
    background-blend-mode: multiply;
}

.guidance-section,
.two-photo-section {
    background-color: var(--color-mist);
    background-image: var(--paper-texture);
    background-size: var(--paper-texture-size);
    background-blend-mode: multiply;
}

.featured-gallery-section {
    background:
        linear-gradient(90deg, rgba(23,21,19,0.04), rgba(255,255,255,0) 24%),
        var(--paper-texture),
        var(--color-cream);
    background-size: 100% 100%, var(--paper-texture-size);
    background-blend-mode: normal, multiply;
}

.ambient-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.ambient-section > *:not(.ambient-photo):not(.ambient-text):not(.ambient-mark):not(.ambient-frame-mark):not(.purpose-text) {
    position: relative;
    z-index: 2;
}

.ambient-purpose .purpose-text {
    position: absolute;
    z-index: 3;
}

.ambient-photo {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    filter: grayscale(1) sepia(0.12) contrast(0.9);
    opacity: 0.14;
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 82%);
    mask-image: radial-gradient(ellipse at center, #000 0 48%, transparent 82%);
}

.ambient-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(247,243,236,0), rgba(247,243,236,0.72) 76%);
}

.ambient-photo-left {
    left: -8%;
    top: 8%;
    width: min(34vw, 420px);
    height: 72%;
    background-image: url("images/background_fade/_K0A0166.jpg");
    background-position: center 36%;
}

.ambient-photo-right {
    right: -8%;
    top: 10%;
    width: min(38vw, 480px);
    height: 70%;
    background-image: url("images/background_fade/_K0A0140.jpg");
    background-position: center 58%;
}

.ambient-photo-detail {
    left: -6%;
    bottom: 7%;
    width: min(32vw, 390px);
    height: 58%;
    background-image: url("images/background_fade/_K0A0140.jpg");
    background-position: center 64%;
    opacity: 0.12;
}

.ambient-photo-featured {
    left: -6%;
    top: 18%;
    width: min(35vw, 430px);
    height: 58%;
    background-image: url("images/background_fade/_K0A0058.jpg");
    background-position: center 54%;
    opacity: 0.13;
}

.ambient-photo-favorites {
    right: -9%;
    top: 3%;
    width: min(34vw, 430px);
    height: 64%;
    background-image: url("images/background_fade/_K0A9550.jpg");
    background-position: center 44%;
    opacity: 0.14;
}

.ambient-text,
.ambient-mark,
.ambient-frame-mark {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.ambient-text {
    max-width: 680px;
    color: rgba(23,21,19,0.052);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 6vw, 6.8rem);
    line-height: 0.92;
    text-transform: lowercase;
    letter-spacing: 0;
    white-space: nowrap;
}

.ambient-text-upper {
    top: 44px;
    right: max(6%, calc((100vw - 1240px) / 2));
}

.ambient-text-lower {
    left: max(6%, calc((100vw - 1240px) / 2));
    bottom: 24px;
}

.ambient-mark {
    color: rgba(23,21,19,0.055);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1;
}

.ambient-mark-eg {
    right: 6%;
    bottom: 7%;
    font-size: clamp(7rem, 16vw, 16rem);
}

.ambient-mark-script {
    left: 5%;
    top: 18%;
    max-width: 360px;
    font-size: clamp(3rem, 8vw, 8rem);
    font-style: italic;
    transform: rotate(-7deg);
}

.ambient-frame-mark {
    right: max(6%, calc((100vw - 1240px) / 2));
    bottom: 12%;
    width: 150px;
    height: 210px;
    border: 1px solid rgba(23,21,19,0.085);
}

.ambient-frame-mark::before,
.ambient-frame-mark::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 1px;
    background: rgba(23,21,19,0.12);
}

.ambient-frame-mark::before {
    left: -18px;
    top: 28px;
}

.ambient-frame-mark::after {
    right: -18px;
    bottom: 28px;
}

.stacked-carousel-wrapper {
    margin-top: 20px;
}

.stacked-card {
    border: 1px solid rgba(255,255,255,0.26);
}

.stacked-carousel-btn {
    border: 1px solid rgba(23, 21, 19, 0.12);
    background: rgba(247, 243, 236, 0.94);
}

.best-photos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.best-photos-grid img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: none;
}

.best-photos-grid img:nth-child(1),
.best-photos-grid img:nth-child(4) {
    grid-column: auto;
}

.best-photos-grid img:nth-child(2),
.best-photos-grid img:nth-child(3),
.best-photos-grid img:nth-child(5),
.best-photos-grid img:nth-child(6) {
    grid-column: auto;
}

.packages-hero {
    background:
        linear-gradient(rgba(0,0,0,.32), rgba(0,0,0,.68)),
        url("images/web/site/fireworks.jpg");
    background-size: cover;
    background-position: center 45%;
}

.package-image-break {
    background:
        linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.38)),
        url("images/web/site/F&B Bubble Exit.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.package-card {
    min-height: 700px;
    background-position: center;
}

.package-card::before {
    background: linear-gradient(
        to top,
        rgba(0,0,0,.84),
        rgba(0,0,0,.34),
        rgba(0,0,0,.06)
    );
}

.package-inner {
    padding-top: 128px;
}

.package-price {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
}

.package-tag {
    border-radius: 0;
}

.two-photo-photo {
    background: url("images/web/site/scottlexfarahblake.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.meet-hero {
    background:
        linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.62)),
        url("images/web/site/_K0A0080.jpg");
    background-size: cover;
    background-position: center 74%;
}

.meet-image-break {
    background:
        linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.34)),
        url("images/theteam/scottlexfarahblake.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.wedding-gallery-page {
    background: var(--color-cream);
}

.wedding-gallery-hero {
    position: relative;
    height: calc(100vh - 91px);
}

.wedding-gallery-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,0.64), rgba(0,0,0,0.04) 58%),
        linear-gradient(to right, rgba(0,0,0,0.42), rgba(0,0,0,0) 48%);
}

.wedding-gallery-hero img {
    filter: none;
}

.wedding-gallery-hero-copy {
    position: absolute;
    left: max(6%, calc((100vw - 1240px) / 2));
    bottom: 9vh;
    z-index: 2;
    max-width: 820px;
    color: white;
}

.wedding-gallery-hero-copy .eyebrow,
.wedding-gallery-hero-copy p {
    color: rgba(255,255,255,0.82);
}

.wedding-gallery-hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(4rem, 10vw, 9rem);
}

.wedding-story-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: end;
    padding: 110px max(6%, calc((100vw - 1240px) / 2));
    border-bottom: 1px solid rgba(23, 21, 19, 0.08);
}

.wedding-story-intro h2 {
    margin-bottom: 0;
}

.wedding-story-intro p:not(.eyebrow) {
    margin-bottom: 0;
    font-size: 18px;
}

.wedding-gallery-grid {
    padding: 10px;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
}

.clean-gallery-grid {
    padding: clamp(12px, 2vw, 24px);
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: clamp(10px, 1.4vw, 18px);
    background: var(--color-cream);
}

.gallery-frame {
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-stone);
}

.gallery-frame-vertical {
    grid-column: span 3;
    aspect-ratio: 2 / 3;
}

.gallery-frame-horizontal {
    grid-column: span 6;
    aspect-ratio: 3 / 2;
}

.clean-gallery-grid .gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.98) contrast(1.01);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.clean-gallery-grid .gallery-frame:hover img {
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.015);
}

.wedding-gallery-grid img {
    grid-column: span 4;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 3px;
    filter: saturate(0.96) contrast(1.02);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.wedding-gallery-grid img:nth-child(9n + 1),
.wedding-gallery-grid img:nth-child(9n + 6) {
    grid-column: span 8;
    height: 680px;
}

.wedding-gallery-grid img:nth-child(9n + 3),
.wedding-gallery-grid img:nth-child(9n + 8) {
    grid-column: span 6;
    height: 620px;
}

.wedding-gallery-grid img:nth-child(9n + 4),
.wedding-gallery-grid img:nth-child(9n + 9) {
    grid-column: span 6;
    height: 620px;
}

.wedding-gallery-grid img:hover {
    filter: saturate(1.04) contrast(1.04);
}

.clean-gallery-grid .gallery-frame img,
.clean-gallery-grid .gallery-frame img:nth-child(n) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-column: auto;
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .logo {
        min-width: 146px;
        padding: 0 18px;
    }

    .logo img {
        height: 70px;
    }

    .best-photos-grid,
    .wedding-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clean-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-frame-vertical,
    .gallery-frame-horizontal {
        grid-column: auto;
    }

    .best-photos-grid img,
    .best-photos-grid img:nth-child(n),
    .wedding-gallery-grid img,
    .wedding-gallery-grid img:nth-child(n) {
        grid-column: auto;
    }

    .wedding-story-intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gallery-detail-meta {
        grid-template-columns: 1fr;
        max-width: 680px;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: sticky;
        padding: 9px 5% 11px;
        border-top-width: 2px;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px 10px;
    }

    .nav-links a {
        padding: 3px 0;
        font-size: 9px;
        line-height: 1.25;
        text-align: center;
    }

    .logo {
        order: -1;
        grid-column: 1 / -1;
        min-width: 0;
        margin-bottom: 6px;
        padding: 0;
        border: 0;
    }

    .logo img {
        height: 58px;
    }

    .contact-form {
        padding: 30px 22px;
    }

    .section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .portfolio-hero-intro {
        min-height: 380px;
        margin-top: -90px;
        margin-bottom: 52px;
        padding: 92px 6% 62px;
        background-position: 38% center;
    }

    .ambient-photo {
        opacity: 0.075;
    }

    .ambient-photo-left,
    .ambient-photo-right,
    .ambient-photo-detail,
    .ambient-photo-featured,
    .ambient-photo-favorites {
        width: 78vw;
        height: 48%;
        left: auto;
        right: -32vw;
        top: 8%;
    }

    .ambient-text {
        font-size: clamp(2.7rem, 16vw, 5.4rem);
        white-space: normal;
    }

    .ambient-text-upper {
        top: 18px;
        right: 6%;
        left: 18%;
        text-align: right;
    }

    .ambient-text-lower {
        left: 6%;
        right: 12%;
        bottom: 16px;
    }

    .ambient-purpose .purpose-text {
        position: relative;
        z-index: 3;
    }

    .ambient-mark-eg {
        right: 4%;
        bottom: 4%;
        font-size: 7rem;
    }

    .ambient-mark-script {
        left: 4%;
        top: 10%;
        font-size: 3.8rem;
    }

    .ambient-frame-mark {
        display: none;
    }

    .portfolio-divider {
        padding: 42px 6% 36px;
    }

    .portfolio-divider::before,
    .portfolio-divider::after {
        width: 18%;
    }

    .section.best-photos-section {
        padding-top: 42px;
    }

    .portfolio-bg-brand,
    .portfolio-bg-flowers {
        width: 96vw;
        opacity: 0.028;
    }

    .portfolio-bg-photo {
        width: 82vw;
        height: 42%;
        opacity: 0.06;
    }

    .portfolio-featured-decor .portfolio-bg-brand,
    .portfolio-bg-flowers-switch,
    .portfolio-bg-flowers-favorites {
        left: -52vw;
        right: auto;
        top: 8%;
        bottom: auto;
    }

    .portfolio-bg-flowers-featured,
    .portfolio-bg-brand-favorites {
        right: -48vw;
        left: auto;
        top: 4%;
        bottom: auto;
    }

    .portfolio-bg-photo-featured-left,
    .portfolio-bg-photo-switch-left,
    .portfolio-bg-photo-favorites {
        left: auto;
        right: -36vw;
        top: 26%;
        bottom: auto;
    }

    .portfolio-bg-photo-switch-right {
        display: none;
    }

    .portfolio-bg-text {
        font-size: clamp(3rem, 15vw, 5.6rem);
        white-space: normal;
    }

    .portfolio-bg-text-featured,
    .portfolio-bg-text-switch,
    .portfolio-bg-text-favorites {
        left: 6%;
        right: 6%;
        top: auto;
        bottom: 12px;
        transform: none;
    }

    .portfolio-switch-section {
        padding-top: 56px;
    }

    .gallery-toggle {
        margin-bottom: 38px;
    }

    .gallery-toggle-btn {
        min-height: 44px;
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .gallery-switch-panel {
        grid-template-columns: minmax(0, 340px);
        gap: 28px;
    }

    .gallery-story-card img {
        height: 460px;
    }

    .best-photos-grid,
    .wedding-gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-detail-intro {
        padding: 78px 6% 52px;
    }

    .gallery-detail-intro h1 {
        margin-bottom: 28px;
        font-size: clamp(3.2rem, 17vw, 5.5rem);
    }

    .clean-gallery-grid {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 12px;
    }

    .gallery-frame-vertical,
    .gallery-frame-horizontal {
        grid-column: auto;
    }

    .gallery-bg-brand,
    .gallery-bg-flowers {
        width: 96vw;
        opacity: 0.028;
    }

    .gallery-bg-brand {
        right: -48vw;
        top: -8vw;
    }

    .gallery-bg-flowers {
        left: -52vw;
        bottom: -18vw;
    }

    .gallery-bg-photo {
        width: 82vw;
        height: 44%;
        opacity: 0.055;
    }

    .gallery-bg-photo-intro,
    .gallery-bg-photo-grid {
        left: auto;
        right: -36vw;
        top: 18%;
    }

    .gallery-bg-text {
        font-size: clamp(3rem, 16vw, 5.6rem);
        white-space: normal;
    }

    .gallery-bg-text-grid {
        left: 6%;
        right: 6%;
        top: 10px;
    }

    .best-photos-grid img,
    .wedding-gallery-grid img,
    .wedding-gallery-grid img:nth-child(n) {
        min-height: 0;
        height: auto;
    }

    .best-photos-grid img {
        aspect-ratio: 4 / 5;
        object-fit: cover;
    }

    .wedding-gallery-hero-copy {
        left: 6%;
        right: 6%;
        bottom: 64px;
    }

    .wedding-story-intro {
        padding: 82px 6%;
    }
}
