:root {
    --red: #c8102e;
    --red-dark: #970d24;

    --black: #080808;
    --dark: #111111;
    --dark-soft: #191919;

    --white: #ffffff;
    --cream: #f5f1eb;
    --beige: #e7dfd5;

    --gray: #a8a8a8;

    --border-dark: rgba(255, 255, 255, 0.13);
    --border-light: rgba(0, 0, 0, 0.13);

    --page-width: 1380px;
}


/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;

    background: var(--black);
    color: var(--white);

    font-family: "DM Sans", sans-serif;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.section-container,
.nav-container {
    width: min(90%, var(--page-width));
    margin-inline: auto;
}


/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;

    border-bottom: 1px solid transparent;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        backdrop-filter 0.35s ease;
}

.header.scrolled {
    border-color: var(--border-dark);

    background: rgba(8, 8, 8, 0.92);

    backdrop-filter: blur(18px);
}

.nav-container {
    min-height: 96px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 120px;
    max-height: 72px;

    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navigation > a,
.dropdown-toggle {
    position: relative;

    padding: 10px 0;

    border: 0;

    background: transparent;
    color: rgba(255, 255, 255, 0.78);

    font-size: 0.71rem;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    cursor: pointer;

    transition: color 0.3s ease;
}

.navigation > a:not(.nav-booking)::after,
.dropdown-toggle::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 1px;

    width: 0;
    height: 1px;

    background: var(--red);

    transition: width 0.3s ease;
}

.navigation > a:hover,
.navigation > a.active,
.dropdown-toggle:hover {
    color: var(--white);
}

.navigation > a:hover::after,
.navigation > a.active::after,
.dropdown-toggle:hover::after {
    width: 100%;
}

.nav-booking {
    padding: 13px 19px !important;

    border: 1px solid rgba(255, 255, 255, 0.45);

    color: var(--white) !important;

    transition:
        background 0.3s ease,
        border-color 0.3s ease !important;
}

.nav-booking:hover {
    border-color: var(--red);
    background: var(--red);
}


/* Dropdown */

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle i {
    font-size: 0.58rem;

    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;

    width: 265px;

    padding: 13px;

    border: 1px solid var(--border-dark);

    background: rgba(14, 14, 14, 0.98);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45);

    transform:
        translateX(-50%)
        translateY(10px);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    transform:
        translateX(-50%)
        translateY(0);

    opacity: 1;
    visibility: visible;
}

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;

    padding: 11px 13px;

    color: var(--gray);

    font-family: "Playfair Display", serif;
    font-size: 1rem;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        padding-left 0.3s ease;
}

.dropdown-menu a:hover {
    padding-left: 18px;

    background: rgba(200, 16, 46, 0.12);
    color: var(--white);
}


/* Mobile menu */

.menu-toggle {
    display: none;

    position: relative;
    z-index: 1200;

    width: 35px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 1px;

    margin: 8px 0;

    background: var(--white);

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* Hero */

.hero {
    min-height: 100vh;

    padding: 150px max(5%, calc((100% - var(--page-width)) / 2)) 70px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 95px;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            #080808 0%,
            #101010 52%,
            #17080c 100%
        );
}

.hero-photo-side {
    position: relative;

    min-height: 670px;
}

.hero-photo-frame {
    position: absolute;
    inset: 0 45px 0 0;

    overflow: hidden;

    border-radius:
        210px 210px 22px 22px;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.5);
}

.hero-photo-frame img {
    height: 100%;

    object-fit: cover;
    object-position: center 22%;

    transition: transform 0.7s ease;
}

.hero-photo-frame:hover img {
    transform: scale(1.035);
}

.hero-photo-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.46),
            transparent 48%
        );
}

.photo-decoration {
    position: absolute;
    right: 0;
    bottom: 45px;

    width: 155px;
    height: 155px;

    border: 1px solid var(--red);
    border-radius: 50%;

    transform: translateX(45%);
}

.photo-decoration::before {
    content: "";

    position: absolute;
    inset: 18px;

    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: inherit;
}

.vertical-text {
    position: absolute;
    right: -65px;
    top: 50%;

    color: rgba(255, 255, 255, 0.42);

    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;

    transform:
        translateY(-50%)
        rotate(90deg);
}


/* Hero content */

.hero-content-side {
    max-width: 750px;
}

.hero-small-title {
    margin-bottom: 26px;

    display: flex;
    align-items: center;

    gap: 15px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-small-title span {
    width: 52px;
    height: 1px;

    background: var(--red);
}

.hero h1 {
    color: var(--white);

    font-family: "Playfair Display", serif;
    font-size: clamp(4.3rem, 7.4vw, 8rem);

    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -4px;
}

.hero h1 em {
    display: block;

    margin-top: 13px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.hero-description {
    max-width: 620px;

    margin: 32px 0 37px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.94rem;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.primary-button,
.secondary-button,
.booking-button {
    min-height: 56px;

    padding: 0 25px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    font-size: 0.75rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.primary-button {
    background: var(--red);
    color: var(--white);
}

.primary-button:hover {
    background: var(--white);
    color: var(--black);

    transform: translateY(-4px);
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.32);

    color: var(--white);
}

.secondary-button:hover {
    border-color: var(--white);

    background: var(--white);
    color: var(--black);

    transform: translateY(-4px);
}

.hero-details {
    margin-top: 58px;
    padding-top: 27px;

    display: flex;

    gap: 55px;

    border-top: 1px solid var(--border-dark);
}

.hero-details div {
    display: flex;
    align-items: center;

    gap: 13px;
}

.hero-details strong {
    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 2.1rem;
    font-weight: 400;
}

.hero-details span {
    max-width: 115px;

    color: var(--gray);

    font-size: 0.68rem;
    line-height: 1.5;
}


/* Categories */

.categories-section {
    padding: 135px 0;

    background: var(--cream);
    color: var(--black);
}

.section-heading {
    margin-bottom: 55px;

    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 40px;
}

.section-label {
    margin-bottom: 16px;

    color: var(--red);

    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h2,
.about-title h2,
.booking-layout h2 {
    max-width: 800px;

    font-family: "Playfair Display", serif;
    font-size: clamp(3.2rem, 5.5vw, 6rem);

    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -3px;
}

.section-heading h2 em,
.about-title h2 em,
.booking-layout h2 em {
    display: block;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.text-link,
.dark-text-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--black);

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-link span,
.dark-text-link span {
    color: var(--red);
}


/* Category cards */

.category-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;

    grid-auto-rows: 370px;

    gap: 17px;
}

.category-card {
    position: relative;

    overflow: hidden;

    background: var(--dark);
}

.category-card-large {
    grid-row: span 2;
}

.category-card img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.75s ease;
}

.category-card:hover img {
    transform: scale(1.07);
}

.category-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88),
            transparent 62%
        );
}

.category-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 24px;

    display: flex;
    justify-content: space-between;
    align-items: end;
}

.category-content > span {
    color: var(--red);

    font-size: 0.68rem;
    font-weight: 600;
}

.category-content h3 {
    color: var(--white);

    font-family: "Playfair Display", serif;
    font-size: 1.7rem;

    font-weight: 500;
    line-height: 1;
    text-align: right;
}

.category-content h3 em {
    display: block;

    color: rgba(255, 255, 255, 0.67);

    font-family: "Italiana", serif;
    font-size: 1.1rem;
    font-weight: 400;
}


/* About */

.about-preview {
    padding: 135px 0;

    background: var(--white);
    color: var(--black);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 0.75fr;

    gap: 115px;
    align-items: start;
}

.about-copy {
    padding-top: 50px;
}

.about-copy p {
    margin-bottom: 20px;

    color: #666666;

    font-size: 0.93rem;
    line-height: 1.9;
}

.dark-text-link {
    margin-top: 14px;
}


/* Booking */

.booking-section {
    position: relative;

    padding: 115px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--red-dark),
            var(--red)
        );
}

.booking-background-text {
    position: absolute;
    right: -20px;
    top: 50%;

    color: rgba(255, 255, 255, 0.05);

    font-family: "Italiana", serif;
    font-size: 16rem;

    transform: translateY(-50%);
}

.booking-layout {
    position: relative;

    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 0.6fr;

    gap: 100px;
    align-items: center;
}

.light-label {
    color: rgba(255, 255, 255, 0.7);
}

.booking-layout h2 em {
    color: var(--white);
}

.booking-action p {
    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.9rem;
    line-height: 1.8;
}

.booking-button {
    background: var(--white);
    color: var(--red);
}

.booking-button:hover {
    background: var(--black);
    color: var(--white);

    transform: translateY(-4px);
}


/* Footer */

.footer {
    padding-top: 90px;

    background: #070707;
}

.footer-top {
    padding-bottom: 65px;

    display: grid;
    grid-template-columns: 1.8fr 0.7fr 0.8fr 1fr;

    gap: 65px;
}

.footer-brand img {
    width: 145px;

    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 380px;

    color: #858585;

    font-size: 0.84rem;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 9px;

    color: var(--white);

    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 500;
}

.footer-column a {
    width: fit-content;

    color: #888888;

    font-size: 0.79rem;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: var(--red);

    transform: translateX(4px);
}

.footer-bottom {
    padding: 22px 0;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid var(--border-dark);

    color: #666666;

    font-size: 0.7rem;
}


/* WhatsApp */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;

    z-index: 950;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #25d366;
    color: #08140b;

    font-size: 1.35rem;

    box-shadow:
        0 16px 45px rgba(0, 0, 0, 0.4);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform:
        translateY(-6px)
        scale(1.04);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.52);
}


/* Tablet */

@media (max-width: 1050px) {
    .menu-toggle {
        display: block;
    }

    .navigation {
        position: fixed;
        top: 0;
        right: -100%;

        width: min(86%, 410px);
        height: 100vh;

        padding: 125px 40px 50px;

        flex-direction: column;
        align-items: stretch;

        gap: 7px;

        overflow-y: auto;

        border-left: 1px solid var(--border-dark);

        background: rgba(8, 8, 8, 0.99);

        transition: right 0.38s ease;
    }

    .navigation.open {
        right: 0;
    }

    .navigation > a,
    .dropdown-toggle {
        width: 100%;

        padding: 13px 0;

        justify-content: space-between;

        font-family: "Playfair Display", serif;
        font-size: 1.4rem;
        letter-spacing: 0;
        text-transform: none;
    }

    .nav-booking {
        margin-top: 20px;

        text-align: center;
    }

    .dropdown-menu {
        position: static;

        width: 100%;
        max-height: 0;

        padding: 0;

        overflow: hidden;

        border: 0;

        background: transparent;

        box-shadow: none;

        transform: none;

        opacity: 1;
        visibility: visible;

        transition:
            max-height 0.35s ease,
            padding 0.35s ease;
    }

    .nav-dropdown:hover .dropdown-menu {
        max-height: 0;
        padding: 0;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;

        padding: 8px 0 8px 15px;
    }

    .nav-dropdown:hover .dropdown-toggle i {
        transform: none;
    }

    .nav-dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .menu-toggle.open span:first-child {
        transform:
            translateY(4.5px)
            rotate(45deg);
    }

    .menu-toggle.open span:last-child {
        transform:
            translateY(-4.5px)
            rotate(-45deg);
    }

    .hero {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .hero-photo-side {
        width: min(100%, 720px);

        margin-inline: auto;
    }

    .hero-content-side {
        margin-inline: auto;

        text-align: center;
    }

    .hero-small-title,
    .hero-actions,
    .hero-details {
        justify-content: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .vertical-text {
        display: none;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-card-large {
        grid-row: span 1;
    }

    .about-layout,
    .booking-layout {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-copy {
        padding-top: 0;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* Mobile */

@media (max-width: 650px) {
    .nav-container {
        min-height: 80px;
    }

    .logo {
        width: 95px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 65px;

        gap: 50px;
    }

    .hero-photo-side {
        min-height: 500px;
    }

    .hero-photo-frame {
        inset: 0;

        border-radius:
            140px 140px 15px 15px;
    }

    .photo-decoration {
        right: 8px;
        bottom: -22px;

        width: 110px;
        height: 110px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 17vw, 5rem);

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 0.87rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-details {
        gap: 20px;
    }

    .hero-details div {
        flex-direction: column;

        gap: 4px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 420px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2,
    .about-title h2,
    .booking-layout h2 {
        font-size: 3.65rem;

        letter-spacing: -2px;
    }

    .categories-section,
    .about-preview {
        padding: 95px 0;
    }

    .booking-section {
        padding: 85px 0;
    }

    .booking-background-text {
        font-size: 8rem;
    }

    .booking-button {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }
}

/* Services hero */

.services-hero {
    min-height: 100vh;

    padding:
        145px max(6%, calc((100% - var(--page-width)) / 2))
        90px;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    gap: 95px;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #080808 0%,
            #111111 55%,
            #1b080d 100%
        );
}


/* Left content */

.services-hero-content {
    max-width: 720px;
}

.services-hero-content h1 {
    margin-bottom: 30px;

    font-family: "Playfair Display", serif;
    font-size: clamp(4rem, 7vw, 7.2rem);

    font-weight: 500;
    line-height: 0.91;
    letter-spacing: -4px;
}

.services-hero-content h1 em {
    display: block;

    margin-top: 12px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.services-hero-content > p {
    max-width: 610px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.67);

    font-size: 0.93rem;
    line-height: 1.9;
}

.services-hero-content .primary-button {
    width: fit-content;
}


/* Right photo area */

.services-photo-side {
    position: relative;

    min-height: 660px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.services-photo-frame {
    position: relative;

    width: min(100%, 500px);
    height: 620px;

    animation:
        servicesPhotoFloat
        5s ease-in-out infinite;
}

.services-photo-frame img {
    position: absolute;
    inset: 24px 24px 24px 24px;

    z-index: 3;

    width: calc(100% - 48px);
    height: calc(100% - 48px);

    object-fit: cover;
    object-position: center 20%;

    box-shadow:
        0 35px 85px rgba(0, 0, 0, 0.48);

    transition: transform 0.6s ease;
}

.services-photo-frame:hover img {
    transform: scale(1.025);
}


/* White offset frame */

.services-frame-back {
    position: absolute;

    top: 0;
    left: 0;

    z-index: 1;

    width: calc(100% - 55px);
    height: calc(100% - 55px);

    border: 1px solid rgba(255, 255, 255, 0.5);

    transform: translate(-18px, -18px);
}


/* Red outer frame */

.services-frame-border {
    position: absolute;

    right: 0;
    bottom: 0;

    z-index: 2;

    width: calc(100% - 55px);
    height: calc(100% - 55px);

    border: 2px solid var(--red);

    transform: translate(18px, 18px);
}


/* Caption */

.services-photo-caption {
    position: absolute;
    left: 45px;
    bottom: 45px;

    z-index: 5;

    padding: 14px 18px;

    border-left: 3px solid var(--red);

    background: rgba(8, 8, 8, 0.78);

    backdrop-filter: blur(10px);
}

.services-photo-caption span {
    display: block;

    margin-bottom: 3px;

    color: var(--red);

    font-size: 0.62rem;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-photo-caption strong {
    color: var(--white);

    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 500;
}


/* Floating movement */

@keyframes servicesPhotoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}


/* Tablet */

@media (max-width: 1000px) {
    .services-hero {
        grid-template-columns: 1fr;

        gap: 70px;

        text-align: center;
    }

    .services-hero-content {
        margin-inline: auto;
    }

    .services-hero-content > p {
        margin-inline: auto;
    }

    .services-hero-content .primary-button {
        margin-inline: auto;
    }

    .services-photo-side {
        min-height: 620px;
    }
}


/* Mobile */

@media (max-width: 650px) {
    .services-hero {
        padding:
            120px 6%
            75px;

        gap: 55px;
    }

    .services-hero-content h1 {
        font-size: 4.1rem;
        letter-spacing: -2px;
    }

    .services-photo-side {
        min-height: 500px;
    }

    .services-photo-frame {
        width: 88%;
        height: 500px;
    }

    .services-photo-frame img {
        inset: 18px;

        width: calc(100% - 36px);
        height: calc(100% - 36px);
    }

    .services-frame-back {
        transform: translate(-10px, -10px);
    }

    .services-frame-border {
        transform: translate(10px, 10px);
    }

    .services-photo-caption {
        left: 32px;
        bottom: 32px;
    }
}


/* Service rows */

.services-list-section {
    padding: 30px 0 125px;

    background: var(--cream);
    color: var(--black);
}

.services-list {
    border-top: 1px solid var(--border-light);
}

.service-row {
    padding: 48px 0;

    display: grid;
    grid-template-columns: 80px 1fr auto;

    gap: 45px;
    align-items: start;

    border-bottom: 1px solid var(--border-light);
}

.service-number {
    padding-top: 12px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 1.25rem;
}

.service-content h2 {
    margin-bottom: 17px;

    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 4.8vw, 5rem);

    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -2px;
}

.service-content h2 em {
    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.service-content > p {
    max-width: 680px;

    margin-bottom: 22px;

    color: #626262;

    font-size: 0.9rem;
    line-height: 1.8;
}

.service-content ul {
    list-style: none;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px 25px;
}

.service-content li {
    color: #555555;

    font-size: 0.78rem;
}

.service-content li::before {
    content: "—";

    margin-right: 9px;

    color: var(--red);
}

.service-link {
    margin-top: 13px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--black);

    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-link span {
    color: var(--red);
}


/* Process */

.shoot-process {
    padding: 125px 0;

    background: var(--dark);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.process-grid article {
    min-height: 300px;

    padding: 30px;

    border: 1px solid var(--border-dark);

    background: var(--dark-soft);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.process-grid article:hover {
    transform: translateY(-8px);

    border-color: var(--red);
}

.process-grid article > span {
    display: block;

    margin-bottom: 65px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 1.2rem;
}

.process-grid h3 {
    margin-bottom: 14px;

    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.process-grid p {
    color: var(--gray);

    font-size: 0.82rem;
    line-height: 1.8;
}


/* Services responsive */

@media (max-width: 1000px) {
    .services-hero {
        grid-template-columns: 1fr;
    }

    .services-hero-image {
        min-height: 650px;
    }

    .services-hero-overlay {
        background:
            linear-gradient(
                to top,
                rgba(8, 8, 8, 0.85),
                transparent 55%
            );
    }

    .services-introduction-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .services-introduction-layout > div:last-child {
        padding-top: 0;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {
    .services-hero {
        padding-top: 80px;
    }

    .services-hero-image {
        min-height: 520px;
    }

    .services-hero-content {
        padding: 75px 6%;
    }

    .services-hero-content h1 {
        font-size: 4.2rem;

        letter-spacing: -2px;
    }

    .services-introduction {
        padding: 90px 0;
    }

    .services-list-section {
        padding-bottom: 90px;
    }

    .service-row {
        grid-template-columns: 45px 1fr;

        gap: 20px;
    }

    .service-link {
        grid-column: 2;
    }

    .service-content ul {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Signature Shoots
========================================= */

.signature-shoots {
    padding: 135px 0;

    background: var(--cream);
    color: var(--black);
}

.signature-heading {
    margin-bottom: 60px;

    display: grid;
    grid-template-columns: 1fr 0.62fr;

    gap: 90px;
    align-items: end;
}

.signature-heading h2 {
    max-width: 820px;

    font-family: "Playfair Display", serif;
    font-size: clamp(3.4rem, 5.8vw, 6.3rem);

    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -3px;
}

.signature-heading h2 em {
    display: block;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.signature-intro {
    padding-bottom: 8px;

    color: #626262;

    font-size: 0.92rem;
    line-height: 1.9;
}


/* Shoots layout */

.shoots-grid {
    display: grid;

    grid-template-columns:
        repeat(12, 1fr);

    grid-auto-rows: 105px;

    gap: 18px;
}


/* Card base */

.shoot-card {
    position: relative;

    grid-column: span 4;
    grid-row: span 4;

    overflow: hidden;

    min-height: 420px;

    background: #111111;

    box-shadow:
        0 22px 55px
        rgba(0, 0, 0, 0.11);

    transition:
        transform 0.55s
        cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.55s ease;
}

.shoot-card-large {
    grid-column: span 7;
    grid-row: span 6;

    min-height: 630px;
}

.shoot-card-tall {
    grid-column: span 5;
    grid-row: span 6;

    min-height: 630px;
}

.shoot-card-wide {
    grid-column: span 6;
    grid-row: span 4;
}


/* Images */

.shoot-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.6s ease;
}

.shoot-card:hover img {
    transform: scale(1.09);

    filter:
        contrast(1.04)
        saturate(1.05);
}


/* Dark overlay */

.shoot-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.28) 55%,
            rgba(0, 0, 0, 0.08) 100%
        );

    transition:
        background 0.5s ease;
}

.shoot-card:hover .shoot-overlay {
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.97) 0%,
            rgba(100, 0, 18, 0.25) 65%,
            rgba(0, 0, 0, 0.08) 100%
        );
}


/* Red animated border */

.shoot-card::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 5;

    border: 1px solid
        transparent;

    pointer-events: none;

    transition:
        border-color 0.45s ease,
        inset 0.45s ease;
}

.shoot-card:hover::before {
    inset: 13px;

    border-color:
        rgba(200, 16, 46, 0.86);
}


/* Red moving line */

.shoot-card::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    z-index: 6;

    width: 0;
    height: 4px;

    background: var(--red);

    transition:
        width 0.55s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.shoot-card:hover::after {
    width: 100%;
}


/* Number */

.shoot-number {
    position: absolute;
    top: 26px;
    left: 28px;

    z-index: 4;

    color: rgba(255, 255, 255, 0.72);

    font-family: "Italiana", serif;
    font-size: 1.2rem;

    transition:
        color 0.4s ease,
        transform 0.4s ease;
}

.shoot-card:hover .shoot-number {
    color: var(--red);

    transform:
        translateX(7px);
}


/* Text content */

.shoot-card-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;

    z-index: 4;

    transform:
        translateY(22px);

    transition:
        transform 0.55s
        cubic-bezier(0.2, 0.7, 0.2, 1);
}

.shoot-card:hover
.shoot-card-content {
    transform:
        translateY(0);
}

.shoot-card-content > p {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.62rem;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;

    opacity: 0;

    transform:
        translateY(10px);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.shoot-card:hover
.shoot-card-content > p {
    opacity: 1;

    transform:
        translateY(0);
}

.shoot-card-content h3 {
    color: var(--white);

    font-family: "Playfair Display", serif;
    font-size: clamp(2.1rem, 3.2vw, 4rem);

    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -1px;
}

.shoot-card-content h3 em {
    display: block;

    margin-top: 6px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}


/* View collection link */

.shoot-link {
    margin-top: 20px;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    color: var(--white);

    font-size: 0.66rem;
    font-weight: 600;

    letter-spacing: 1.4px;
    text-transform: uppercase;

    opacity: 0;

    transform:
        translateY(14px);

    transition:
        opacity 0.45s ease 0.06s,
        transform 0.45s ease 0.06s;
}

.shoot-card:hover
.shoot-link {
    opacity: 1;

    transform:
        translateY(0);
}

.shoot-link i {
    color: var(--red);

    transition:
        transform 0.35s ease;
}

.shoot-card:hover
.shoot-link i {
    transform:
        translateX(7px);
}


/* Whole card hover */

.shoot-card:hover {
    z-index: 10;

    transform:
        translateY(-10px);

    box-shadow:
        0 38px 85px
        rgba(0, 0, 0, 0.24);
}


/* Scroll reveal animation */

.reveal {
    opacity: 0;

    transform:
        translateY(45px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* Tablet */

@media (max-width: 1000px) {
    .signature-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .shoot-card-large,
    .shoot-card-tall,
    .shoot-card,
    .shoot-card-wide {
        grid-column: span 6;
        grid-row: span 5;

        min-height: 520px;
    }
}


/* Mobile */

@media (max-width: 650px) {
    .signature-shoots {
        padding: 90px 0;
    }

    .signature-heading {
        margin-bottom: 40px;
    }

    .signature-heading h2 {
        font-size: 3.7rem;

        letter-spacing: -2px;
    }

    .shoots-grid {
        display: flex;
        flex-direction: column;

        gap: 17px;
    }

    .shoot-card,
    .shoot-card-large,
    .shoot-card-tall,
    .shoot-card-wide {
        width: 100%;
        min-height: 470px;
    }

    .shoot-card-content {
        left: 24px;
        right: 24px;
        bottom: 24px;

        transform: none;
    }

    .shoot-card-content > p,
    .shoot-link {
        opacity: 1;

        transform: none;
    }

    .shoot-card-content h3 {
        font-size: 2.9rem;
    }

    .shoot-card::before {
        inset: 12px;

        border-color:
            rgba(255, 255, 255, 0.18);
    }
}

/* =========================================
   Packages Page
========================================= */

/* Hero */

.packages-hero {
    position: relative;

    min-height: 80vh;

    padding:
        180px 0
        110px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            #060606,
            #16070b
        );
}

.packages-hero::before {
    content: "";

    position: absolute;
    right: -180px;
    top: 40px;

    width: 600px;
    height: 600px;

    border: 1px solid
        rgba(200, 16, 46, 0.28);

    border-radius: 50%;
}

.packages-hero::after {
    content: "";

    position: absolute;
    right: 50px;
    top: 120px;

    width: 410px;
    height: 410px;

    border: 1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;
}

.packages-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(200, 16, 46, 0.14),
            transparent 35%
        );
}

.packages-hero-content {
    position: relative;
    z-index: 2;
}

.packages-hero h1 {
    max-width: 950px;

    margin-bottom: 28px;

    font-family: "Playfair Display", serif;
    font-size: clamp(4rem, 7.5vw, 8rem);

    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -4px;
}

.packages-hero h1 em {
    display: block;

    margin-top: 13px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.packages-hero-content > p {
    max-width: 650px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.67);

    line-height: 1.9;
}


/* Section heading */

.packages-section-heading {
    margin-bottom: 55px;

    display: grid;
    grid-template-columns: 1fr 0.55fr;

    gap: 90px;
    align-items: end;
}

.packages-section-heading h2,
.other-package-heading h2,
.album-heading h2 {
    max-width: 820px;

    font-family: "Playfair Display", serif;
    font-size: clamp(3.5rem, 5.8vw, 6.3rem);

    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -3px;
}

.packages-section-heading h2 em,
.other-package-heading h2 em,
.album-heading h2 em {
    display: block;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.packages-section-heading > p {
    color: #686868;

    line-height: 1.9;
}


/* Wedding section */

.wedding-packages-section {
    padding: 130px 0;

    background: var(--cream);
    color: var(--black);
}

.wedding-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
    align-items: stretch;
}

.wedding-package-card {
    position: relative;

    padding: 38px 34px;

    display: flex;
    flex-direction: column;

    border:
        1px solid rgba(0, 0, 0, 0.12);

    background: #ffffff;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.06);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.wedding-package-card:hover {
    transform: translateY(-12px);

    border-color:
        rgba(200, 16, 46, 0.55);

    box-shadow:
        0 35px 75px
        rgba(0, 0, 0, 0.13);
}

.featured-package {
    border: 2px solid var(--red);

    transform: translateY(-16px);
}

.featured-package:hover {
    transform: translateY(-25px);
}

.popular-label {
    position: absolute;
    top: 0;
    right: 0;

    padding: 9px 17px;

    background: var(--red);
    color: var(--white);

    font-size: 0.63rem;
    font-weight: 600;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.package-top {
    margin-bottom: 40px;

    display: flex;
    justify-content: space-between;
    align-items: start;

    gap: 20px;
}

.package-number {
    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 1.5rem;
}

.package-top p {
    max-width: 150px;

    color: #777777;

    font-size: 0.72rem;
    line-height: 1.5;
    text-align: right;
}

.wedding-package-card h3 {
    margin-bottom: 25px;

    font-family: "Playfair Display", serif;
    font-size: 2.65rem;

    font-weight: 500;
    line-height: 0.95;
}

.wedding-package-card h3 em {
    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.package-price {
    margin-bottom: 30px;
    padding-bottom: 27px;

    display: flex;
    align-items: end;

    gap: 9px;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.13);
}

.package-price strong {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 4vw, 4.3rem);

    font-weight: 500;
    line-height: 1;
}

.package-price span {
    padding-bottom: 7px;

    color: var(--red);

    font-size: 0.75rem;
    font-weight: 600;
}

.package-features {
    margin-bottom: 36px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

.package-features li {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    color: #555555;

    font-size: 0.8rem;
    line-height: 1.55;
}

.package-features i {
    margin-top: 4px;

    color: var(--red);
}

.package-whatsapp-button {
    min-height: 54px;

    margin-top: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    border: 1px solid var(--red);

    background: transparent;
    color: var(--red);

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.package-whatsapp-button:hover {
    background: var(--red);
    color: var(--white);

    transform: translateY(-3px);
}


/* Other shoots */

.other-packages-section {
    padding: 130px 0;

    background: #0a0a0a;
}

.other-package-heading {
    max-width: 900px;

    margin-bottom: 58px;
}

.other-package-heading > p:last-child {
    margin-top: 25px;

    color: var(--gray);
}

.other-package-list {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.other-package-card {
    padding: 20px;

    display: grid;
    grid-template-columns: 320px 1fr auto;

    gap: 42px;
    align-items: center;

    border:
        1px solid var(--border-dark);

    background: var(--dark-soft);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.other-package-card:hover {
    transform: translateX(10px);

    border-color: var(--red);

    background: #151515;
}

.other-package-image {
    height: 285px;

    overflow: hidden;
}

.other-package-image img {
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.other-package-card:hover img {
    transform: scale(1.06);
}

.other-package-content {
    padding: 15px 0;
}

.other-package-number {
    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 1.15rem;
}

.other-package-content h3 {
    margin: 8px 0 12px;

    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);

    font-weight: 500;
    line-height: 0.95;
}

.other-package-content h3 em {
    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.other-package-content > p {
    max-width: 600px;

    margin-bottom: 18px;

    color: var(--gray);

    font-size: 0.84rem;
    line-height: 1.8;
}

.other-package-price {
    margin-bottom: 12px;

    color: var(--white);

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.other-package-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 8px 24px;
}

.other-package-content li {
    color: #a8a8a8;

    font-size: 0.77rem;
}

.other-package-content li::before {
    content: "—";

    margin-right: 8px;

    color: var(--red);
}

.other-package-button {
    min-width: 180px;
    min-height: 52px;

    padding: 0 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 9px;

    border: 1px solid var(--red);

    color: var(--white);

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.other-package-button:hover {
    background: var(--red);

    transform: translateY(-4px);
}


/* Album section */

.album-pricing-section {
    padding: 130px 0;

    background: var(--cream);
    color: var(--black);
}

.album-pricing-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;
    align-items: start;
}

.album-heading > p:last-child {
    max-width: 500px;

    margin-top: 25px;

    color: #666666;
    line-height: 1.8;
}

.album-table-wrapper {
    overflow-x: auto;
}

.album-table {
    width: 100%;

    border-collapse: collapse;

    background: var(--white);

    box-shadow:
        0 24px 60px
        rgba(0, 0, 0, 0.08);
}

.album-table th,
.album-table td {
    padding: 21px 23px;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.1);

    text-align: left;
}

.album-table th {
    background: var(--black);
    color: var(--white);

    font-size: 0.7rem;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.album-table td {
    color: #555555;

    font-size: 0.85rem;
}

.album-table td:last-child {
    color: var(--red);

    font-weight: 600;
}


/* Package notes */

.package-notes {
    padding: 0 0 120px;

    background: var(--cream);
    color: var(--black);
}

.package-note-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.package-note-card {
    padding: 32px;

    display: flex;
    align-items: flex-start;

    gap: 20px;

    border:
        1px solid rgba(0, 0, 0, 0.12);

    background: var(--white);
}

.package-note-card > i {
    width: 53px;
    height: 53px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--red);
    color: var(--white);
}

.package-note-card h3 {
    margin-bottom: 9px;

    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.package-note-card p {
    color: #666666;

    font-size: 0.83rem;
    line-height: 1.75;
}


/* Responsive */

@media (max-width: 1050px) {
    .packages-section-heading,
    .album-pricing-layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .wedding-package-grid {
        grid-template-columns: 1fr;
    }

    .featured-package,
    .featured-package:hover {
        transform: none;
    }

    .other-package-card {
        grid-template-columns: 250px 1fr;
    }

    .other-package-button {
        grid-column: 2;

        width: fit-content;
    }
}


@media (max-width: 700px) {
    .packages-hero {
        min-height: auto;

        padding:
            145px 0
            90px;
    }

    .packages-hero h1 {
        font-size: 4.2rem;

        letter-spacing: -2px;
    }

    .wedding-packages-section,
    .other-packages-section,
    .album-pricing-section {
        padding: 90px 0;
    }

    .packages-section-heading h2,
    .other-package-heading h2,
    .album-heading h2 {
        font-size: 3.7rem;

        letter-spacing: -2px;
    }

    .wedding-package-card {
        padding: 32px 25px;
    }

    .other-package-card {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .other-package-image {
        height: 360px;
    }

    .other-package-button {
        grid-column: 1;

        width: 100%;
    }

    .other-package-content ul {
        grid-template-columns: 1fr;
    }

    .package-note-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   About Page
========================================= */

.about-hero {
    min-height: 100vh;

    padding:
        150px max(6%, calc((100% - var(--page-width)) / 2))
        90px;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    gap: 95px;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #070707,
            #100f10 55%,
            #19080d
        );
}


/* Hero content */

.about-hero-content {
    max-width: 790px;
}

.about-hero-content h1 {
    margin-bottom: 30px;

    font-family: "Playfair Display", serif;
    font-size: clamp(4rem, 7vw, 7.4rem);

    font-weight: 500;
    line-height: 0.91;
    letter-spacing: -4px;
}

.about-hero-content h1 em {
    display: block;

    margin-top: 14px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.about-hero-content > p {
    max-width: 620px;

    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.94rem;
    line-height: 1.9;
}


/* Hero visual */

.about-hero-visual {
    position: relative;

    min-height: 650px;
}

.about-photo-back {
    position: absolute;

    top: 30px;
    right: 15px;

    width: 78%;
    height: 84%;

    border: 1px solid var(--red);

    transform: translate(30px, 25px);
}

.about-photo-frame {
    position: absolute;

    left: 20px;
    top: 0;

    z-index: 2;

    width: 82%;
    height: 90%;

    overflow: hidden;

    background: var(--dark);

    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.5);

    animation:
        aboutPhotoFloat
        5s ease-in-out infinite;
}

.about-photo-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 20%;
}

@keyframes aboutPhotoFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.about-photo-caption {
    position: absolute;

    right: 0;
    bottom: 30px;

    z-index: 4;

    min-width: 255px;

    padding: 18px 22px;

    border-left: 3px solid var(--red);

    background: rgba(7, 7, 7, 0.92);

    backdrop-filter: blur(12px);
}

.about-photo-caption span {
    display: block;

    margin-bottom: 5px;

    color: var(--red);

    font-size: 0.62rem;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-photo-caption strong {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 500;
}

.about-vertical-text {
    position: absolute;

    right: -65px;
    top: 46%;

    color: rgba(255, 255, 255, 0.37);

    font-size: 0.62rem;

    letter-spacing: 3px;
    text-transform: uppercase;

    transform:
        rotate(90deg)
        translateY(-50%);
}


/* Story section */

.about-story-section {
    padding: 130px 0;

    background: var(--cream);
    color: var(--black);
}

.about-story-layout {
    display: grid;
    grid-template-columns: 1fr 0.75fr;

    gap: 110px;
    align-items: start;
}

.about-story-title h2,
.about-philosophy-heading h2,
.why-lalith-content h2,
.journey-heading h2 {
    max-width: 820px;

    font-family: "Playfair Display", serif;
    font-size: clamp(3.4rem, 5.8vw, 6.2rem);

    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -3px;
}

.about-story-title h2 em,
.about-philosophy-heading h2 em,
.why-lalith-content h2 em,
.journey-heading h2 em {
    display: block;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.about-story-copy {
    padding-top: 44px;
}

.about-story-copy p {
    margin-bottom: 22px;

    color: #626262;

    font-size: 0.93rem;
    line-height: 1.9;
}


/* Philosophy */

.about-philosophy {
    padding: 125px 0;

    background: #0a0a0a;
}

.about-philosophy-heading {
    max-width: 900px;

    margin-bottom: 55px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.philosophy-card {
    min-height: 360px;

    padding: 30px;

    border: 1px solid var(--border-dark);

    background: var(--dark-soft);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);

    border-color: var(--red);
}

.philosophy-card > span {
    display: block;

    margin-bottom: 45px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 1.2rem;
}

.philosophy-card i {
    margin-bottom: 25px;

    color: var(--red);

    font-size: 1.8rem;
}

.philosophy-card h3 {
    margin-bottom: 15px;

    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 500;
}

.philosophy-card p {
    color: var(--gray);

    font-size: 0.82rem;
    line-height: 1.8;
}


/* Why Lalith */

.why-lalith-section {
    padding: 130px 0;

    background: var(--white);
    color: var(--black);
}

.why-lalith-layout {
    display: grid;
    grid-template-columns: 0.8fr 1fr;

    gap: 100px;
    align-items: center;
}

.why-lalith-image {
    height: 730px;

    overflow: hidden;

    background: var(--dark);
}

.why-lalith-image img {
    height: 100%;

    object-fit: cover;
    object-position: center 18%;
}

.why-lalith-content h2 {
    margin-bottom: 42px;
}

.why-point {
    padding: 22px 0;

    display: grid;
    grid-template-columns: 48px 1fr;

    gap: 22px;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.12);
}

.why-point > span {
    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 1.2rem;
}

.why-point h3 {
    margin-bottom: 8px;

    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 500;
}

.why-point p {
    color: #666666;

    font-size: 0.83rem;
    line-height: 1.75;
}


/* Journey */

.about-journey {
    padding: 130px 0;

    background: var(--cream);
    color: var(--black);
}

.journey-heading {
    max-width: 850px;

    margin-bottom: 70px;
}

.journey-line {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 55px;
}

.journey-line::before {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    top: 12px;

    height: 1px;

    background:
        rgba(0, 0, 0, 0.15);
}

.journey-item {
    position: relative;

    padding-top: 45px;
}

.journey-dot {
    position: absolute;

    top: 5px;
    left: 0;

    width: 15px;
    height: 15px;

    border: 3px solid var(--cream);
    border-radius: 50%;

    background: var(--red);

    box-shadow:
        0 0 0 1px var(--red);
}

.journey-item small {
    display: block;

    margin-bottom: 13px;

    color: var(--red);

    font-size: 0.65rem;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.journey-item h3 {
    margin-bottom: 12px;

    font-family: "Playfair Display", serif;
    font-size: 1.65rem;
    font-weight: 500;
}

.journey-item p {
    color: #666666;

    font-size: 0.83rem;
    line-height: 1.75;
}


/* Responsive */

@media (max-width: 1000px) {
    .about-hero,
    .about-story-layout,
    .why-lalith-layout {
        grid-template-columns: 1fr;
    }

    .about-hero {
        gap: 70px;

        text-align: center;
    }

    .about-hero-content {
        margin-inline: auto;
    }

    .about-hero-content > p {
        margin-inline: auto;
    }

    .about-hero-content .primary-button {
        margin-inline: auto;
    }

    .about-hero-visual {
        width: min(100%, 700px);

        margin-inline: auto;
    }

    .about-story-layout {
        gap: 35px;
    }

    .about-story-copy {
        padding-top: 0;
    }

    .philosophy-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-lalith-image {
        height: 650px;
    }
}


@media (max-width: 700px) {
    .about-hero {
        padding:
            130px 6%
            75px;
    }

    .about-hero-content h1 {
        font-size: 4.15rem;

        letter-spacing: -2px;
    }

    .about-hero-visual {
        min-height: 520px;
    }

    .about-photo-frame {
        left: 0;

        width: 90%;
    }

    .about-photo-back {
        right: 0;
    }

    .about-photo-caption {
        right: 0;
        bottom: 20px;
    }

    .about-vertical-text {
        display: none;
    }

    .about-story-section,
    .about-philosophy,
    .why-lalith-section,
    .about-journey {
        padding: 90px 0;
    }

    .about-story-title h2,
    .about-philosophy-heading h2,
    .why-lalith-content h2,
    .journey-heading h2 {
        font-size: 3.7rem;

        letter-spacing: -2px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .why-lalith-image {
        height: 520px;
    }

    .journey-line {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .journey-line::before {
        top: 0;
        bottom: 0;
        left: 7px;

        width: 1px;
        height: auto;
    }

    .journey-item {
        padding:
            0 0 0 42px;
    }

    .journey-dot {
        top: 5px;
        left: 0;
    }
}

/* =========================================
   Contact Page
========================================= */

/* Hero */

.contact-hero {
    position: relative;

    min-height: 78vh;

    padding:
        180px 0
        110px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            125deg,
            #050505 0%,
            #0e0e0e 55%,
            #21080e 100%
        );
}

.contact-hero::before {
    content: "CONTACT";

    position: absolute;
    right: -20px;
    bottom: -70px;

    color: rgba(255, 255, 255, 0.025);

    font-family: "Italiana", serif;
    font-size: clamp(9rem, 20vw, 22rem);
    line-height: 1;
}

.contact-hero-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.contact-circle-one {
    top: 110px;
    right: 8%;

    width: 360px;
    height: 360px;

    border: 1px solid rgba(200, 16, 46, 0.35);
}

.contact-circle-two {
    top: 175px;
    right: 13%;

    width: 230px;
    height: 230px;

    border: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-hero-content {
    position: relative;

    z-index: 2;
}

.contact-hero h1 {
    max-width: 930px;

    margin-bottom: 28px;

    font-family: "Playfair Display", serif;
    font-size: clamp(4.2rem, 8vw, 8.4rem);

    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -4px;
}

.contact-hero h1 em {
    display: block;

    margin-top: 13px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.contact-hero-content > p {
    max-width: 620px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.67);

    font-size: 0.93rem;
    line-height: 1.9;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}


/* Contact information */

.contact-details-section {
    padding: 130px 0;

    background: var(--cream);
    color: var(--black);
}

.contact-section-heading {
    margin-bottom: 55px;

    display: grid;
    grid-template-columns: 1fr 0.55fr;

    gap: 90px;
    align-items: end;
}

.contact-section-heading h2,
.contact-form-introduction h2,
.contact-process-heading h2,
.contact-social-layout h2 {
    max-width: 820px;

    font-family: "Playfair Display", serif;
    font-size: clamp(3.4rem, 5.8vw, 6.3rem);

    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -3px;
}

.contact-section-heading h2 em,
.contact-form-introduction h2 em,
.contact-process-heading h2 em,
.contact-social-layout h2 em {
    display: block;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.contact-section-heading > p {
    color: #656565;

    font-size: 0.9rem;
    line-height: 1.9;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 19px;
}

.contact-info-card {
    position: relative;

    min-height: 360px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid rgba(0, 0, 0, 0.11);

    background: var(--white);

    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, 0.055);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.contact-info-card::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 4px;

    background: var(--red);

    transition: width 0.45s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);

    border-color: rgba(200, 16, 46, 0.55);

    box-shadow:
        0 32px 75px
        rgba(0, 0, 0, 0.12);
}

.contact-info-card:hover::after {
    width: 100%;
}

.contact-card-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--black);
    color: var(--white);

    font-size: 1.25rem;

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: var(--red);

    transform: rotate(-7deg);
}

.contact-info-card > span {
    margin-bottom: 8px;

    color: var(--red);

    font-size: 0.63rem;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info-card h3 {
    margin-bottom: 13px;

    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 500;
}

.contact-info-card p {
    margin-bottom: 25px;

    color: #666666;

    font-size: 0.82rem;
    line-height: 1.75;
}

.contact-info-card strong {
    margin-top: auto;

    color: var(--black);

    font-size: 0.8rem;
    font-weight: 600;

    overflow-wrap: anywhere;
}

.contact-card-arrow {
    position: absolute;
    right: 27px;
    top: 31px;

    color: var(--red);

    font-size: 1.1rem;

    transition: transform 0.35s ease;
}

.contact-info-card:hover .contact-card-arrow {
    transform:
        translate(5px, -5px);
}


/* Form section */

.contact-form-section {
    padding: 130px 0;

    background: #090909;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: 90px;
    align-items: start;
}

.contact-form-introduction > p:not(.section-label) {
    max-width: 530px;

    margin: 25px 0 40px;

    color: var(--gray);

    font-size: 0.9rem;
    line-height: 1.9;
}

.contact-mini-details {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.contact-mini-details > div {
    padding: 18px 0;

    display: flex;
    align-items: center;

    gap: 17px;

    border-bottom: 1px solid var(--border-dark);
}

.contact-mini-details i {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border: 1px solid var(--border-dark);
    border-radius: 50%;

    color: var(--red);
}

.contact-mini-details span,
.contact-mini-details strong {
    display: block;
}

.contact-mini-details span {
    margin-bottom: 4px;

    color: #747474;

    font-size: 0.62rem;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-mini-details strong {
    color: var(--white);

    font-size: 0.82rem;
    font-weight: 500;
}


/* Form */

.contact-form {
    padding: 42px;

    border: 1px solid var(--border-dark);

    background: var(--dark-soft);

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.35);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.66rem;
    font-weight: 600;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0;
    outline: none;

    background: #101010;
    color: var(--white);

    font-family: "DM Sans", sans-serif;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.form-group input,
.form-group select {
    height: 56px;

    padding: 0 16px;
}

.form-group textarea {
    min-height: 150px;

    padding: 16px;

    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #646464;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);

    background: #0c0c0c;
}

.form-group select option {
    background: #101010;
    color: var(--white);
}

.contact-submit-button {
    width: 100%;
    min-height: 58px;

    margin-top: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 11px;

    border: 0;

    background: var(--red);
    color: var(--white);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.contact-submit-button:hover {
    background: var(--white);
    color: var(--black);

    transform: translateY(-4px);
}

.contact-form-note {
    margin-top: 14px;

    color: #686868;

    font-size: 0.67rem;
    line-height: 1.6;
    text-align: center;
}


/* Booking process */

.contact-booking-process {
    padding: 130px 0;

    background: var(--cream);
    color: var(--black);
}

.contact-process-heading {
    max-width: 850px;

    margin-bottom: 55px;
}

.contact-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.contact-process-grid article {
    min-height: 285px;

    padding: 30px;

    border: 1px solid rgba(0, 0, 0, 0.11);

    background: var(--white);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease;
}

.contact-process-grid article:hover {
    transform: translateY(-9px);

    border-color: var(--red);
}

.contact-process-grid span {
    display: block;

    margin-bottom: 60px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 1.3rem;
}

.contact-process-grid h3 {
    margin-bottom: 13px;

    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 500;
}

.contact-process-grid p {
    color: #666666;

    font-size: 0.8rem;
    line-height: 1.75;
}


/* Social links */

.contact-social-section {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            var(--red-dark),
            var(--red)
        );
}

.contact-social-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;

    gap: 90px;
    align-items: center;
}

.contact-social-layout h2 em {
    color: var(--white);
}

.contact-social-links {
    display: flex;
    flex-direction: column;
}

.contact-social-links a {
    padding: 22px 0;

    display: grid;
    grid-template-columns: 45px 1fr auto;

    align-items: center;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.25);

    transition:
        padding-left 0.3s ease,
        background 0.3s ease;
}

.contact-social-links a:hover {
    padding-left: 15px;

    background: rgba(255, 255, 255, 0.06);
}

.contact-social-links i {
    font-size: 1.15rem;
}

.contact-social-links span {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
}

.contact-social-links strong {
    font-size: 1rem;
}


/* Responsive */

@media (max-width: 1000px) {
    .contact-section-heading,
    .contact-form-layout,
    .contact-social-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: 300px;
    }

    .contact-process-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {
    .contact-hero {
        min-height: auto;

        padding:
            145px 0
            90px;
    }

    .contact-hero h1 {
        font-size: 4.2rem;

        letter-spacing: -2px;
    }

    .contact-circle-one,
    .contact-circle-two {
        display: none;
    }

    .contact-hero-actions {
        flex-direction: column;
    }

    .contact-hero-actions .primary-button,
    .contact-hero-actions .secondary-button {
        width: 100%;
    }

    .contact-details-section,
    .contact-form-section,
    .contact-booking-process {
        padding: 90px 0;
    }

    .contact-section-heading h2,
    .contact-form-introduction h2,
    .contact-process-heading h2,
    .contact-social-layout h2 {
        font-size: 3.7rem;

        letter-spacing: -2px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-process-grid {
        grid-template-columns: 1fr;
    }

    .contact-social-section {
        padding: 85px 0;
    }
}

/* =========================================
   Reserve a Date Page
========================================= */

/* Hero */

.reserve-hero {
    position: relative;

    min-height: 88vh;

    padding:
        170px 0
        110px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            130deg,
            #060606,
            #101010 55%,
            #21080e
        );
}

.reserve-hero::before {
    content: "RESERVE";

    position: absolute;
    right: -35px;
    bottom: -65px;

    color: rgba(255, 255, 255, 0.025);

    font-family: "Italiana", serif;
    font-size: clamp(8rem, 19vw, 21rem);
    line-height: 1;
}

.reserve-hero-glow {
    position: absolute;
    right: 5%;
    top: 22%;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        rgba(200, 16, 46, 0.12);

    filter: blur(110px);
}

.reserve-hero-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 0.65fr;

    gap: 100px;
    align-items: center;
}

.reserve-hero-content h1 {
    max-width: 900px;

    margin-bottom: 28px;

    font-family: "Playfair Display", serif;
    font-size: clamp(4.2rem, 7.4vw, 8rem);

    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -4px;
}

.reserve-hero-content h1 em {
    display: block;

    margin-top: 13px;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.reserve-hero-content > p {
    max-width: 640px;

    margin-bottom: 36px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.93rem;
    line-height: 1.9;
}

.reserve-hero-points {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.reserve-hero-points > div {
    padding: 13px 16px;

    display: flex;
    align-items: center;

    gap: 10px;

    border: 1px solid var(--border-dark);

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.72rem;
}

.reserve-hero-points i {
    color: var(--red);
}


/* Booking process summary */

.reserve-hero-summary {
    padding: 36px;

    border: 1px solid var(--border-dark);

    background: rgba(15, 15, 15, 0.82);

    backdrop-filter: blur(16px);

    box-shadow:
        0 35px 90px
        rgba(0, 0, 0, 0.35);
}

.summary-label {
    display: block;

    margin-bottom: 28px;

    color: var(--red);

    font-size: 0.66rem;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.summary-step {
    padding: 19px 0;

    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 18px;

    border-bottom: 1px solid var(--border-dark);
}

.summary-step:last-child {
    border-bottom: 0;
}

.summary-step > strong {
    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 1.3rem;
    font-weight: 400;
}

.summary-step h3 {
    margin-bottom: 6px;

    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 500;
}

.summary-step p {
    color: #858585;

    font-size: 0.74rem;
    line-height: 1.6;
}


/* Form section */

.reservation-form-section {
    padding: 130px 0;

    background: var(--cream);
    color: var(--black);
}

.reservation-layout {
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;

    gap: 75px;
    align-items: start;
}


/* Sidebar */

.reservation-sidebar {
    position: sticky;
    top: 125px;
}

.reservation-sidebar h2 {
    margin-bottom: 36px;

    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 4.8vw, 5rem);

    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -2px;
}

.reservation-sidebar h2 em {
    display: block;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.reservation-note {
    padding: 23px 0;

    display: flex;
    align-items: flex-start;

    gap: 17px;

    border-bottom: 1px solid var(--border-light);
}

.reservation-note > i {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--black);
    color: var(--red);
}

.reservation-note h3 {
    margin-bottom: 7px;

    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.reservation-note p {
    color: #676767;

    font-size: 0.79rem;
    line-height: 1.7;
}

.reservation-contact {
    margin-top: 30px;
    padding: 25px;

    background: var(--black);
    color: var(--white);
}

.reservation-contact > span {
    display: block;

    margin-bottom: 13px;

    color: #8c8c8c;

    font-size: 0.7rem;
}

.reservation-contact a {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 0.76rem;
    font-weight: 600;
}

.reservation-contact i {
    color: #25d366;
}


/* Main reservation form */

.reservation-form {
    padding: 45px;

    border: 1px solid rgba(0, 0, 0, 0.11);

    background: var(--white);

    box-shadow:
        0 30px 75px
        rgba(0, 0, 0, 0.08);
}

.reservation-form-block {
    margin-bottom: 42px;
    padding-bottom: 35px;

    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
}

.form-block-heading {
    margin-bottom: 27px;

    display: grid;
    grid-template-columns: 50px 1fr;

    gap: 17px;
    align-items: start;
}

.form-block-heading > span {
    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 1.35rem;
}

.form-block-heading h2 {
    margin-bottom: 4px;

    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.form-block-heading p {
    color: #777777;

    font-size: 0.76rem;
}


/* Light form controls */

.reservation-form .form-group label {
    color: #4f4f4f;
}

.reservation-form .form-group input,
.reservation-form .form-group select,
.reservation-form .form-group textarea {
    border: 1px solid rgba(0, 0, 0, 0.14);

    background: #fafafa;
    color: var(--black);
}

.reservation-form .form-group input::placeholder,
.reservation-form .form-group textarea::placeholder {
    color: #999999;
}

.reservation-form .form-group input:focus,
.reservation-form .form-group select:focus,
.reservation-form .form-group textarea:focus {
    border-color: var(--red);

    background: var(--white);
}

.reservation-form .form-group select option {
    background: var(--white);
    color: var(--black);
}


/* Checkbox cards */

.reservation-checkbox-grid {
    margin-bottom: 25px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.reservation-checkbox {
    position: relative;

    min-height: 100px;

    padding: 20px;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    border: 1px solid rgba(0, 0, 0, 0.12);

    background: #fafafa;

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.reservation-checkbox:hover {
    border-color: var(--red);

    background: var(--white);

    transform: translateY(-3px);
}

.reservation-checkbox input,
.reservation-terms input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;

    flex-shrink: 0;

    border: 1px solid #b8b8b8;

    background: var(--white);

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.reservation-checkbox input:checked + .custom-checkbox,
.reservation-terms input:checked + .custom-checkbox {
    position: relative;

    border-color: var(--red);

    background: var(--red);
}

.reservation-checkbox input:checked + .custom-checkbox::after,
.reservation-terms input:checked + .custom-checkbox::after {
    content: "✓";

    position: absolute;
    inset: 0;

    display: grid;
    place-items: center;

    color: var(--white);

    font-size: 0.72rem;
}

.reservation-checkbox strong {
    display: block;

    margin-bottom: 5px;

    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 500;
}

.reservation-checkbox small {
    color: #777777;

    font-size: 0.7rem;
    line-height: 1.5;
}


/* Terms */

.reservation-terms {
    position: relative;

    margin-bottom: 25px;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    cursor: pointer;
}

.reservation-terms p {
    color: #686868;

    font-size: 0.76rem;
    line-height: 1.7;
}


/* Submit */

.reservation-submit-button {
    width: 100%;
    min-height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 11px;

    border: 0;

    background: var(--red);
    color: var(--white);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.reservation-submit-button:hover {
    background: var(--black);

    transform: translateY(-4px);
}

.reservation-form-footer-note {
    margin-top: 14px;

    color: #858585;

    font-size: 0.68rem;
    line-height: 1.6;
    text-align: center;
}


/* What happens next */

.reservation-after-submit {
    padding: 125px 0;

    background: #090909;
}

.reservation-after-heading {
    max-width: 850px;

    margin-bottom: 55px;
}

.reservation-after-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(3.4rem, 5.8vw, 6.2rem);

    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -3px;
}

.reservation-after-heading h2 em {
    display: block;

    color: var(--red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.reservation-after-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.reservation-after-grid article {
    min-height: 310px;

    padding: 30px;

    border: 1px solid var(--border-dark);

    background: var(--dark-soft);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease;
}

.reservation-after-grid article:hover {
    transform: translateY(-9px);

    border-color: var(--red);
}

.reservation-after-grid article > span {
    display: block;

    color: var(--red);

    font-family: "Italiana", serif;
    font-size: 1.25rem;
}

.reservation-after-grid article > i {
    margin: 55px 0 24px;

    color: var(--red);

    font-size: 1.7rem;
}

.reservation-after-grid h3 {
    margin-bottom: 12px;

    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 500;
}

.reservation-after-grid p {
    color: var(--gray);

    font-size: 0.8rem;
    line-height: 1.75;
}


/* Active booking button */

.active-booking {
    border-color: var(--red) !important;

    background: var(--red) !important;
}


/* Responsive */

@media (max-width: 1050px) {
    .reserve-hero-layout,
    .reservation-layout {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .reservation-sidebar {
        position: static;
    }

    .reservation-after-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {
    .reserve-hero {
        min-height: auto;

        padding:
            145px 0
            90px;
    }

    .reserve-hero-content h1 {
        font-size: 4.15rem;

        letter-spacing: -2px;
    }

    .reserve-hero-points {
        flex-direction: column;
    }

    .reserve-hero-points > div {
        width: 100%;
    }

    .reservation-form-section,
    .reservation-after-submit {
        padding: 90px 0;
    }

    .reservation-form {
        padding: 30px 20px;
    }

    .reservation-checkbox-grid {
        grid-template-columns: 1fr;
    }

    .reservation-after-heading h2 {
        font-size: 3.7rem;

        letter-spacing: -2px;
    }

    .reservation-after-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --album-red: #c8102e;
    --album-black: #080808;
    --album-dark: #101010;
    --album-white: #ffffff;
    --album-cream: #f5f1eb;
    --album-gray: #777777;
    --album-width: 1380px;
}


/* Shared */

.album-container {
    width: min(90%, var(--album-width));
    margin-inline: auto;
}

.album-section-label {
    margin-bottom: 15px;

    color: var(--album-red);

    font-family: "DM Sans", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* Album hero */

.album-hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background: var(--album-black);
}

.album-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    animation:
        albumHeroZoom
        18s ease-in-out infinite alternate;
}

@keyframes albumHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.06);
    }
}

.album-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.62) 42%,
            rgba(0, 0, 0, 0.17) 78%
        ),
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.82),
            transparent 55%
        );
}

.album-hero-content {
    position: relative;
    z-index: 3;

    width: min(88%, var(--album-width));

    margin-inline: auto;
    padding: 180px 0 105px;
}

.album-label {
    margin-bottom: 20px;

    color: var(--album-white);

    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.album-label::before {
    content: "";

    display: inline-block;

    width: 50px;
    height: 1px;

    margin-right: 15px;
    margin-bottom: 4px;

    background: var(--album-red);
}

.album-hero h1 {
    max-width: 850px;

    color: var(--album-white);

    font-family: "Playfair Display", serif;
    font-size: clamp(4.8rem, 9vw, 9.5rem);

    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -5px;
}

.album-hero h1 em {
    display: block;

    margin-top: 15px;

    color: var(--album-red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.album-hero-content > p {
    max-width: 560px;

    margin: 31px 0 34px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.92rem;
    line-height: 1.9;
}

.album-hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.album-primary-button,
.album-outline-button {
    min-height: 56px;

    padding: 0 25px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    gap: 11px;

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 1.1px;
    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.album-primary-button {
    background: var(--album-red);
    color: var(--album-white);
}

.album-primary-button:hover {
    background: var(--album-white);
    color: var(--album-black);

    transform: translateY(-4px);
}

.album-outline-button {
    border: 1px solid rgba(255, 255, 255, 0.4);

    color: var(--album-white);
}

.album-outline-button:hover {
    border-color: var(--album-white);

    background: var(--album-white);
    color: var(--album-black);

    transform: translateY(-4px);
}

.album-hero-details {
    position: absolute;
    right: 6%;
    bottom: 55px;

    z-index: 3;

    display: flex;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(0, 0, 0, 0.48);

    backdrop-filter: blur(12px);
}

.album-hero-details div {
    min-width: 170px;

    padding: 19px 22px;
}

.album-hero-details div + div {
    border-left:
        1px solid rgba(255, 255, 255, 0.18);
}

.album-hero-details span,
.album-hero-details strong {
    display: block;
}

.album-hero-details span {
    margin-bottom: 5px;

    color: var(--album-red);

    font-size: 0.58rem;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.album-hero-details strong {
    color: var(--album-white);

    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 500;
}


/* Introduction */

.album-introduction {
    padding: 125px 0;

    background: var(--album-cream);
    color: var(--album-black);
}

.album-introduction-layout {
    display: grid;
    grid-template-columns: 1fr 0.72fr;

    gap: 100px;
    align-items: start;
}

.album-introduction h2,
.gallery-heading h2,
.wedding-album-cta h2 {
    max-width: 800px;

    font-family: "Playfair Display", serif;
    font-size: clamp(3.5rem, 6vw, 6.3rem);

    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -3px;
}

.album-introduction h2 em,
.gallery-heading h2 em,
.wedding-album-cta h2 em {
    display: block;

    color: var(--album-red);

    font-family: "Italiana", serif;
    font-weight: 400;
}

.album-introduction-copy {
    padding-top: 37px;
}

.album-introduction-copy p {
    margin-bottom: 20px;

    color: #626262;

    font-size: 0.9rem;
    line-height: 1.9;
}


/* Gallery */

.wedding-gallery-section {
    padding: 125px 0;

    background: #090909;
}

.gallery-heading {
    margin-bottom: 50px;

    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 40px;
}

.gallery-heading h2 {
    color: var(--album-white);
}

.gallery-heading > p {
    color: #747474;

    font-size: 0.72rem;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.wedding-masonry {
    display: grid;

    grid-template-columns:
        repeat(12, 1fr);

    grid-auto-rows: 95px;

    gap: 15px;
}

.wedding-gallery-item {
    position: relative;

    grid-column: span 4;
    grid-row: span 4;

    min-height: 380px;

    overflow: hidden;

    border: 0;

    background: #161616;

    cursor: zoom-in;
}

.wedding-gallery-item.gallery-tall {
    grid-row: span 6;

    min-height: 570px;
}

.wedding-gallery-item.gallery-wide {
    grid-column: span 8;
}

.wedding-gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.wedding-gallery-item::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.7),
            transparent 58%
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}

.wedding-gallery-item::after {
    content: "";

    position: absolute;
    inset: 14px;

    z-index: 3;

    border: 1px solid
        rgba(200, 16, 46, 0.85);

    opacity: 0;

    transform: scale(0.96);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.wedding-gallery-item span {
    position: absolute;
    left: 25px;
    bottom: 24px;

    z-index: 4;

    color: var(--album-white);

    font-size: 0.67rem;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    opacity: 0;

    transform: translateY(12px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.wedding-gallery-item:hover img {
    transform: scale(1.07);

    filter: brightness(0.85);
}

.wedding-gallery-item:hover::before,
.wedding-gallery-item:hover::after {
    opacity: 1;
}

.wedding-gallery-item:hover::after {
    transform: scale(1);
}

.wedding-gallery-item:hover span {
    opacity: 1;

    transform: translateY(0);
}


/* CTA */

.wedding-album-cta {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #8f0b21,
            var(--album-red)
        );
}

.wedding-album-cta::after {
    content: "LOVE";

    position: absolute;
    right: -10px;
    bottom: -65px;

    color: rgba(255, 255, 255, 0.055);

    font-family: "Italiana", serif;
    font-size: clamp(8rem, 20vw, 20rem);
    line-height: 1;
}

.wedding-album-cta-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 0.55fr;

    gap: 90px;
    align-items: center;
}

.album-light-label {
    color: rgba(255, 255, 255, 0.75);
}

.wedding-album-cta h2 {
    color: var(--album-white);
}

.wedding-album-cta h2 em {
    color: var(--album-white);
}

.wedding-album-cta-layout > div:last-child p {
    margin-bottom: 27px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 0.9rem;
    line-height: 1.8;
}

.wedding-reserve-button {
    min-height: 56px;

    padding: 0 25px;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    background: var(--album-white);
    color: var(--album-red);

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.wedding-reserve-button:hover {
    background: var(--album-black);
    color: var(--album-white);

    transform: translateY(-4px);
}


/* Lightbox */

.wedding-lightbox {
    position: fixed;
    inset: 0;

    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.97);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.wedding-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-image-wrapper {
    position: relative;

    width: min(82vw, 1400px);
    height: min(82vh, 920px);

    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image-wrapper img {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    opacity: 0;

    transform: scale(0.97);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.lightbox-image-wrapper img.loaded {
    opacity: 1;

    transform: scale(1);
}

.lightbox-loading {
    position: absolute;

    color: #777777;

    font-size: 0.68rem;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 28px;

    z-index: 4;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid
        rgba(255, 255, 255, 0.22);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);
    color: var(--album-white);

    font-size: 1.1rem;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.lightbox-close:hover {
    background: var(--album-red);

    transform: rotate(90deg);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;

    z-index: 4;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border: 1px solid
        rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);
    color: var(--album-white);

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.lightbox-navigation:hover {
    border-color: var(--album-red);

    background: var(--album-red);
}

.lightbox-previous {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

.lightbox-footer {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 24px;

    display: flex;
    justify-content: space-between;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.66rem;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.lightbox-footer strong {
    color: var(--album-red);
}


/* Responsive */

@media (max-width: 1000px) {
    .album-introduction-layout,
    .wedding-album-cta-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .album-hero-details {
        display: none;
    }

    .wedding-gallery-item,
    .wedding-gallery-item.gallery-wide {
        grid-column: span 6;
    }
}


@media (max-width: 700px) {
    .album-hero-content {
        width: 90%;

        padding:
            145px 0
            70px;
    }

    .album-hero h1 {
        font-size: 4.5rem;

        letter-spacing: -2px;
    }

    .album-hero-actions {
        flex-direction: column;
    }

    .album-primary-button,
    .album-outline-button {
        width: 100%;
    }

    .album-introduction,
    .wedding-gallery-section {
        padding: 90px 0;
    }

    .album-introduction h2,
    .gallery-heading h2,
    .wedding-album-cta h2 {
        font-size: 3.7rem;

        letter-spacing: -2px;
    }

    .gallery-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .wedding-masonry {
        display: flex;
        flex-direction: column;
    }

    .wedding-gallery-item,
    .wedding-gallery-item.gallery-tall,
    .wedding-gallery-item.gallery-wide {
        width: 100%;
        min-height: 460px;
    }

    .wedding-gallery-item span,
    .wedding-gallery-item::before,
    .wedding-gallery-item::after {
        opacity: 1;
    }

    .wedding-gallery-item span {
        transform: none;
    }

    .lightbox-image-wrapper {
        width: 92vw;
        height: 75vh;
    }

    .lightbox-navigation {
        width: 45px;
        height: 45px;
    }

    .lightbox-previous {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

    .lightbox-footer {
        left: 18px;
        right: 18px;
    }
}