﻿/* =========================================================
   HOME DESIGN SYSTEM
========================================================= */
:root {
    --home-cream: #f4efe5;
    --home-cream-light: #faf8f3;
    --home-brown: #4c392c;
    --home-brown-dark: #2d241e;
    --home-gold: #b49568;
    --home-gold-light: #d7c4a5;
    --home-text: #25211e;
    --home-muted: #81776e;
    --home-border: rgba(45, 36, 30, .15);
    --home-serif: "Times New Roman", Georgia, "Noto Serif", serif;
    --home-sans: "Inter", "Segoe UI", Arial, sans-serif;
}


/* =========================================================
   GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
}


body {
    background: var(--home-cream-light);
    color: var(--home-text);
    font-family: var(--home-sans);
}


.home-section {
    padding: clamp( 80px, 10vw, 150px ) 0;
}


.section-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--home-gold);
    margin-bottom: 20px;
}


    .section-kicker.light {
        color: rgba(255,255,255,.75);
    }


/* =========================================================
   HERO
========================================================= */

.hero-editorial {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #241c18;
}


.hero-editorial-bg {
    position: absolute;
    inset: 0;
    background-image: url("/Content/Images/Cover.png");
    background-position: center 35%;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.02);
}


.hero-editorial-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(20, 15, 12, .80) 0%, rgba(20, 15, 12, .54) 45%, rgba(20, 15, 12, .10) 100% ), linear-gradient( 0deg, rgba(20, 15, 12, .55) 0%, transparent 55% );
}


.hero-editorial-content {
    position: relative;
    z-index: 2;
}


    .hero-editorial-content .row {
        min-height: 100vh;
        padding-top: 140px;
        padding-bottom: 105px;
    }


.hero-eyebrow {
    margin-bottom: 24px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .24em;
}


.hero-editorial-title {
    max-width: 950px;
    margin: 0;
    color: #fff;
    font-family: var(--home-serif);
    font-size: clamp(60px, 8vw, 90px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .95;
}


    .hero-editorial-title span {
        display: block;
        font-style: italic;
        color: #e9d8bc;
    }


.hero-editorial-description {
    margin-top: 34px;
    margin-bottom: 0;
    color: rgba(255,255,255,.82);
    font-size: clamp( 17px, 1.5vw, 21px );
    line-height: 1.8;
}


.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 42px;
}


.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    background: #8d6821;
    border-radius: 0;
    color: #fff;
    font-weight: 600;
    transition: .3s ease;
}


    .btn-hero-primary:hover {
        background: #95763b;
        color: #fff;
    }


.btn-hero-link {
    color: #fff;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.55);
    border-radius: 0;
}


    .btn-hero-link:hover {
        color: #fff;
        border-bottom: 1px solid rgba(255,255,255,.55);
    }


.hero-scroll {
    position: absolute;
    z-index: 3;
    right: 55px;
    bottom: 70px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: rotate(90deg);
    transform-origin: right center;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 9px;
}


.hero-scroll-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,.45);
}


/* =========================================================
   QUICK SEARCH
========================================================= */

.quick-search-section {
    position: relative;
    z-index: 5;
    margin-top: -44px;
}


.quick-search-wrapper {
    background: #fff;
    box-shadow: 0 25px 70px rgba(38, 29, 23, .13);
    padding: clamp( 28px, 4vw, 55px );
}


.quick-search-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}


    .quick-search-heading h2 {
        margin: 0;
        max-width: 700px;
        font-family: var(--home-serif);
        font-weight: 400;
        font-size: clamp( 33px, 4vw, 57px );
        line-height: 1;
    }


        .quick-search-heading h2 em {
            color: var(--home-brown);
        }


.quick-search-form {
    display: grid;
    grid-template-columns: minmax(190px, 1.4fr) minmax(170px, 1fr) minmax(170px, 1fr) auto;
    gap: 0;
    border: 1px solid var(--home-border);
}


.quick-search-item {
    padding: 17px 22px;
    border-right: 1px solid var(--home-border);
}


    .quick-search-item label {
        display: block;
        margin-bottom: 3px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .13em;
        color: var(--home-muted);
    }


    .quick-search-item .form-control,
    .quick-search-item .form-select {
        min-height: 35px;
        border: 0;
        box-shadow: none;
        padding: 2px 0;
        background-color: transparent;
        font-size: 15px;
        color: var(--home-text);
    }


.quick-search-submit {
    display: flex;
}


.btn-search-large {
    border: 0;
    border-radius: 0;
    min-width: 175px;
    padding: 0 26px;
    background: var(--home-brown-dark);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: .25s ease;
}


    .btn-search-large:hover {
        background: var(--home-gold);
    }


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading-editorial {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: clamp( 45px, 6vw, 80px );
}


    .section-heading-editorial h2 {
        max-width: 760px;
        margin: 0;
        font-family: var(--home-serif);
        font-size: clamp(42px, 5vw, 74px);
        line-height: .98;
        font-weight: 400;
        letter-spacing: -.035em;
        font-style: italic;
    }


        .section-heading-editorial h2 em {
            color: var(--home-brown);
        }


.section-link {
    color: var(--home-text);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid var(--home-text);
    padding-bottom: 5px;
}


    .section-link:hover {
        color: var(--home-gold);
        border-color: var(--home-gold);
    }


/* =========================================================
   CONCEPT / CATEGORY
========================================================= */

.home-concepts {
    background: var(--home-cream);
}


.concept-list {
    border-top: 1px solid var(--home-border);
}


.concept-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: clamp( 22px, 3vw, 38px ) 0;
    color: var(--home-text);
    text-decoration: none;
    border-bottom: 1px solid var(--home-border);
    transition: .25s ease;
}


.concept-number {
    font-size: 11px;
    letter-spacing: .1em;
    color: var(--home-muted);
}


.concept-name {
    font-family: var(--home-serif);
    font-size: clamp( 30px, 4vw, 56px );
    line-height: 1;
}


.concept-arrow {
    width: 52px;
    height: 52px;
    border: 1px solid var(--home-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .25s ease;
}


.concept-item:hover {
    padding-left: 20px;
}


    .concept-item:hover
    .concept-arrow {
        background: var(--home-brown-dark);
        border-color: var(--home-brown-dark);
        color: #fff;
    }


/* =========================================================
   STORY
========================================================= */

.home-story-section {
    padding: clamp( 90px, 11vw, 170px ) 0;
    background: #fff;
}


.story-image {
    position: relative;
    overflow: hidden;
    height: clamp( 500px, 65vw, 760px );
}


    .story-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.story-content {
    max-width: 620px;
    padding-left: clamp( 0px, 4vw, 65px );
}


    .story-content h2 {
        margin-bottom: 32px;
        font-family: var(--home-serif);
        font-size: clamp( 42px, 5.2vw, 76px );
        font-weight: 400;
        line-height: .97;
        letter-spacing: -.04em;
        font-style: italic;
    }


        .story-content h2 em {
            color: var(--home-brown);
        }


    .story-content p {
        font-size: 16px;
        line-height: 1.9;
        color: var(--home-muted);
    }


.story-link {
    display: inline-block;
    margin-top: 18px;
    padding-bottom: 7px;
    color: var(--home-text);
    text-decoration: none;
    border-bottom: 1px solid var(--home-text);
    font-weight: 600;
}


    .story-link span {
        margin-left: 20px;
    }


/* =========================================================
   PHOTOGRAPHERS
========================================================= */

.photographer-editorial-section {
    background: var(--home-cream-light);
}


.photographer-heading {
    border-bottom: 1px solid var(--home-border);
    padding-bottom: 45px;
}


.photographer-count {
    text-align: right;
}


    .photographer-count strong {
        display: block;
        font-family: var(--home-serif);
        font-size: 44px;
        line-height: 1;
        font-weight: 400;
    }


    .photographer-count span {
        display: block;
        color: var(--home-muted);
        font-size: 12px;
        margin-top: 5px;
    }


/* =========================================================
   FILTER
========================================================= */

.editorial-filter {
    position: sticky;
    top: 100px;
    padding: 28px;
    border: 1px solid var(--home-border);
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(8px);
}


.editorial-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--home-border);
}


    .editorial-filter-header h3 {
        margin: 0;
        font-family: var(--home-serif);
        font-size: 30px;
        font-weight: 400;
    }


    .editorial-filter-header a {
        color: var(--home-muted);
        font-size: 12px;
    }


.filter-group {
    margin-bottom: 25px;
}


.filter-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--home-muted);
    margin-bottom: 9px;
}


.editorial-filter
.form-control,
.editorial-filter
.form-select {
    border: 0;
    border-bottom: 1px solid var(--home-border);
    border-radius: 0;
    background: transparent;
    padding: 9px 0;
    box-shadow: none !important;
}


.editorial-filter-button {
    width: 100%;
    margin-top: 12px;
    border: 0;
    background: var(--home-brown-dark);
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .25s ease;
}


    .editorial-filter-button:hover {
        background: var(--home-gold);
    }


/* =========================================================
   PHOTOGRAPHER GRID
========================================================= */

.photographer-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 55px 30px;
}


.photographer-editorial-card {
    min-width: 0;
}


.photographer-editorial-image {
    position: relative;
    display: block;
    height: 440px;
    overflow: hidden;
    background: #ddd;
}


.photographer-editorial-card-large
.photographer-editorial-image {
    height: 560px;
}


.photographer-editorial-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.8,.2,1);
}


.photographer-editorial-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.48), transparent 45% );
}


.photographer-editorial-card:hover
.photographer-editorial-image img {
    transform: scale(1.045);
}


.photographer-verified {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    background: rgba(255,255,255,.91);
    color: var(--home-text);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
}


    .photographer-verified span {
        margin-right: 4px;
    }


.photographer-view {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: .25s ease;
}


.photographer-editorial-card:hover
.photographer-view {
    opacity: 1;
    transform: translateY(0);
}


.photographer-editorial-body {
    padding-top: 22px;
}


.photographer-editorial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}


    .photographer-editorial-author > img {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        object-fit: cover;
    }


.photographer-editorial-name {
    display: block;
    color: var(--home-text);
    text-decoration: none;
    font-family: var(--home-serif);
    font-size: 25px;
    line-height: 1.1;
}


.photographer-rating {
    margin-top: 4px;
    font-size: 12px;
}


    .photographer-rating span {
        color: #c59841;
    }


    .photographer-rating small {
        color: var(--home-muted);
    }


.photographer-summary {
    min-height: 52px;
    margin: 20px 0 14px;
    color: var(--home-muted);
    line-height: 1.65;
}


.photographer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}


    .photographer-tags span {
        padding: 6px 10px;
        border: 1px solid var(--home-border);
        font-size: 10px;
        letter-spacing: .04em;
    }


.photographer-card-bottom {
    margin-top: 23px;
    padding-top: 18px;
    border-top: 1px solid var(--home-border);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}


.photographer-location {
    color: var(--home-muted);
    font-size: 12px;
}


.photographer-price {
    text-align: right;
}


    .photographer-price small {
        display: block;
        color: var(--home-muted);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .08em;
    }


    .photographer-price strong {
        display: block;
        font-family: var(--home-serif);
        font-size: 22px;
        font-weight: 400;
    }


/* =========================================================
   PAGINATION
========================================================= */

.editorial-pagination {
    margin-top: 75px;
}


    .editorial-pagination
    .page-link {
        border-radius: 50% !important;
        width: 42px;
        height: 42px;
        margin: 0 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--home-border);
        color: var(--home-text);
        background: transparent;
    }


    .editorial-pagination
    .page-item.active
    .page-link {
        background: var(--home-brown-dark);
        border-color: var(--home-brown-dark);
        color: #fff;
    }


/* =========================================================
   EMPTY
========================================================= */

.home-empty {
    text-align: center;
    padding: 100px 30px;
    border: 1px solid var(--home-border);
}


    .home-empty h3 {
        font-family: var(--home-serif);
        font-size: clamp( 32px, 4vw, 48px );
        font-weight: 400;
    }


    .home-empty p {
        color: var(--home-muted);
    }


/* =========================================================
   PROCESS
========================================================= */

.home-process-section {
    padding: clamp( 90px, 11vw, 165px ) 0;
    background: var(--home-brown-dark);
    color: #fff;
}


.process-heading {
    max-width: 460px;
}


    .process-heading h2 {
        font-family: var(--home-serif);
        font-size: clamp( 46px, 5.5vw, 64px );
        font-weight: 400;
        line-height: 1;
        letter-spacing: -.04em;
    }


        .process-heading h2 em {
            color: var(--home-gold-light);
        }


    .process-heading p {
        color: rgba(255,255,255,.6);
        line-height: 1.8;
        margin-top: 25px;
    }


.process-list {
    border-top: 1px solid rgba(255,255,255,.18);
}


.process-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 34px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}


.process-index {
    color: var(--home-gold-light);
    font-size: 12px;
}


.process-item h3 {
    font-family: var(--home-serif);
    font-size: clamp( 28px, 3vw, 42px );
    font-weight: 400;
    margin-bottom: 8px;
}


.process-item p {
    color: rgba(255,255,255,.6);
    margin: 0;
}


/* =========================================================
   BLOG
========================================================= */

.home-blog-editorial {
    padding: clamp( 90px, 10vw, 150px ) 0;
    background: var(--home-cream);
}


/* =========================================================
   FINAL CTA
========================================================= */

.home-final-cta {
    min-height: 76vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}


.home-final-cta-bg {
    position: absolute;
    inset: 0;
    background: url("/Content/Images/Cover.png") center / cover no-repeat;
}


.home-final-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 18, 14, .68);
}


.home-final-cta
.container {
    position: relative;
    z-index: 2;
}


.home-final-cta-content {
    max-width: 880px;
    margin: auto;
    color: #fff;
}


    .home-final-cta-content h2 {
        font-family: var(--home-serif);
        font-size: clamp( 54px, 7vw, 100px );
        font-weight: 400;
        letter-spacing: -.045em;
    }


        .home-final-cta-content h2 em {
            display: block;
            color: var(--home-gold-light);
        }


    .home-final-cta-content p {
        max-width: 560px;
        margin: 30px auto 38px;
        color: rgba(255,255,255,.72);
        font-size: 18px;
        line-height: 1.7;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@@media (max-width: 1199px) {

    .quick-search-form {
        grid-template-columns: 1fr 1fr;
    }


    .quick-search-item {
        border-bottom: 1px solid var(--home-border);
    }


    .quick-search-submit {
        grid-column: span 2;
    }


    .btn-search-large {
        width: 100%;
        min-height: 60px;
    }
}


@@media (max-width: 991px) {

    .hero-editorial-overlay {
        background: linear-gradient( rgba(20,15,12,.57), rgba(20,15,12,.72) );
    }


    .hero-scroll {
        display: none;
    }


    .section-heading-editorial {
        align-items: flex-start;
        flex-direction: column;
    }


    .story-content {
        padding-left: 0;
    }


    .editorial-filter {
        position: static;
        margin-bottom: 30px;
    }


    .photographer-editorial-grid {
        gap: 45px 24px;
    }


    .process-heading {
        margin-bottom: 60px;
    }
}


@@media (max-width: 767px) {

    .hero-editorial-content
    .row {
        padding-top: 120px;
        padding-bottom: 70px;
    }


    .hero-editorial-title {
        font-size: clamp( 52px, 16vw, 80px );
    }


    .quick-search-section {
        margin-top: 0;
    }


    .quick-search-wrapper {
        padding: 30px 20px;
    }


    .quick-search-heading {
        align-items: flex-start;
        flex-direction: column;
    }


    .quick-search-form {
        grid-template-columns: 1fr;
    }


    .quick-search-item {
        border-right: 0;
        border-bottom: 1px solid var(--home-border);
    }


    .quick-search-submit {
        grid-column: auto;
    }


    .concept-item {
        grid-template-columns: 40px 1fr auto;
        gap: 10px;
    }


    .concept-arrow {
        width: 40px;
        height: 40px;
    }


    .photographer-editorial-grid {
        grid-template-columns: 1fr;
    }


    .photographer-editorial-image,
    .photographer-editorial-card-large
    .photographer-editorial-image {
        height: 500px;
    }


    .photographer-count {
        text-align: left;
    }


    .story-image {
        height: 560px;
    }


    .home-final-cta {
        min-height: 630px;
    }
}


@@media (max-width: 575px) {

    .hero-editorial-title {
        font-size: 51px;
    }


    .hero-editorial-description {
        font-size: 16px;
    }


    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }


    .btn-hero-primary {
        width: 100%;
        justify-content: space-between;
    }


    .photographer-editorial-image,
    .photographer-editorial-card-large
    .photographer-editorial-image {
        height: 420px;
    }


    .photographer-card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }


    .photographer-price {
        text-align: left;
    }


    .process-item {
        grid-template-columns: 45px 1fr;
    }
}
