@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg: #100708;
    --panel: #170a0c;
    --red: #8f1820;
    --red2: #bd3038;
    --cream: #eee5da;
    --muted: #aaa09a;
    --line: #432427;
    --gold: #c7a27c;
    --white: #fffaf5
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--cream);
    font-family: Inter, Arial, sans-serif;
    font-weight: 300;
    overflow-x: hidden
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E")
}

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

img {
    max-width: 100%;
    display: block
}
#opa{
  opacity: 0;
  padding: 10px;
}

.nav {
    position: fixed;
    z-index: 40;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 4vw;
    background: linear-gradient(180deg, rgba(8, 2, 2, .82), transparent);
    backdrop-filter: blur(3px)
}

.logo {
    font-size: 11px;
    letter-spacing: .24em;
    font-weight: 500
}

.navlinks {
    display: flex;
    gap: 28px;
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    align-items: center
}

.navlinks a {
    opacity: .82;
    transition: .25s
}

.navlinks a:hover,
.navlinks a.active {
    opacity: 1;
    color: #e3a394
}

.menu {
    display: none;
    border: 0;
    background: none;
    color: var(--cream);
    font: inherit;
    font-size: 22px
}

.page-hero {
    min-height: 70vh;
    padding: 160px 8vw 90px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgba(141, 25, 35, .28), transparent 45%)
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(70px, 12vw, 170px);
    font-weight: 400;
    line-height: .72;
    letter-spacing: -.05em;
    margin: 18px 0
}

.eyebrow,
.kicker {
    font-size: 9px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold)
}

.lede {
    max-width: 650px;
    color: #b9aea5;
    line-height: 1.9;
    font-size: 14px
}

.section {
    padding: 120px 7vw
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 50px
}

.section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(50px, 7vw, 100px);
    font-weight: 400;
    line-height: .8;
    margin: 12px 0
}

.number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: #6c2529
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #734044;
    padding: 15px 24px;
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    transition: .3s;
    cursor: pointer;
    background: transparent;
    color: var(--cream)
}

.btn:hover {
    background: var(--red2);
    border-color: var(--red2)
}

.btn.primary {
    background: var(--red);
    border-color: var(--red)
}

.btn.primary:hover {
    background: #a52129
}

.btn-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.redline {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red2), transparent);
    margin: 0 7vw
}

/* Home */
.home-hero {
    height: 100svh;
    min-height: 680px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden
}

.home-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroIn 2s ease both
}

.home-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 2, 2, .68), rgba(20, 3, 5, .08) 45%, rgba(10, 2, 2, .93));
    z-index: 1
}

.hero-copy {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    animation: rise 1.5s .2s ease both
}

.hero-copy h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(70px, 12vw, 165px);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: .72;
    margin: 20px 0
}

.hero-copy p {
    font-size: 10px;
    line-height: 1.9;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #d8cec3
}

.scroll {
    position: absolute;
    bottom: 28px;
    z-index: 2;
    font-size: 9px;
    letter-spacing: .3em;
    text-transform: uppercase
}

.intro {
    padding: 150px 8vw 120px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8vw;
    align-items: end
}

.intro h2,
.manifesto h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: .9
}

.intro h2 {
    font-size: clamp(45px, 6vw, 88px);
    margin: 18px 0 0
}

.intro p {
    max-width: 650px;
    color: #b9aea5;
    font-size: 15px;
    line-height: 1.9;
    margin: 0
}

.gallery {
    padding: 0 3vw 120px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px
}

.frame {
    margin: 0;
    overflow: hidden;
    background: #180c0d;
    position: relative
}

.frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.2, .7, .2, 1), filter 1s
}

.frame:hover img {
    transform: scale(1.035);
    filter: saturate(1.08)
}

.frame:nth-child(1) {
    grid-column: 1/9;
    height: 82vh
}

.frame:nth-child(2) {
    grid-column: 9/13;
    height: 62vh;
    margin-top: 18vh
}

.frame:nth-child(3) {
    grid-column: 2/7;
    height: 72vh
}

.frame:nth-child(4) {
    grid-column: 7/13;
    height: 72vh
}

.frame:nth-child(5) {
    grid-column: 1/13;
    height: 76vh
}

.frame:nth-child(6) {
    grid-column: 1/6;
    height: 72vh
}

.frame:nth-child(7) {
    grid-column: 6/13;
    height: 88vh;
    margin-top: 10vh
}

.frame:nth-child(n+8) {
    grid-column: span 4;
    height: 70vh
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.card {
    min-height: 390px;
    border: 1px solid var(--line);
    padding: 28px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(40, 7, 10, .15), rgba(7, 2, 3, .96))
}

.card:before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 50% 20%, rgba(181, 42, 50, .35), transparent 48%);
    transition: transform .8s
}

.card:hover:before {
    transform: scale(1.15)
}

.card>* {
    position: relative
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 400;
    margin: 0 0 8px
}

.card p {
    font-size: 9px;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: #a89e96;
    margin: 0
}

.manifesto {
    padding: 150px 8vw;
    text-align: center;
    background: linear-gradient(180deg, var(--bg), #1b080a, var(--bg))
}

.manifesto h3 {
    font-size: clamp(50px, 7vw, 105px);
    max-width: 1100px;
    margin: auto
}

.manifesto em {
    color: #bd8e74;
    font-style: normal
}

.services {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 0 5vw;
    padding: 45px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    gap: 12px
}

.services span {
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #c7bcb1
}

.process {
    padding: 130px 8vw;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8vw
}

.process h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    font-weight: 400;
    line-height: .8;
    margin: 12px 0
}

.steps {
    border-top: 1px solid var(--line)
}

.step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line)
}

.step b {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 400;
    color: #8c3439
}

.step h3 {
    font-size: 14px;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin: 0 0 9px
}

.step p {
    font-size: 13px;
    line-height: 1.7;
    color: #9e958e;
    margin: 0;
    max-width: 650px
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border: 1px solid var(--line);
    cursor: pointer
}

.portfolio-item.wide {
    grid-column: span 8
}

.portfolio-item.small {
    grid-column: span 4
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s
}

.portfolio-item:hover img {
    transform: scale(1.04);
    filter: saturate(1.08)
}

.portfolio-label {
    position: absolute;
    inset: auto 0 0;
    padding: 70px 28px 24px;
    background: linear-gradient(transparent, rgba(8, 2, 2, .9))
}

.portfolio-label h3 {
    font: 400 38px 'Cormorant Garamond', serif;
    margin: 0
}

.portfolio-label span {
    font-size: 8px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #b9aaa1
}

/* About */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9vw;
    align-items: start
}

.about-quote {
    font: 400 clamp(48px, 6vw, 82px)/.9 'Cormorant Garamond', serif
}

.about-copy {
    color: #b7ada5;
    line-height: 1.9;
    font-size: 14px
}

.facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-top: 70px
}

.fact {
    padding: 35px 15px;
    border-right: 1px solid var(--line)
}

.fact:last-child {
    border-right: 0
}

.fact strong {
    font: 400 50px 'Cormorant Garamond', serif;
    color: var(--cream)
}

.fact span {
    display: block;
    font-size: 8px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #9e958e;
    margin-top: 5px
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw
}

.contact-card {
    border-top: 1px solid var(--line);
    padding-top: 28px
}

.contact-card h3 {
    font: 400 40px 'Cormorant Garamond', serif;
    margin: 0 0 14px
}

.contact-card p,
.contact-card a {
    color: #afa59d;
    line-height: 1.8;
    font-size: 13px
}

.socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px
}

.socials a {
    border: 1px solid var(--line);
    padding: 11px 14px;
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase
}

/* Booking */
.booking-shell {
    max-width: 1100px;
    margin: auto
}

.booking-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    margin-bottom: 55px
}

.booking-form {
    border: 1px solid var(--line);
    padding: 45px;
    background: linear-gradient(145deg, rgba(117, 19, 29, .12), rgba(255, 255, 255, .015))
}

.form-section {
    padding: 0 0 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--line)
}

.form-section:last-of-type {
    border-bottom: 0;
    margin-bottom: 0
}

.form-section h3 {
    font: 400 35px 'Cormorant Garamond', serif;
    margin: 0 0 25px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #b5aaa1
}

.field input,
.field select,
.field textarea {
    width: 100%;
    background: #0d0607;
    color: var(--cream);
    border: 1px solid #4a292c;
    padding: 14px 13px;
    font: 300 13px Inter, Arial, sans-serif;
    outline: none;
    border-radius: 0
}

.field textarea {
    min-height: 120px;
    resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #a13b43;
    box-shadow: 0 0 0 2px rgba(161, 59, 67, .12)
}

.field small {
    font-size: 8px;
    color: #817872
}

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #a99f97;
    font-size: 10px;
    line-height: 1.6
}

.check input {
    margin-top: 3px;
    accent-color: var(--red2)
}

.success {
    display: none;
    margin-top: 25px;
    padding: 25px;
    border: 1px solid #5d3034;
    background: rgba(105, 19, 28, .22)
}

.success.show {
    display: block
}

.success h3 {
    font: 400 34px 'Cormorant Garamond', serif;
    margin: 0 0 8px
}

.success p {
    color: #b9aea5;
    line-height: 1.7;
    font-size: 12px
}

.error {
    color: #e18a83;
    font-size: 10px;
    margin-top: 8px;
    display: none
}

.error.show {
    display: block
}

footer {
    padding: 30px 5vw;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    color: #7f7771;
    font-size: 8px;
    letter-spacing: .16em;
    text-transform: uppercase
}

@keyframes heroIn {
    from {
        transform: scale(1.08);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s ease, transform .9s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media(max-width:760px) {
    .nav {
        padding: 16px 18px
    }

    .navlinks {
        display: none
    }

    .menu {
        display: block
    }

    .nav.open .navlinks {
        display: flex;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 18px;
        background: rgba(15, 5, 7, .97);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        border-top: 1px solid var(--line)
    }

    .page-hero {
        min-height: 62vh;
        padding: 130px 24px 65px
    }

    .page-hero h1 {
        font-size: 70px
    }

    .lede {
        font-size: 12px
    }

    .section {
        padding: 85px 24px
    }

    .section-head {
        margin-bottom: 35px
    }

    .section-head h2 {
        font-size: 58px
    }

    .number {
        font-size: 58px
    }

    .intro {
        display: block;
        padding: 90px 24px 75px
    }

    .intro p {
        margin-top: 32px;
        font-size: 13px
    }

    .gallery {
        display: block;
        position: relative;
        height: 78svh;
        padding: 0 0 65px;
        overflow: hidden
    }

    .frame,
    .frame:nth-child(n) {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100% !important;
        margin: 0 !important;
        opacity: 0;
        visibility: hidden;
        transform: scale(1.025);
        transition: opacity 1s ease, transform 1.15s ease, visibility 0s linear 1s
    }

    .frame.mobile-active {
        opacity: 1;
        visibility: visible;
        transform: scale(1)
    }

    .gallery-counter {
        position: absolute;
        z-index: 4;
        bottom: 18px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 8px;
        letter-spacing: .3em;
        color: #d0c6bc;
        text-shadow: 0 1px 8px #000
    }

    .cards {
        display: flex;
        overflow: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        margin-right: -24px
    }

    .card {
        flex: 0 0 84%;
        min-height: 380px;
        scroll-snap-align: center
    }

    .manifesto {
        padding: 100px 24px
    }

    .manifesto h3 {
        font-size: 55px
    }

    .services {
        margin: 0 20px;
        grid-template-columns: 1fr 1fr;
        padding: 30px 0;
        gap: 22px 8px
    }

    .process {
        display: block;
        padding: 90px 24px
    }

    .process h2 {
        font-size: 58px;
        margin-bottom: 55px
    }

    .step {
        grid-template-columns: 50px 1fr
    }

    .portfolio-grid {
        display: block
    }

    .portfolio-item,
    .portfolio-item.wide,
    .portfolio-item.small {
        min-height: 65vh;
        margin-bottom: 12px
    }

    .about-layout,
    .contact-grid,
    .booking-intro {
        display: block
    }

    .about-quote {
        font-size: 55px;
        margin-bottom: 40px
    }

    .facts {
        grid-template-columns: 1fr;
        margin-top: 50px
    }

    .fact {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .fact:last-child {
        border-bottom: 0
    }

    .booking-form {
        padding: 24px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .field.full {
        grid-column: auto
    }

    .booking-intro {
        margin-bottom: 35px
    }

    .booking-intro .lede {
        margin-top: 25px
    }

    footer {
        padding: 22px 20px;
        display: block;
        line-height: 2.3
    }

    .home-hero {
        min-height: 600px
    }

    .hero-copy h1 {
        font-size: 72px
    }

    .hero-copy p {
        font-size: 9px
    }
}

/* FILMIC.WEDFRAMES brand logo */
.logo {
    display: flex;
    align-items: center;
    width: 132px;
    height: 48px;
    overflow: visible;
    flex: 0 0 auto
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center
}

.hero-logo {
    width: min(620px, 72vw);
    height: auto;
    margin: 0 auto 18px;
    display: block;
    opacity: 0;
    transform: translateY(22px) scale(.97);
    animation: logoReveal 1.35s cubic-bezier(.2, .7, .2, 1) .15s forwards;
    filter: drop-shadow(0 12px 34px rgba(99, 16, 23, .22))
}

.footer-logo {
    width: 96px;
    height: auto;
    max-height: 38px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 12px;
    opacity: .82
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(.97);
        filter: blur(5px) drop-shadow(0 12px 34px rgba(99, 16, 23, .22))
    }

    55% {
        opacity: 1;
        filter: blur(0) drop-shadow(0 12px 34px rgba(99, 16, 23, .22))
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0) drop-shadow(0 12px 34px rgba(99, 16, 23, .22))
    }
}

@media(max-width:760px) {
    .logo {
        width: 104px;
        height: 38px
    }

    .hero-logo {
        width: min(88vw, 520px);
        margin-bottom: 14px
    }

    .footer-logo {
        width: 88px;
        margin-bottom: 8px
    }
}