:root {
    --ink: #171717;
    --muted: #69655e;
    --paper: #fbfaf7;
    --soft: #eee8df;
    --line: rgba(23, 23, 23, 0.12);
    --gold: #b58a42;
    --rose: #9f4f46;
    --forest: #173d35;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(23, 23, 23, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 56px);
    color: var(--white);
    transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
    color: var(--ink);
    background: rgba(251, 250, 247, 0.94);
    box-shadow: 0 12px 36px rgba(23, 23, 23, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: clamp(132px, 13vw, 188px);
    height: auto;
    max-height: 48px;
    object-fit: contain;
}

.logo-dark,
.site-header.scrolled .logo-light,
.site-header.nav-open .logo-light {
    display: none;
}

.site-header.scrolled .logo-dark,
.site-header.nav-open .logo-dark {
    display: block;
}

.brand small {
    display: block;
    color: currentColor;
    font-size: 0.76rem;
    opacity: 0.78;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 0.88rem;
    font-weight: 850;
    line-height: 1.1;
    white-space: nowrap;
}

.header-contact span {
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-nav a {
    border-radius: 999px;
    padding: 9px 15px;
    font-size: 0.92rem;
    font-weight: 650;
    opacity: 0.9;
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(255, 255, 255, 0.18);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a.active,
.site-header.nav-open .site-nav a:hover,
.site-header.nav-open .site-nav a.active {
    background: var(--soft);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: currentColor;
}

.hero {
    position: relative;
    display: grid;
    min-height: 94vh;
    align-items: end;
    overflow: hidden;
    color: var(--white);
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(14, 14, 14, 0.48), rgba(14, 14, 14, 0.12) 54%, rgba(14, 14, 14, 0.36)),
        linear-gradient(180deg, rgba(14, 14, 14, 0.36), rgba(14, 14, 14, 0.08) 42%, rgba(14, 14, 14, 0.62)),
        url("../img/portfolio/p2.jpg") center / cover;
    transform: scale(1.02);
}

.hero-content {
    position: relative;
    display: grid;
    width: min(1180px, calc(100% - 36px));
    grid-template-columns: minmax(0, 650px) auto;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    padding: 170px 0 58px;
    margin: 0 auto;
}

.hero-panel {
    max-width: 650px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 0.98;
    letter-spacing: 0;
}

h1 {
    max-width: 820px;
    font-size: clamp(3rem, 3.4vw, 6.4rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 4.25rem);
}

h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
}

.hero-copy {
    max-width: 560px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-note {
    display: grid;
    gap: 5px;
    border-left: 1px solid rgba(255, 255, 255, 0.42);
    padding-left: 20px;
    margin-bottom: 8px;
    white-space: nowrap;
}

.hero-note span {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-note a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.hero-actions,
.package-panel,
.cta-band {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    line-height: 1;
}

.button.primary {
    color: var(--white);
    background: var(--rose);
}

.button.primary:hover {
    background: #884038;
}

.button.ghost {
    border-color: rgba(255, 255, 255, 0.56);
    color: var(--white);
}

.button.ghost:hover {
    background: rgba(255, 255, 255, 0.13);
}

.section {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(62px, 8vw, 112px) 0;
}

.intro-grid,
.split-feature,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(30px, 6vw, 84px);
    align-items: center;
}

.intro-grid p:last-child {
    color: var(--muted);
    font-size: 1.15rem;
}

.local-seo {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    gap: clamp(30px, 6vw, 84px);
    border-top: 1px solid var(--line);
}

.local-seo p {
    color: var(--muted);
    font-size: 1.08rem;
}

.compact-seo {
    padding-top: 0;
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.service-strip article {
    min-height: 260px;
    padding: clamp(28px, 4vw, 50px);
    border-right: 1px solid var(--line);
}

.service-strip article:last-child {
    border-right: 0;
}

.service-strip span {
    display: block;
    margin-bottom: 44px;
    color: var(--gold);
    font-weight: 900;
}

.service-strip p,
.feature-copy p,
.service-cards p,
.package-panel p,
.page-hero p,
.contact-card dd {
    color: var(--muted);
}

.feature-image,
.card-image,
.gallery-item {
    min-height: 420px;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
}

.feature-image.portrait {
    background-image:
        linear-gradient(180deg, rgba(23, 23, 23, 0.02), rgba(23, 23, 23, 0.24)),
        url("https://images.unsplash.com/photo-1529634597503-139d3726fed5?auto=format&fit=crop&w=1100&q=85");
}

.tick-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0;
    list-style: none;
}

.tick-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 700;
}

.tick-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: var(--white);
    background: var(--forest);
    content: "✓";
    font-size: 0.72rem;
    text-align: center;
    line-height: 18px;
}

.text-link {
    color: var(--rose);
    font-weight: 900;
}

.cta-band,
.package-panel {
    justify-content: space-between;
    border-top: 1px solid var(--line);
}

.cta-band h2,
.package-panel h2 {
    max-width: 820px;
}

.page-hero {
    position: relative;
    min-height: 520px;
    padding: 170px max(18px, calc((100% - 1180px) / 2)) 74px;
    color: var(--white);
    overflow: hidden;
}

.page-hero::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13, 13, 13, 0.68), rgba(13, 13, 13, 0.22) 58%, rgba(13, 13, 13, 0.58)),
        var(--page-hero-image, linear-gradient(135deg, var(--forest), #101010));
    background-position: var(--page-hero-position, center);
    background-size: cover;
    content: "";
}

.page-hero > div {
    position: relative;
    max-width: 900px;
}

.services-hero {
    --page-hero-image: url("../img/portfolio/p3.jpg");
    --page-hero-position: center 54%;
}

.gallery-hero {
    --page-hero-image: url("../img/portfolio/p3.jpg");
    --page-hero-position: center 54%;
}

.contact-hero {
    --page-hero-image: url("../img/portfolio/p2.jpg");
    --page-hero-position: center 48%;
}

.page-hero h1 {
    max-width: 900px;
    font-size: clamp(3rem, 2.4vw, 6.4rem);
}

.page-hero p:last-child {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.12rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-cards article,
.contact-card,
.method-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.service-cards article {
    overflow: hidden;
}

.service-cards h2,
.service-cards p {
    padding: 0 26px;
}

.service-cards h2 {
    margin-top: 24px;
    font-size: 1.7rem;
}

.service-cards p {
    margin-bottom: 28px;
}

.card-image {
    min-height: 280px;
    border-radius: 0;
    box-shadow: none;
}

.card-image.wedding {
    background-image: url("https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=1100&q=85");
}

.card-image.couple {
    background-image: url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1100&q=85");
}

.card-image.party {
    background-image: url("https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=1100&q=85");
}

.card-image.family {
    background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1100&q=85");
}

.gallery-grid {
    display: grid;
    width: min(1180px, calc(100% - 36px));
    grid-auto-rows: 280px;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 78px auto;
}

.gallery-item {
    position: relative;
    min-height: auto;
    border: 0;
    margin: 0;
    overflow: hidden;
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0.02), rgba(23, 23, 23, 0.42));
    content: "";
}

.gallery-item span {
    position: absolute;
    z-index: 1;
    left: 18px;
    bottom: 18px;
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--white);
    background: rgba(23, 23, 23, 0.64);
    font-size: 0.86rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.gallery-grid .wide {
    grid-column: span 2;
}

.gallery-grid .tall {
    grid-row: span 2;
}

.img-one {
    background-image: url("https://images.unsplash.com/photo-1587271407850-8d438ca9fdf2?auto=format&fit=crop&w=1200&q=85");
}

.img-two {
    background-image: url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=900&q=85");
}

.img-three {
    background-image: url("https://images.unsplash.com/photo-1527529482837-4698179dc6ce?auto=format&fit=crop&w=900&q=85");
}

.img-four {
    background-image: url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=900&q=85");
}

.img-five {
    background-image: url("https://images.unsplash.com/photo-1501901609772-df0848060b33?auto=format&fit=crop&w=1200&q=85");
}

.img-six {
    background-image: url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=900&q=85");
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(10, 10, 10, 0.88);
}

.lightbox[hidden] {
    display: none;
}

.lightbox figure {
    width: min(1040px, 100%);
    margin: 0;
}

.lightbox img {
    width: 100%;
    max-height: 82vh;
    border-radius: 8px;
    object-fit: contain;
    background: #111111;
}

.lightbox figcaption {
    margin-top: 12px;
    color: var(--white);
    font-weight: 850;
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
}

.modal-open {
    overflow: hidden;
}

.contact-card,
.method-card {
    padding: clamp(24px, 4vw, 38px);
}

.contact-card h2 {
    margin-top: 0;
    font-size: 2rem;
}

.contact-card a,
.footer-contact a,
.method-card {
    color: inherit;
    font-weight: 850;
}

.direct-contact {
    align-items: stretch;
}

.contact-methods {
    display: grid;
    gap: 16px;
}

.method-card {
    display: grid;
    align-content: center;
    gap: 8px;
    min-height: 150px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.method-card:hover {
    border-color: rgba(159, 79, 70, 0.34);
    box-shadow: 0 18px 50px rgba(23, 23, 23, 0.1);
    transform: translateY(-2px);
}

.method-card span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.method-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.05;
}

.method-card small {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 650;
}

.social-methods {
    min-height: 170px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 850;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.contact-social {
    margin-top: 6px;
}

.contact-social a {
    border-color: var(--line);
    color: var(--ink);
    background: var(--paper);
}

.contact-social a:hover {
    border-color: rgba(159, 79, 70, 0.34);
    background: var(--soft);
}

dl {
    display: grid;
    gap: 22px;
    margin: 0;
}

dt {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

dd {
    margin: 4px 0 0;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(150px, 220px) minmax(180px, 280px);
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
    padding: 52px clamp(18px, 4vw, 56px);
    color: var(--white);
    background: #121212;
}

.footer-brand {
    display: inline-block;
    width: min(230px, 100%);
}

.footer-brand img {
    width: 100%;
    height: auto;
}

.site-footer p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.66);
}

.footer-links {
    display: grid;
    justify-items: center;
    gap: 11px;
    font-weight: 800;
    text-align: center;
}

.footer-links span {
    color: var(--gold);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.84);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.86);
}

.footer-portrait {
    justify-self: end;
    width: min(280px, 100%);
    aspect-ratio: 0.79;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0), rgba(18, 18, 18, 0.22)),
        url("../img/jagseer-footer-mirrored.png") center 35% / cover;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    font-size: 0.86rem;
}

@media (max-width: 840px) {
    .nav-toggle {
        display: block;
    }

    .header-contact {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: 82px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 8px;
        color: var(--ink);
        background: var(--paper);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .intro-grid,
    .local-seo,
    .split-feature,
    .contact-layout,
    .service-cards,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-items: start;
        text-align: left;
    }

    .footer-portrait {
        justify-self: start;
        width: min(280px, 100%);
    }

    .service-strip,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-strip article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .gallery-grid {
        grid-auto-rows: 250px;
    }

    .gallery-grid .wide,
    .gallery-grid .tall {
        grid-column: auto;
        grid-row: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-note {
        justify-self: start;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding: 14px 16px;
    }

    .brand {
        gap: 10px;
    }

    .brand-logo {
        width: 124px;
        max-height: 38px;
    }

    .brand small {
        font-size: 0.7rem;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        width: calc(100% - 32px);
        padding-bottom: 54px;
    }

    .hero-note {
        padding-left: 14px;
    }

    .hero-note a {
        font-size: 1.22rem;
    }

    .hero-actions .button,
    .cta-band .button,
    .package-panel .button {
        width: 100%;
    }

    .feature-image,
    .card-image {
        min-height: 300px;
    }

    .page-hero {
        padding-top: 128px;
    }
}
