/* =========================================================
   SIPANI MARBLES - MAIN STYLESHEET
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Halant:wght@300;400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --black: #11110f;
    --cream: #f2eee6;
    --muted: #aaa69d;
    --gold: #d4af37;
    --line: rgba(255, 255, 255, .15);
    --dark-line: rgba(17, 17, 15, .15);
    --serif: "Italiana", Georgia, serif;
    --sans: "DM Sans", DM Sans, sans-serif;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

button {
    font: inherit;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: grid;
    place-items: center;
    pointer-events: none;
    animation: loaderOut .9s 1.4s var(--ease) forwards;
}

.loader-mark {
    font-family: var(--serif);
    font-size: 72px;
    color: var(--gold);
    font-style: italic;
    animation: loaderMark 1s var(--ease) forwards;
}

.loader-line {
    position: absolute;
    bottom: 10%;
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, .15);
    overflow: hidden;
}

.loader-line span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: translateX(-100%);
    animation: loaderLine 1.2s .1s var(--ease) forwards;
}

@keyframes loaderLine {
    to {
        transform: translateX(0);
    }
}

@keyframes loaderMark {
    from {
        opacity: 0;
        transform: scale(.8);
    }

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

@keyframes loaderOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* HEADER */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    height: 96px;
    padding: 0 5.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: background .5s ease, height .5s ease;
}

.site-header.scrolled {
    height: 78px;
    background: #0a1128;
    backdrop-filter: blur(14px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    /* border-right: 1px solid var(--gold); */
    font: italic 38px/1 var(--serif);
    color: var(--gold);
}

.logo-mark-1 {
    display: grid;
    place-items: center;
    width: 150px;
    height: 150px;
    /* border-right: 1px solid var(--gold); */
    font: italic 38px/1 var(--serif);
    color: var(--gold);
}

.logo-copy {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.logo-copy strong {
    font-size: 21px;
    letter-spacing: 0.5px;
    font-family: "Halant", serif;
}

.logo-copy small {
    font-size: 8px;
    letter-spacing: 0.9px;
    opacity: .55;
    font-family: "Montserrat", sans-serif;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.desktop-nav a {
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: .78;
    transition: opacity .3s ease;
}

.desktop-nav a:not(.nav-inquire)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .45s var(--ease);
}

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

.desktop-nav a:hover::after {
    width: 100%;
}

/* =========================================================
   ABOUT DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-dropdown::after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: 100%;
    height: 30px;
    background: transparent;
}

/* About link */

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}


/* Arrow */

.nav-dropdown-trigger i {
    font-size: 8px;
    transition: transform 0.3s ease;
}


/* Rotate arrow while hovering */

.nav-dropdown:hover .nav-dropdown-trigger i {
    transform: rotate(180deg);
}


/* Dropdown box */

.nav-dropdown-menu {

    position: absolute;

    top: 100%;
    margin-top: 10px;
    left: 50%;

    width: 310px;

    padding: 22px 10px 10px;

    transform: translateX(-50%);

    background: #11110f;

    border: 1px solid rgba(255,255,255,.12);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .2s ease,
        visibility .2s ease;

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);

}


/* Small top line */

.nav-dropdown-menu::before {

    content: "";

    position: absolute;

    top: -5px;

    left: 50%;

    width: 9px;

    height: 9px;

    background: #11110f;

    border-left:
        1px solid rgba(255, 255, 255, .12);

    border-top:
        1px solid rgba(255, 255, 255, .12);

    transform:
        translateX(-50%) rotate(45deg);

}


/* Show dropdown */

.nav-dropdown:hover .nav-dropdown-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

}


/* Dropdown links */

.nav-dropdown-menu a {

    display: flex !important;

    align-items: center;

    gap: 16px;

    width: 100%;

    padding: 15px 14px;

    color: #fff;

    text-decoration: none;

    transition:
        background .25s ease,
        padding-left .25s ease;

}


/* Number */

.nav-dropdown-menu a>span {

    width: 25px;

    color: #c8a24a;

    font-size: 8px;

    letter-spacing: 1px;

    flex-shrink: 0;

}


/* Text container */

.nav-dropdown-menu a div {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


/* Main title */

.nav-dropdown-menu strong {

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: .3px;

}


/* Description */

.nav-dropdown-menu small {

    color:
        rgba(255, 255, 255, .4);

    font-size: 8px;

    font-weight: 400;

    letter-spacing: .3px;

}


/* Hover */

.nav-dropdown-menu a:hover {

    background:
        rgba(255, 255, 255, .06);

    padding-left: 19px;

}


/* =========================================================
   KEEP DESKTOP DROPDOWN HIDDEN ON MOBILE
========================================================= */

@media (max-width: 900px) {

    .nav-dropdown-menu {

        display: none;

    }

}

.nav-inquire {
    display: flex;
    gap: 9px;
    align-items: center;
    opacity: 1 !important;
}

.nav-inquire i {
    font-style: normal;
    font-size: 13px;
    color: var(--gold);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 17px;
    height: 1px;
    background: white;
    transition: transform .35s ease;
}

/* MOBILE MENU */

/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;

    background: var(--black);

    transform: translateY(-100%);

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        transform .7s var(--ease),
        opacity .35s ease,
        visibility 0s linear .7s;
}

.mobile-menu.open {
    transform: translateY(0);

    visibility: visible;
    opacity: 1;
    pointer-events: auto;

    transition:
        transform .7s var(--ease),
        opacity .35s ease;
}

.mobile-menu-inner {
    height: 100%;
    padding: 150px 28px 40px;
    display: flex;
    flex-direction: column;
}

.mobile-label,
.section-kicker {
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
}

.mobile-menu-inner a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    text-decoration: none;
    font: 42px/1 var(--serif);
}

.mobile-menu-inner a span {
    color: var(--gold);
}

/* =========================================================
   MOBILE ABOUT MENU
========================================================= */

.mobile-about {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    text-decoration: none;
    padding: 17px 0;
}


.mobile-about-toggle {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0;

    border: 0;

    background: transparent;

    color: inherit;

    font-family: var(--serif);
    font-size: 42px;

    text-align: left;

    cursor: pointer;

}


.mobile-about-toggle i {

    font-size: 11px;

    transition:
        transform .3s ease;

}


.mobile-about.open .mobile-about-toggle i {

    transform:
        rotate(180deg);

}


.mobile-about-links {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
        max-height .4s ease,
        opacity .3s ease,
        visibility 0s linear .4s;
}

.mobile-about.open .mobile-about-links {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    transition:
        max-height .4s ease,
        opacity .3s ease;
}


.mobile-about-links>div {

    min-height: 0;

}


.mobile-about.open .mobile-about-links {

    grid-template-rows: 1fr;

}


.mobile-about-links a {

    display: block;

    padding: 9px 0 9px 20px;

    color: rgba(255, 255, 255, .65);

    font-family: var(--serif);

    font-size: 22px;

    font-weight: 400;

    line-height: 1.3;

    letter-spacing: 0;

    text-decoration: none;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}


.mobile-about-links a:first-child {

    margin-top: 14px;

}


.mobile-about-links a:last-child {

    margin-bottom: 8px;

}

/* HERO */

.hero {
    position: relative;
    height: 100svh;
    min-height: 720px;
    overflow: hidden;
    isolation: isolate;
    background: #1a1916;
}

.hero-image,
.hero-shade,
.hero-vignette {
    position: absolute;
    inset: 0;
}

.hero-image {
    z-index: -4;
    transform: scale(1.08);
    transition: transform .15s linear;
}

.hero-image img {
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    z-index: -3;
    background: rgba(5, 5, 4, .38);
}

.hero-vignette {
    z-index: -2;
    /* background:
        linear-gradient(90deg, rgba(7,7,6,.82) 0%, rgba(7,7,6,.48) 38%, rgba(7,7,6,.12) 78%),
        linear-gradient(180deg, rgba(0,0,0,.4), transparent 32%, rgba(0,0,0,.35)); */
}

.hero-content {
    position: absolute;
    left: 10vw;
    top: 50%;
    width: min(760px, 80vw);
    transform: translateY(-39%);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 39px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .7);
}

.eyebrow-line {
    width: 64px;
    height: 1px;
    background: var(--gold);
}

.eyebrow b {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: revealUp 1s .95s var(--ease) forwards;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 109px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -4px;
    overflow: hidden;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(115%);
    animation: titleIn 1.25s var(--ease) forwards;
}

.title-line:first-child {
    animation-delay: 1s;
}

.title-line:nth-child(2) {
    animation-delay: 1.13s;
    margin-left: 5px;
}

.title-italic {
    font-style: italic;
    color: #e8e3d8;
}

/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero-description-wrap {
    margin-top: 25px;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 34px;
}

.hero-description {
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.button-gold {
    position: relative;
    min-height: 53px;
    padding: 0 23px;
    display: flex;
    align-items: center;
    gap: 36px;
    background: var(--gold);
    color: #171613;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    overflow: hidden;
}

.button-gold::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #f4efe4;
    transform: translateX(-102%);
    transition: transform .55s var(--ease);
}

.button-gold:hover::before {
    transform: translateX(0);
}

.button-gold span,
.button-gold i {
    position: relative;
    z-index: 1;
}

.button-gold i {
    font-size: 14px;
    line-height: 1;
    font-style: normal;
    color: #171613;
}



.text-link,
.line-link {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
}

.text-link {
    display: flex;
    align-items: center;
    gap: 9px;
}

.text-link span,
.line-link span {
    color: var(--gold);
}

.text-link:hover span,
.line-link:hover span {
    transform: translate(3px, -3px);
}

.hero-meta {
    position: absolute;
    left: 5.5vw;
    bottom: 31px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    font-size: 7px;
    letter-spacing: 2px;
}

.hero-meta>span:first-child {
    color: var(--gold);
}

.meta-rule {
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, .25);
}

.scroll-indicator {
    position: absolute;

    right: 3vw;
    bottom: 72px;

    z-index: 10;

    display: flex;
    align-items: center;
    gap: 17px;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 7px;
    font-weight: 600;
    letter-spacing: 3px;

    color: rgba(255, 255, 255, .55);

    writing-mode: vertical-rl;
    transform: rotate(180deg);

    transform-origin: center;
}

.scroll-indicator i {
    position: relative;

    width: 1px;
    height: 75px;

    background: rgba(255, 255, 255, .22);

    overflow: hidden;
}

.scroll-indicator i::after {
    content: "";
    position: absolute;
    left: 0;
    top: -27px;
    width: 1px;
    height: 27px;
    background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(75px);
    }

    100% {
        transform: translateY(75px);
    }

}

@keyframes titleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* COMMON SECTIONS */

.section {
    padding: 150px 8vw;
    background: var(--cream);
    color: var(--black);
}

.section-index {
    margin-bottom: 75px;
    color: #8f8b82;
    text-transform: uppercase;
    font-size: 8px;
    letter-spacing: 3px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 5vw;
}

.intro h2,
.section-heading h2,
.contact h2 {
    font: 400 clamp(60px, 7vw, 115px)/.9 var(--serif);
    letter-spacing: -3px;
}

.intro h2 em,
.section-heading h2 em,
.contact h2 em {
    font-style: italic;
}

.body-copy {
    max-width: 510px;
    margin: 50px 0 34px;
    color: #66635d;
    font-size: 14px;
    line-height: 1.9;
}

.line-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--dark-line);
    padding-bottom: 9px;
}

.line-link span {
    transition: transform .3s ease;
}

/* COLLECTIONS */

.collections {
    padding-top: 120px;
}

.margraf-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.margraf-card-link:hover {
    color: inherit;
    text-decoration: none;
}

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

.heading-note {
    max-width: 300px;
    color: #77736b;
    font-size: 12px;
    line-height: 1.8;
    padding-bottom: 10px;
}

.collection-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: 330px 330px;
    gap: 18px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    color: white;
    text-decoration: none;
}

.collection-large {
    grid-row: span 2;
}

.collection-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.collection-card:hover img {
    transform: scale(1.06);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .72));
}

.card-content {
    position: absolute;
    inset: auto 28px 27px;
}

.card-content span {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 2px;
}

.card-content h3 {
    font: 400 43px/1 var(--serif);
}

.card-content p {
    margin-top: 6px;
    font-size: 10px;
    opacity: .65;
}

.card-content b {
    position: absolute;
    right: 0;
    bottom: 4px;
    font-size: 20px;
    font-weight: 300;
    color: var(--gold);
}

/* APPLICATIONS */

.applications {
    background: #171715;
    color: var(--cream);
}

.application-list {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.application-item {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    min-height: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    text-decoration: none;
    transition: padding .5s var(--ease);
}

.application-item span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 2px;
}

.application-item strong {
    font: 400 clamp(30px, 4vw, 58px)/1 var(--serif);
}

.application-item i {
    font-style: normal;
    font-size: 20px;
    color: var(--gold);
}

.application-item:hover {
    padding-left: 20px;
}

/* PROJECTS */

.projects {
    background: var(--cream);
}

.project-heading {
    margin-bottom: 90px;
}

.project-feature {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    min-height: 620px;
}

.project-image {
    overflow: hidden;
}

.project-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.project-feature:hover img {
    transform: scale(1.035);
}

.project-info {
    padding: 70px 7%;
    background: #e7e2d8;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-info>span {
    font-size: 8px;
    letter-spacing: 2px;
    color: #77736b;
}

.project-info h3 {
    margin: 28px 0 32px;
    font: 400 clamp(50px, 5vw, 82px)/.88 var(--serif);
}

.project-info h3 em {
    font-style: italic;
}

.project-info p {
    max-width: 280px;
    margin-bottom: 35px;
    color: #68655f;
    font-size: 12px;
    line-height: 1.8;
}

/* CONTACT */

.contact {
    position: relative;
    min-height: 720px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: white;
}

.contact-image,
.contact-shade {
    position: absolute;
    inset: 0;
}

.contact-image img {
    height: 100%;
    object-fit: cover;
}

.contact-shade {
    background: rgba(10, 10, 9, .63);
}

.contact-inner {
    position: relative;
    z-index: 2;
    width: min(1000px, 84vw);
    text-align: center;
}

.contact-inner .section-kicker {
    margin-bottom: 35px;
}

.contact h2 {
    font-size: clamp(60px, 8vw, 125px);
}

.button-light {
    display: inline-flex;
    gap: 35px;
    align-items: center;
    margin-top: 55px;
    padding: 19px 25px;
    background: var(--cream);
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: transform .35s ease;
}

.button-light:hover {
    transform: translateY(-4px);
}

.button-light span {
    color: #9e7a32;
    font-size: 16px;
}

/* FOOTER */

.site-footer {
    padding: 70px 8vw 35px;
    background: var(--black);
    color: var(--cream);
}

.footer-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 80px;
}

.footer-top p {
    max-width: 260px;
    color: #88857e;
    font-size: 11px;
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    color: #6f6c66;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-bottom a {
    text-decoration: none;
    color: #aaa69d;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .site-header {
        height: 82px;
        padding: 0 24px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        left: 24px;
        width: calc(100% - 48px);
    }

    .hero-title {
        font-size: clamp(67px, 14vw, 110px);
        letter-spacing: -4px;
    }

    /* .hero-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    } */
    .hero-description-wrap {
        margin-top: 35px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        margin-top: 24px;
    }

    .hero-meta {
        left: 24px;
    }

    .intro-grid,
    .project-feature {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        gap: 55px;
    }

    .project-feature {
        min-height: auto;
    }

    .project-image {
        height: 60vw;
        min-height: 380px;
    }

    .project-info {
        min-height: 480px;
    }

    .collection-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 400px 300px;
    }

    .collection-large {
        grid-column: span 2;
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 680px;
    }

    .hero-content {
        top: 48%;
        transform: translateY(-35%);
    }

    .eyebrow {
        margin-bottom: 27px;
        font-size: 7px;
        letter-spacing: 2px;
    }

    .eyebrow-line {
        width: 35px;
    }

    .hero-title {
        font-size: clamp(55px, 16vw, 84px);
        letter-spacing: -3px;
    }

    .hero-title .title-line:nth-child(2) {
        margin-left: 0;
    }

    .hero-description-wrap {
        margin-top: 35px;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 24px;
    }

    .hero-description {
        font-size: 11px;
    }

    .hero-meta {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    .section {
        padding: 90px 24px;
    }

    .section-index {
        margin-bottom: 50px;
    }

    .intro h2,
    .section-heading h2,
    .contact h2 {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .body-copy {
        margin-top: 35px;
    }

    .section-heading {
        display: block;
        margin-bottom: 50px;
    }

    .heading-note {
        margin-top: 30px;
    }

    .collection-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 420px 300px 300px;
    }

    .collection-large {
        grid-column: auto;
    }

    .application-list {
        margin-top: 50px;
    }

    .application-item {
        grid-template-columns: 40px 1fr 25px;
        min-height: 90px;
    }

    .application-item strong {
        font-size: 29px;
    }

    .project-image {
        height: 110vw;
        min-height: 360px;
    }

    .project-info {
        min-height: 460px;
        padding: 50px 28px;
    }

    .contact {
        min-height: 620px;
    }

    .footer-top {
        display: block;
        padding-bottom: 50px;
    }

    .footer-top p {
        margin-top: 30px;
    }

    .footer-bottom {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* =========================================================
            SECTION 02 - MATERIALITY
            ========================================================= */

.intro-section {
    position: relative;

    width: 100%;

    min-height: 100vh;

    padding: 42px 10vw 70px;

    background: var(--cream);

    color: var(--black);

    overflow: hidden;
}


.intro-inner {
    width: 100%;
    min-height: calc(100vh - 112px);

    display: grid;

    grid-template-columns: 48% 52%;

    align-items: center;
}


/* =========================================================
            LEFT CONTENT
            ========================================================= */

.intro-content {
    padding-right: 5vw;

    transform: translateY(-8px);
}


.intro-index {
    margin-bottom: 43px;

    color: #858078;

    font-size: 8px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


/* =========================================================
            HEADING
            ========================================================= */

.intro-title {
    margin: 0;

    display: flex;

    flex-direction: column;

    font-family: "Playfair Display", serif;

    font-size: clamp(65px, 6.4vw, 108px);

    font-weight: 400;

    line-height: .88;

    letter-spacing: -4px;
}


.intro-title span {
    display: block;

    color: #171716;
}


.intro-title em {
    display: block;

    margin-top: 7px;

    color: #c9a55b;

    font-style: italic;

    font-weight: 400;
}


/* =========================================================
            DESCRIPTION
            ========================================================= */

.intro-description {
    margin-top: 47px;

    color: #77736c;

    font-size: 15px;

    font-weight: 400;

    line-height: 1.75;
}


/* =========================================================
            RIGHT IMAGE
            ========================================================= */

.intro-image-wrap {
    align-self: center;

    width: 100%;
}


.intro-image {
    position: relative;

    width: 100%;

    height: min(72vh, 625px);

    overflow: hidden;

    background: #e7e4dd;
}


.intro-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.02);

    transition: transform 1.4s var(--ease);
}


/* subtle interaction */

.intro-image-wrap:hover .intro-image img {
    transform: scale(1.055);
}


/* =========================================================
            IMAGE CAPTION
            ========================================================= */

.intro-caption {
    margin-top: 12px;

    color: #817d75;

    font-size: 7px;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 2px;

    text-transform: uppercase;
}

/* =========================================================
   MATERIALITY - MOBILE
========================================================= */

@media (max-width: 900px) {

    .intro-section {
        width: 100%;
        min-height: auto;

        padding: 100px 24px 65px;

        overflow: hidden;
    }

    .intro-inner {
        width: 100%;
        min-height: auto;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 48px;
    }

    /* LEFT CONTENT */

    .intro-content {
        width: 100%;
        padding-right: 0;

        transform: none;
    }

    .intro-index {
        margin-bottom: 28px;

        font-size: 7px;
        letter-spacing: 2.5px;
    }

    .intro-title {
        width: 100%;

        font-size: clamp(56px, 15vw, 72px);

        line-height: .88;

        letter-spacing: -3px;
    }

    .intro-title span,
    .intro-title em {
        width: 100%;
    }

    .intro-title em {
        margin-top: 5px;
    }

    .intro-description {
        margin-top: 32px;

        font-size: 10px;

        line-height: 1.7;
    }


    /* IMAGE */

    .intro-image-wrap {
        width: 100%;

        align-self: stretch;
    }

    .intro-image {
        width: 100%;

        height: 500px;

        min-height: 0;
    }

    .intro-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: center;
    }

    .intro-caption {
        margin-top: 10px;

        font-size: 6px;

        letter-spacing: 1.7px;

        line-height: 1.4;
    }

}

/* =========================================================
   ARCHIVE / COLLECTIONS - HORIZONTAL SLIDER
========================================================= */

.archive-section {
    position: relative;
    width: 100%;
    padding: 145px 0 70px;
    background: #0a1128;
    color: #f2eee6;
    overflow: hidden;
}

/* HEADER */

.archive-header {
    width: 100%;
    padding: 0 10vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 105px;
}

.archive-title-wrap {
    max-width: 850px;
}

.archive-index {
    margin-bottom: 28px;
    color: #c9a55b;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.archive-title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(65px, 6vw, 105px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -4px;
}

.archive-title em {
    color: #e8e3d8;
    font-style: italic;
}

.archive-description {
    margin-top: 95px;
    max-width: 220px;
    color: rgba(255, 255, 255, .35);
    font-size: 9px;
    line-height: 1.7;
}


/* =========================================================
   SLIDER
========================================================= */

.archive-slider {
    display: flex;
    gap: 8px;

    width: 100%;

    padding-left: 10vw;
    padding-right: 10vw;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;

    cursor: grab;

    user-select: none;
    -webkit-user-select: none;
    -webkit-overflow-scrolling: touch;
}

.archive-slider::-webkit-scrollbar {
    display: none;
}

.archive-slider.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}


/* =========================================================
   CARDS
========================================================= */

.archive-card {
    position: relative;

    flex: 0 0 42vw;
    height: 370px;

    overflow: hidden;

    color: white;
    text-decoration: none;

    scroll-snap-align: start;

    flex-shrink: 0;
}


/* =========================================================
   CARD IMAGE
========================================================= */

.archive-card-image {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.archive-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.02);

    transition:
        transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.archive-card:hover .archive-card-image img {
    transform: scale(1.06);
}


/* =========================================================
   OVERLAY
========================================================= */

.archive-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, .72) 100%);

    pointer-events: none;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.archive-card-info {
    position: absolute;

    left: 16px;
    right: 16px;
    bottom: 16px;

    display: flex;
    align-items: flex-end;

    gap: 12px;

    z-index: 2;
}

.archive-number {
    color: #c9a55b;
    font-size: 7px;
    letter-spacing: 1.5px;
}

.archive-card-info h3 {
    margin: 0;

    color: white;

    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.archive-card-info p {
    margin-top: 3px;

    color: rgba(255, 255, 255, .65);

    font-family: "Playfair Display", serif;
    font-size: 10px;
    font-style: italic;
}


/* =========================================================
   CONTROLS
========================================================= */

.archive-controls {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 28px;

    margin-top: 55px;
}

.archive-arrow {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(255, 255, 255, .2);

    background: transparent;
    color: #f2eee6;

    font-size: 22px;
    font-weight: 300;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.archive-arrow:hover {
    background: #c9a55b;
    color: #0a1128;
    border-color: #c9a55b;
}

.archive-arrow:active {
    transform: scale(.94);
}


/* =========================================================
   FOOTER / DRAG INDICATOR
========================================================= */

.archive-footer {
    display: flex;
    align-items: center;

    gap: 14px;

    margin: 28px 10vw 0;

    color: rgba(255, 255, 255, .35);

    font-size: 7px;
    font-weight: 600;
    letter-spacing: 2.5px;
}

.archive-progress {
    position: relative;

    width: 90px;
    height: 1px;

    background: rgba(255, 255, 255, .2);

    overflow: hidden;
}

.archive-progress span {
    display: block;

    width: 30px;
    height: 1px;

    background: #c9a55b;

    animation: archiveProgress 2s ease-in-out infinite;
}

@keyframes archiveProgress {

    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(90px);
    }

    100% {
        transform: translateX(90px);
    }

}


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

@media screen and (max-width: 900px) {

    .archive-section {
        padding: 100px 0 60px;
    }

    .archive-header {
        display: block;

        padding: 0 24px;

        margin-bottom: 60px;
    }

    .archive-index {
        margin-bottom: 25px;

        font-size: 7px;
        letter-spacing: 2.3px;
    }

    .archive-title {
        font-size: clamp(54px, 15vw, 72px);

        line-height: .9;
        letter-spacing: -3px;
    }

    .archive-description {
        margin-top: 35px;

        max-width: 180px;

        font-size: 9px;
    }

    .archive-slider {
        gap: 8px;

        padding-left: 24px;
        padding-right: 24px;

        scroll-snap-type: x mandatory;
    }

    .archive-card {
        flex: 0 0 78vw;
        height: 430px;
    }

    .archive-card-info {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .archive-controls {
        margin-top: 35px;
    }

    .archive-arrow {
        width: 42px;
        height: 42px;
    }

    .archive-footer {
        margin: 24px 24px 0;

        font-size: 6px;
    }

}

/* =========================================================
   ARCHIVE EDITORIAL HEADER
========================================================= */

.margraf-header {
    position: relative;

    width: 100%;
    height: 330px;

    padding: 0;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 20;
}


/* =========================================================
   CENTER HEADING
========================================================= */

.margraf-header-left {
    position: relative;

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* =========================================================
   SECTION NUMBER
========================================================= */

.margraf-index {
    position: absolute;

    left: 10vw;
    bottom: 12px;

    margin: 0;

    color: #c9a55b;

    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;

    line-height: 1;
    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.margraf-title {
    margin: 0;

    color: #f1eee5;

    font-family: "Playfair Display", serif;

    font-size: clamp(65px, 7vw, 115px);

    font-weight: 400;

    line-height: .82;

    letter-spacing: -5px;

    text-align: center;
}


/* FIRST LINE */

.margraf-title::first-line {
    color: #f1eee5;
}


/* ITALIC SECOND LINE */

.margraf-title em {
    color: #c9a55b;

    font-style: italic;

    font-weight: 400;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.margraf-description {
    position: absolute;

    right: 10vw;
    top: 32vh;

    max-width: 180px;

    margin: 0;

    color: rgba(255, 255, 255, .55);

    font-family: var(--sans);
    font-size: 10px;

    line-height: 1.45;

    letter-spacing: .2px;

    text-align: left;
}

/* =========================================================
   MARGRAF STYLE MARBLE CAROUSEL
========================================================= */

/* =========================================================
   MARGRAF ARCHIVE SECTION
========================================================= */

.margraf-archive {
    position: relative;

    width: 100%;
    min-height: 900px;

    background: #0a0d14;

    color: #fff;

    overflow: hidden;

    margin: 0;
    padding: 0;
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.margraf-slider {
    position: relative;

    width: 100%;

    height: 570px;

    margin-top: 85px;

    overflow: visible;
}


/* =========================================================
   STAGE
========================================================= */

.margraf-stage {
    position: relative;

    top: auto;
    left: auto;

    width: 100%;
    height: 450px;

    perspective: 1400px;
    perspective-origin: 50% 42%;
    transform-style: preserve-3d;

    overflow: visible;
}


/* =========================================================
   CARD
========================================================= */

.margraf-card {
    position: absolute;

    top: 0;
    left: 50%;

    width: 240px;
    height: 410px;

    margin: 0;

    transform:
        translateX(-50%) translateX(0) scale(.92);

    transform-origin: center center;

    transition:
        transform 1s cubic-bezier(.16, 1, .3, 1),
        opacity .7s ease,
        filter .7s ease;

    will-change: transform;

    pointer-events: none;

    opacity: 0;

    z-index: 1;
}


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

.margraf-image {
    width: 100%;
    height: 340px;

    overflow: hidden;

    border-radius: 10px;

    background: #1a1a1a;
}

.margraf-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    user-select: none;
    -webkit-user-drag: none;

    transition:
        transform 1s cubic-bezier(.16, 1, .3, 1);
}

.margraf-card:hover .margraf-image img {
    transform: scale(1.035);
}


/* =========================================================
   CARD TITLE
========================================================= */

.margraf-card-title {
    width: 100%;

    padding-top: 27px;

    text-align: center;

    color: #fff;

    white-space: nowrap;

    opacity: 0;

    transition:
        opacity .5s ease,
        transform .7s cubic-bezier(.16, 1, .3, 1);
}

.margraf-card-title strong {
    font-family: var(--sans);

    font-size: 15px;

    font-weight: 600;

    letter-spacing: -.2px;
}


/* =========================================================
   CENTER CARD
========================================================= */

.margraf-card.is-center {
    opacity: 1;

    z-index: 10;

    pointer-events: auto;

    transform:
        translateX(-50%) translateX(0) translateY(0) translateZ(80px) scale(1.28) rotateY(0deg);
}

.margraf-card.is-center .margraf-card-title {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   IMMEDIATE LEFT
========================================================= */

.margraf-card.is-left {
    opacity: 1;

    z-index: 8;

    transform:
        translateX(-50%) translateX(-315px) translateY(25px) translateZ(0) scale(.92) rotateY(-20deg);

    pointer-events: auto;
}

.margraf-card.is-left .margraf-card-title {
    opacity: 1;
}


/* =========================================================
   IMMEDIATE RIGHT
========================================================= */

.margraf-card.is-right {
    opacity: 1;
    z-index: 8;

    transform:
        translateX(-50%) translateX(315px) translateY(25px) translateZ(0) scale(.92) rotateY(20deg);

    pointer-events: auto;
}

.margraf-card.is-right .margraf-card-title {
    opacity: 1;
}


/* =========================================================
   FAR LEFT
========================================================= */

.margraf-card.is-far-left {
    opacity: 1;

    z-index: 4;

    transform:
        translateX(-55%) translateX(-490px) translateY(50px) translateZ(0) scale(.62) rotateY(-25deg);

    filter: brightness(.9);

}


/* =========================================================
   FAR RIGHT
========================================================= */

.margraf-card.is-far-right {
    opacity: 1;

    z-index: 4;

    transform:
        translateX(-50%) translateX(540px) translateY(65px) translateZ(-100px) scale(.62) rotateY(25deg);

    filter: brightness(.9);
}


/* =========================================================
   HIDDEN
========================================================= */

.margraf-card.is-hidden {
    opacity: 0;

    pointer-events: none;

    transform:
        translateX(-50%) translateY(100px) translateZ(-200px) scale(.2) rotateY(0deg);
}

/* =========================================================
   CONTROLS
========================================================= */

.margraf-controls {
    position: absolute;

    left: 50%;
    bottom: 15px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 26px;

    z-index: 50;
}

.margraf-controls button {
    width: 52px;
    height: 52px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, .22);

    background: transparent;

    color: #fff;

    font-family: DM Sans, sans-serif;

    font-size: 28px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.margraf-controls button:hover {
    background: rgba(255, 255, 255, .08);

    border-color: rgba(255, 255, 255, .5);
}

#margrafPrev:hover {
    transform: translateX(-3px);
}

#margrafNext:hover {
    transform: translateX(3px);
}

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

@media (max-width: 900px) {

    .margraf-archive {
        height: 590px;
    }

    .margraf-stage {
        top: 30px;

        height: 420px;

        perspective: 1000px;
    }

    .margraf-card {
        width: 180px;
        height: 310px;
    }

    .margraf-image {
        height: 310px;

        border-radius: 8px;
    }

    .margraf-card.is-center {
        transform:
            translateX(-50%) translateX(0) scale(1.18);
    }

    .margraf-card.is-left {
        transform:
            translateX(-50%) translateX(-225px) scale(.82);
    }

    .margraf-card.is-right {
        transform:
            translateX(-50%) translateX(225px) scale(.82);
    }

    .margraf-card.is-far-left {
        transform:
            translateX(-50%) translateX(-365px) rotateY(10deg) scale(.35);
    }

    .margraf-card.is-far-right {
        transform:
            translateX(-50%) translateX(365px) rotateY(-10deg) scale(.35);
    }

    .margraf-card-title {
        width: 100%;

        padding-top: 22px;

        text-align: center;

        color: #fff;

        white-space: nowrap;

        opacity: 0;

        transition:
            opacity .5s ease,
            transform .7s cubic-bezier(.16, 1, .3, 1);
    }

    .margraf-card-title strong {
        font-family: var(--sans);

        font-size: 15px;

        font-weight: 600;

        letter-spacing: -.2px;
    }

    .margraf-controls {
        bottom: 35px;

        gap: 20px;
    }

    .margraf-controls button {
        font-size: 24px;
    }

}

/* =========================================================
   MOBILE HERO - REFERENCE LAYOUT
   DESKTOP IS NOT AFFECTED
========================================================= */

@media (max-width: 600px) {

    .hero {
        position: relative;
        height: 100svh;
        min-height: 680px;
        overflow: hidden;
    }

    /* HERO CONTENT */
    .hero-content {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        transform: none;
    }


    /* =========================================
       EYEBROW
    ========================================= */

    .hero-content .eyebrow {
        position: absolute;
        left: 32px;
        top: 36%;

        width: calc(100% - 64px);
        margin: 0;

        display: flex;
        align-items: center;
        gap: 10px;

        font-size: 7px;
        letter-spacing: 2px;
    }

    .hero-content .eyebrow-line {
        width: 55px;
        flex-shrink: 0;
    }


    /* =========================================
       TITLE
    ========================================= */

    .hero-content .hero-title {
        position: absolute;
        left: 32px;
        top: 41%;

        width: calc(100% - 40px);
        margin: 0;

        font-size: clamp(55px, 16vw, 84px);
        line-height: .92;
        letter-spacing: -3px;
    }

    .hero-content .hero-title .title-line:nth-child(2) {
        margin-left: 0;
    }


    /* =========================================
       DESCRIPTION
    ========================================= */

    .hero-content .hero-description-wrap {
        position: absolute;
        left: 32px;
        top: 59%;

        width: calc(100% - 64px);
        margin: 0;
    }

    .hero-content .hero-description {
        font-size: 11px;
        line-height: 1.8;
    }


    /* =========================================
       HERO ACTIONS
    ========================================= */

    .hero-content .hero-actions {
        position: static;

        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;

        display: block;

        /* IMPORTANT:
           Remove .reveal animation behaviour
           from the action container */
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }


    /* =========================================
       DISCOVER SIPANI
    ========================================= */

    .hero-content .text-link {
        position: absolute;

        left: 32px;
        top: 69%;

        display: inline-flex;
        align-items: center;
        gap: 9px;

        margin: 0;

        font-size: 9px;
        letter-spacing: 2.5px;

        z-index: 30;
    }

    .hero-content .text-link::after {
        content: "";

        position: absolute;

        left: 0;
        bottom: -13px;

        width: 42px;
        height: 1px;

        background: var(--gold);
    }

    .hero-content .text-link span {
        color: var(--gold);
        display: inline-flex;
        align-items: center;
    }

    .text-link span i {
        font-size: 14px;
        line-height: 1;
    }


    /* =========================================
       EXPLORE MARBLES - BOTTOM BUTTON
    ========================================= */

    .hero-content .button-gold {
        position: absolute;

        left: 25px;
        right: 25px;
        bottom: 25px;

        width: auto;
        height: 55px;
        min-height: 55px;

        padding: 0 27px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        background: #d5aa58;
        border-radius: 7px;

        color: #171613;

        font-size: 11px;
        font-weight: 500;
        letter-spacing: 3px;

        z-index: 50;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
    }

    .hero-content .button-gold::before {
        display: none;
    }

    .hero-content .button-gold span {
        position: relative;
        z-index: 2;

        flex: 1;
        text-align: center;
    }

    .hero-content .button-gold i {
        font-size: 22px;
    }


    /* =========================================
       HIDE DESKTOP-ONLY HERO ELEMENTS
    ========================================= */

    .hero-meta,
    .scroll-indicator {
        display: none;
    }
}


/* =========================================
   MARGRAF ARCHIVE - MOBILE FIX
========================================= */

@media (max-width: 600px) {

    /* Keep the heading centered */
    .margraf-header-left {
        position: static;
        width: 100%;
    }

    .margraf-title {
        width: 100%;
        margin: 0;
        font-size: 52px;
        line-height: 0.92;
        letter-spacing: -2.5px;
        text-align: center;
    }

    .margraf-title em {
        display: block;
        margin-top: 4px;
        line-height: 0.92;
    }

    /* Section number - move it away from heading */
    .margraf-index {
        left: 24px;
        bottom: 35px;
        margin: 0;
        font-size: 7px;
        letter-spacing: 2px;
    }

    /* Description */
    .margraf-description {
        right: 24px;
        top: auto;
        bottom: 35px;
        max-width: 130px;
        font-size: 8px;
        line-height: 1.5;
    }

}

/* =========================================
   MARGRAF ARCHIVE - MOBILE FINAL FIX
========================================= */

@media (max-width: 600px) {

    /* Archive section */
    .margraf-archive {
        height: 785px;
        min-height: 785px;
        overflow: hidden;
    }

    /* Header */
    .margraf-header {
        height: 300px;
    }

    .margraf-header-left {
        position: static;
    }

    .margraf-title {
        width: 100%;
        margin: 0;
        font-size: 52px;
        line-height: .92;
        letter-spacing: -2.5px;
        text-align: center;
    }

    .margraf-title em {
        display: block;
        margin-top: 4px;
        line-height: .92;
    }

    /* Section number */
    .margraf-index {
        left: 24px;
        top: 75px;
        bottom: 0px;
        margin: 0;
        font-size: 7px;
        letter-spacing: 2px;
    }

    /* Description */
    .margraf-description {
        right: 24px;
        top: 75px;
        bottom: 0px;
        max-width: 130px;
        font-size: 8px;
        line-height: 1.5;
    }

    /* Slider */
    .margraf-slider {
        height: 430px;
        margin-top: 10px;
        overflow: visible;
    }

    /* Card stage */
    .margraf-stage {
        top: 0;
        height: 350px;
        overflow: visible;
    }

    /* Cards */
    .margraf-card {
        width: 180px;
        height: 310px;
    }

    .margraf-image {
        height: 310px;
    }

    /* Center card */
    .margraf-card.is-center {
        transform:
            translateX(-50%) translateX(0) scale(1.18);
    }

    /* Left card */
    .margraf-card.is-left {
        transform:
            translateX(-50%) translateX(-225px) scale(.82);
    }

    /* Right card */
    .margraf-card.is-right {
        transform:
            translateX(-50%) translateX(225px) scale(.82);
    }

    /* Far cards */
    .margraf-card.is-far-left {
        transform:
            translateX(-50%) translateX(-365px) rotateY(10deg) scale(.35);
    }

    .margraf-card.is-far-right {
        transform:
            translateX(-50%) translateX(365px) rotateY(-10deg) scale(.35);
    }

    /* Card title */
    .margraf-card-title {
        padding-top: 22px;
    }

    .margraf-card-title strong {
        font-size: 15px;
    }

    /* ARROWS */
    .margraf-controls {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;

        width: 100%;
        z-index: 100;
    }

    .margraf-controls button {
        position: relative;
        z-index: 101;

        width: 44px;
        height: 44px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid rgba(255, 255, 255, .35);
        background: #0a0d14;
        color: #fff;

        font-size: 24px;
        line-height: 1;

        opacity: 1;
        visibility: visible;
    }

}

.margraf-controls button {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;
}

.margraf-controls button i {
    display: block;
    font-size: 20px;
    font-weight: 400;
}

.margraf-controls button:hover {
    background: transparent;
    border-color: transparent;
    transform: none;
}

/* =========================================
   ABOUT / BEAUTY WITH STRENGTH
========================================= */

.about-strength {
    position: relative;
    width: 100%;
    min-height: 780px;
    background: #fff;
    color: #07122f;
    overflow: hidden;
}

.about-strength-inner {
    width: 100%;
    min-height: 780px;

    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;

    padding: 90px 10%;
    box-sizing: border-box;
}


/* =========================================
   LEFT VISUAL
========================================= */

.about-strength-visual {
    position: relative;
    height: 580px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-index {
    position: absolute;
    top: 70px;
    left: 0;

    font-family: DM Sans, sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #747474;

    text-transform: uppercase;
}


/* Slab stack */

.slab-stack {
    position: relative;

    width: 470px;
    height: 430px;

    margin-top: 20px;
}


/* Individual slabs */

.slab {
    position: absolute;

    width: 600px;
    height: 490px;

    left: 50%;
    top: 50%;

    transform-origin: center;
    border: 1px solid rgba(80, 80, 80, 0.25);

    box-sizing: border-box;
}


/* Back slab */

.slab-back {
    background: #e7e4dc;

    transform:
        translate(-50%, -50%) rotate(5deg) translate(-28px, 15px);

    opacity: 0.75;
}


/* Middle slab */

.slab-middle {
    background: #ebe9e2;

    transform:
        translate(-50%, -50%) rotate(3deg) translate(-15px, 8px);

    opacity: 0.9;
}


/* Main slab */

.slab-front {
    overflow: hidden;

    background: #ddd9d0;

    transform:
        translate(-50%, -50%) rotate(0deg);

    box-shadow:
        20px 30px 45px rgba(0, 0, 0, 0.08);
}

.slab-front img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Gold label */

.slab-label {
    position: absolute;

    right: 8px;
    bottom: 65px;

    font-family: DM Sans, sans-serif;
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2px;

    color: #cda545;

    text-transform: uppercase;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.about-strength-content {
    position: relative;

    padding-left: 50px;

    max-width: 590px;
}


.about-section-number {
    margin-bottom: 10px;

    font-family: DM Sans, sans-serif;
    color: #858078;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}


/* Main heading */

.about-strength-title {
    margin: 0;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(70px, 6.5vw, 108px);

    font-weight: 400;

    line-height: 0.84;

    letter-spacing: -4px;
}


/* First line */

.about-strength-title span {
    display: block;

    color: #07122f;
}


/* Second italic line */

.about-strength-title em {
    display: block;

    margin-left: 0;

    color: var(--gold);

    font-style: italic;
    font-weight: 400;
}


/* Description */

.about-strength-description {
    max-width: 420px;

    margin: 48px 0 48px;

    font-family: DM Sans, sans-serif;

    font-size: 16px;

    line-height: 1.7;

    color: #687080;
}


/* Link */

.about-strength-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 70px;

    padding-bottom: 14px;

    color: #07122f;

    text-decoration: none;

    font-family: DM Sans, sans-serif;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 1.5px;

    border-bottom: 1px solid #07122f;
}


.about-strength-link i {
    font-size: 15px;
    font-weight: 400;

    transition: transform 0.3s ease;
}


.about-strength-link:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .about-strength-inner {
        grid-template-columns: 1fr 1fr;

        padding: 70px 6%;
    }

    .about-strength-title {
        font-size: clamp(60px, 7vw, 85px);
    }

    .slab-stack {
        transform: scale(0.85);
    }

}


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

@media (max-width: 700px) {

    .about-strength {
        min-height: auto;
    }

    .about-strength-inner {
        min-height: auto;

        display: flex;
        flex-direction: column;

        padding: 80px 25px 90px;

        gap: 45px;
    }


    /* Visual */

    .about-strength-visual {
        width: 100%;
        height: 380px;

        order: 1;
    }

    .about-index {
        top: 5px;
        left: 0;
    }

    .slab-stack {
        width: 330px;
        height: 320px;

        margin-top: 25px;
    }

    .slab {
        width: 270px;
        height: 270px;
    }

    .slab-label {
        right: 0;
        bottom: 15px;

        font-size: 8px;
    }


    /* Content */

    .about-strength-content {
        width: 100%;

        padding-left: 0;

        order: 2;
    }

    .about-section-number {
        margin-bottom: 25px;

        color: rgba(7, 18, 47, 0.35);
    }

    .about-strength-title {
        font-size: clamp(58px, 15vw, 78px);

        line-height: 0.88;

        letter-spacing: -2.5px;
    }

    .about-strength-description {
        margin: 32px 0;

        max-width: 330px;

        font-size: 14px;
        line-height: 1.65;
    }

    .about-strength-link {
        gap: 45px;

        font-size: 10px;
    }

}

/* =========================================================
   ABOUT US - MARBLE IMAGE
========================================================= */

.about-strength {
    position: relative;
    width: 100%;
    background: #fff;
    color: #07122f;
    overflow: hidden;
}

.about-strength-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 60% 40%;
    padding: 100px 7%;
    align-items: center;
}


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

.about-strength-visual {
    position: relative;
    width: 100%;
    padding-right: 3vw;
}

.about-marble-image {
    width: 100%;
    height: min(68vw, 620px);
    overflow: hidden;
    background: #e8e6df;
}

.about-marble-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.about-marble-image:hover img {
    transform: scale(1.035);
}


/* Caption */

.about-marble-caption {
    margin-top: 12px;

    font-family: DM Sans, sans-serif;
    font-size: 7px;
    font-weight: 600;

    line-height: 1.4;
    letter-spacing: 2px;

    color: #817d75;

    text-transform: uppercase;
}


/* =========================================================
   CONTENT
========================================================= */

.about-strength-content {
    position: relative;
    padding-left: 15px;
    max-width: 590px;
}

.about-section-number {
    margin-bottom: 28px;

    font-family: DM Sans, sans-serif;
    font-size: 9px;
    font-weight: 600;

    line-height: 1;
    letter-spacing: 2.8px;

    color: #858078;

    text-transform: uppercase;
}

.about-strength-title {
    margin: 0;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(70px, 6.5vw, 108px);
    font-weight: 400;

    line-height: .84;
    letter-spacing: -4px;
}

.about-strength-title span {
    display: block;
    color: #07122f;
}

.about-strength-title em {
    display: block;

    margin-top: 5px;

    color: #c9a55b;

    font-style: italic;
    font-weight: 400;
}

.about-strength-description {
    max-width: 420px;

    margin: 48px 0;

    font-family: DM Sans, sans-serif;

    font-size: 14px;
    line-height: 1.8;

    color: #77736c;
}

.about-strength-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 55px;

    padding-bottom: 12px;

    border-bottom: 1px solid #07122f;

    color: #07122f;

    text-decoration: none;

    text-transform: uppercase;

    font-family: DM Sans, sans-serif;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;
}

.about-strength-link i {
    font-size: 14px;
    font-style: normal;

    transition: transform .3s ease;
}

.about-strength-link:hover i {
    transform: translate(3px, -3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-strength-inner {
        grid-template-columns: 1fr;

        padding: 90px 24px 70px;
    }

    .about-strength-visual {
        padding-right: 0;
    }

    .about-marble-image {
        height: 620px;
    }

    .about-strength-content {
        padding-left: 0;
        margin-top: 55px;
    }

}


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

@media (max-width: 600px) {

    .about-strength-inner {
        display: flex;
        flex-direction: column;

        padding: 80px 25px 70px;
    }

    /* IMAGE FIRST */

    .about-strength-visual {
        width: 100%;
        padding: 0;
    }

    .about-marble-image {
        width: 100%;
        height: 510px;
    }

    .about-marble-image img {
        object-fit: cover;
        object-position: center;
    }

    .about-marble-caption {
        margin-top: 10px;

        font-size: 6px;
        letter-spacing: 1.7px;
    }


    /* CONTENT BELOW IMAGE */

    .about-strength-content {
        width: 100%;

        padding: 0;
        margin-top: 55px;
    }

    .about-section-number {
        margin-bottom: 25px;

        font-size: 7px;
        letter-spacing: 2.5px;
    }

    .about-strength-title {
        font-size: clamp(56px, 15vw, 72px);

        line-height: .88;
        letter-spacing: -3px;
    }

    .about-strength-description {
        margin: 32px 0;

        max-width: 100%;

        font-size: 11px;
        line-height: 1.7;
    }

    .about-strength-link {
        gap: 40px;

        font-size: 9px;
    }

}

/* =========================================================
   FOUNDER PHILOSOPHY
========================================================= */

.philosophy-section {
    position: relative;

    width: 100%;
    height: 500vh;

    background: #fff;
    color: #000;

    overflow: clip;
}


/* =========================================================
   STICKY VIEWPORT
========================================================= */

.philosophy-sticky {
    position: sticky;

    top: 0;

    width: 100%;
    height: 100vh;

    min-height: 650px;

    overflow: hidden;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.philosophy-label {
    position: absolute;

    top: 70px;
    left: 6.5vw;

    z-index: 5;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;

    color: #cda545;

    text-transform: uppercase;
}


/* =========================================================
   MAIN WORD AREA
========================================================= */

.philosophy-main {
    position: absolute;

    left: 6.5vw;
    right: 6.5vw;

    top: 50%;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
}


/* =========================================================
   NUMBER NAVIGATION
========================================================= */

.philosophy-numbers {
    position: relative;

    width: 55px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-right: 10px;
}

.philosophy-number {
    display: block;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 3px;

    color: #263149;

    transition:
        color .5s ease,
        transform .5s ease;
}

.philosophy-number.active {
    color: #cda545;

    transform: translateX(2px);
}


/* =========================================================
   WORD CONTAINER
========================================================= */

.philosophy-word-wrap {
    position: relative;

    width: calc(100vw - 15vw);

    height: 190px;

    overflow: hidden;
}


/* =========================================================
   WORDS
========================================================= */

.philosophy-word {
    position: absolute;

    left: 0;
    top: 50%;

    width: 100%;

    transform:
        translateY(-50%) translateY(70px);

    opacity: 0;

    visibility: hidden;

    white-space: nowrap;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(100px, 10.5vw, 190px);

    font-weight: 400;

    line-height: .8;

    letter-spacing: -7px;

    color: #0a1128;

    transition:
        opacity .7s cubic-bezier(.16, 1, .3, 1),
        transform .8s cubic-bezier(.16, 1, .3, 1),
        visibility .7s;
}

.philosophy-word.active {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%) translateY(0);
}


/* =========================================================
   DESCRIPTION
========================================================= */

/* =========================================================
   DESCRIPTION
========================================================= */

.philosophy-description-wrap {
    position: absolute;

    left: 6.5vw;
    bottom: 12vh;

    width: 420px;
    height: 70px;

    overflow: hidden;
}

.philosophy-description {
    position: absolute;

    left: 0;
    top: 0;

    width: 100%;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;
    line-height: 1.65;

    color: #64708a;

    opacity: 0;
    visibility: hidden;

    transform: translateY(25px);

    transition:
        opacity .6s cubic-bezier(.16, 1, .3, 1),
        transform .7s cubic-bezier(.16, 1, .3, 1),
        visibility .6s;
}

.philosophy-description.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (min-width: 1400px) {

    .philosophy-label {
        top: 125px;
    }

    .philosophy-word {
        font-size: clamp(130px, 10vw, 190px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .philosophy-section {
        height: 500vh;
    }

    .philosophy-label {
        top: 60px;
        left: 7vw;
    }

    .philosophy-main {
        left: 7vw;
        right: 7vw;
    }

    .philosophy-numbers {
        width: 42px;
    }

    .philosophy-word {
        font-size: clamp(70px, 12vw, 120px);
        letter-spacing: -4px;
    }

    .philosophy-description {
        left: 7vw;
        bottom: 10vh;

        width: 320px;

        font-size: 13px;
    }

}


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

@media (max-width: 600px) {

    .philosophy-section {
        height: 500vh;
    }

    .philosophy-sticky {
        min-height: 600px;
    }


    /* LABEL */

    .philosophy-label {
        top: 150px;
        left: 25px;

        font-size: 8px;
        letter-spacing: 3px;
    }


    /* MAIN */

    .philosophy-main {
        left: 25px;
        right: 20px;

        top: 48%;
    }


    /* NUMBERS */

    .philosophy-numbers {
        width: 32px;

        gap: 11px;

        margin-right: 5px;
    }

    .philosophy-number {
        font-size: 8px;
        letter-spacing: 2px;
    }


    /* WORD */

    .philosophy-word-wrap {
        height: 120px;

        width: calc(100vw - 70px);
    }

    .philosophy-word {
        font-size: clamp(52px, 13vw, 78px);

        letter-spacing: -3px;

        line-height: .85;
    }


    /* DESCRIPTION */

    .philosophy-description-wrap {
        left: 25px;
        bottom: 55px;

        width: calc(100% - 50px);

        height: 70px;
    }

    .philosophy-description {
        font-size: 11px;
        line-height: 1.7;
    }

}


/* =========================================================
   SIPANI FAQ
========================================================= */

.sipani-faq {
    position: relative;

    width: 100%;

    background: #fff;
    color: #07122f;

    overflow: hidden;
}


.sipani-faq-inner {
    width: 100%;

    display: grid;
    grid-template-columns: 38% 62%;

    gap: 70px;

    padding: 140px 8vw 160px;

    box-sizing: border-box;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.sipani-faq-intro {
    position: sticky;

    top: 120px;

    align-self: start;

    padding-top: 5px;
}


.sipani-faq-number {
    margin-bottom: 35px;

    font-family: "DM Sans", sans-serif;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3px;

    color: #88837a;

    text-transform: uppercase;
}


.sipani-faq-title {
    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(70px, 7vw, 110px);

    font-weight: 400;

    line-height: .86;

    letter-spacing: -4px;
}


.sipani-faq-title em {
    display: block;

    margin-top: 5px;

    color: #cda545;

    font-style: italic;
    font-weight: 400;
}


.sipani-faq-intro-text {
    max-width: 290px;

    margin: 45px 0 0;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    line-height: 1.8;

    color: #77736c;
}


/* =========================================================
   FAQ LIST
========================================================= */

.sipani-faq-list {
    width: 100%;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.sipani-faq-item {
    position: relative;

    border-top: 1px solid rgba(7, 18, 47, .18);
}


.sipani-faq-item:last-child {
    border-bottom: 1px solid rgba(7, 18, 47, .18);
}


/* =========================================================
   QUESTION
========================================================= */

.sipani-faq-question {
    width: 100%;

    min-height: 92px;

    display: grid;

    grid-template-columns: 42px 1fr 30px;

    align-items: center;

    gap: 20px;

    padding: 25px 0;

    border: 0;

    background: transparent;

    color: #07122f;

    text-align: left;

    cursor: pointer;

    font-family: inherit;
}


.sipani-faq-index {
    align-self: start;

    padding-top: 4px;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;

    color: #aaa59c;
}


.sipani-faq-question-text {
    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 22px;

    font-weight: 400;

    line-height: 1.25;

    color: #07122f;

    transition: color .3s ease;
}


.sipani-faq-question:hover .sipani-faq-question-text {
    color: #b28b3f;
}


/* =========================================================
   ICON
========================================================= */

.sipani-faq-icon {
    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #07122f;

    font-size: 16px;

    transition:
        transform .4s ease,
        color .3s ease;
}


.sipani-faq-icon i {
    font-size: 15px;
    line-height: 1;
}


/* =========================================================
   ANSWER
========================================================= */

.sipani-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .55s cubic-bezier(.16, 1, .3, 1);
}


.sipani-faq-answer-inner {
    overflow: hidden;

    min-height: 0;

    padding-left: 62px;
    padding-right: 60px;

    opacity: 0;

    transform: translateY(-10px);

    transition:
        opacity .35s ease,
        transform .45s ease;
}


.sipani-faq-answer-inner p,
.sipani-faq-answer-inner ul {
    margin: 0 0 28px;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    line-height: 1.8;

    color: #77736c;
}


.sipani-faq-answer-inner ul {
    padding-left: 17px;
}


.sipani-faq-answer-inner li {
    margin-bottom: 10px;

    padding-left: 5px;
}


/* =========================================================
   ACTIVE
========================================================= */

.sipani-faq-item.active .sipani-faq-answer {
    grid-template-rows: 1fr;
}


.sipani-faq-item.active .sipani-faq-answer-inner {
    opacity: 1;

    transform: translateY(0);
}


.sipani-faq-item.active .sipani-faq-icon {
    color: #cda545;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .sipani-faq-inner {
        grid-template-columns: 35% 65%;

        gap: 45px;

        padding: 110px 6vw 130px;
    }

    .sipani-faq-title {
        font-size: clamp(60px, 8vw, 85px);
    }

    .sipani-faq-question-text {
        font-size: 19px;
    }

    .sipani-faq-answer-inner {
        padding-left: 52px;
        padding-right: 20px;
    }

}


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

@media (max-width: 700px) {

    .sipani-faq-inner {
        display: block;

        padding: 90px 25px 100px;
    }


    /* LEFT INTRO */

    .sipani-faq-intro {
        position: relative;
        top: auto;

        padding: 0;

        margin-bottom: 65px;
    }


    .sipani-faq-number {
        margin-bottom: 25px;

        font-size: 7px;
        letter-spacing: 2.5px;
    }


    .sipani-faq-title {
        font-size: clamp(58px, 16vw, 78px);

        line-height: .88;

        letter-spacing: -3px;
    }


    .sipani-faq-intro-text {
        max-width: 290px;

        margin-top: 28px;

        font-size: 11px;
        line-height: 1.7;
    }


    /* QUESTIONS */

    .sipani-faq-question {
        min-height: 78px;

        grid-template-columns: 30px 1fr 25px;

        gap: 10px;

        padding: 20px 0;
    }


    .sipani-faq-index {
        font-size: 7px;

        letter-spacing: 1.5px;
    }


    .sipani-faq-question-text {
        font-size: 17px;

        line-height: 1.3;
    }


    .sipani-faq-icon {
        width: 24px;
        height: 24px;
    }


    .sipani-faq-icon i {
        font-size: 14px;
    }


    /* ANSWERS */

    .sipani-faq-answer-inner {
        padding-left: 40px;
        padding-right: 25px;
    }


    .sipani-faq-answer-inner p,
    .sipani-faq-answer-inner ul {
        font-size: 11px;

        line-height: 1.75;

        margin-bottom: 25px;
    }

}

/* =========================================================
   MARGRAF COLLECTION SLIDER - MOBILE CONTROLS
   Keep arrows below the fixed header
========================================================= */

@media (max-width: 600px) {

    .margraf-controls {
        position: relative;
        z-index: 5;
        margin-top: 50px;
        padding-top: 0;
    }

    .margraf-controls button {
        position: relative;
        z-index: 5;
    }

}


/* =========================================================
   SIPANI CONTACT SECTION
========================================================= */

.sipani-contact {
    position: relative;

    background: #0a0d14;
    color: #f5f2ea;

    padding: 150px 6vw 120px;

    overflow: hidden;
}


.sipani-contact-inner {
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.sipani-contact-header {

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 60px;

    padding-bottom: 90px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


.sipani-contact-number {

    font-size: 10px;

    letter-spacing: 2.5px;

    color: rgba(255, 255, 255, 0.55);
}


.sipani-contact-heading {

    display: grid;

    grid-template-columns: 1fr 0.55fr;

    gap: 80px;

    align-items: end;
}


.sipani-contact-heading h2 {

    margin: 0;

    font-family: "Italiana", serif;

    font-size: clamp(80px, 9vw, 150px);

    font-weight: 400;

    line-height: 0.8;

    letter-spacing: -4px;
}


.sipani-contact-heading h2 em {

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 400;

    color: #c8a24a;
}


.sipani-contact-heading p {

    margin: 0;

    max-width: 300px;

    font-size: 14px;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.62);
}


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

.sipani-contact-body {

    display: grid;

    grid-template-columns: 0.65fr 1.35fr;

    gap: 100px;

    padding: 100px 0;
}


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

.sipani-contact-info {

    display: flex;

    flex-direction: column;

    gap: 55px;
}


.sipani-contact-info-block {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.sipani-contact-info-block>span {

    font-size: 9px;

    letter-spacing: 2.5px;

    color: rgba(255, 255, 255, 0.45);
}


.sipani-contact-info-block a {

    color: #f5f2ea;

    text-decoration: none;

    font-size: 16px;

    transition: opacity 0.3s ease;
}


.sipani-contact-info-block a:hover {

    opacity: 0.55;
}


.sipani-contact-info-block p {

    max-width: 320px;

    margin: 0;

    font-size: 13px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.55);
}


/* =========================================================
   FORM
========================================================= */

.sipani-contact-form-wrap {

    /*border-top: 1px solid rgba(255, 255, 255, 0.2);*/

    padding-top: 5px;
}


.sipani-contact-form {

    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 45px;

    row-gap: 38px;
}


.sipani-form-field {

    display: flex;

    flex-direction: column;

    position: relative;
}


.sipani-form-field label {

    margin-bottom: 12px;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.45);
}


.sipani-form-field input,
.sipani-form-field select,
.sipani-form-field textarea {

    width: 100%;

    border: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);

    background: transparent;

    border-radius: 0;

    outline: none;

    padding: 12px 0;

    color: #f5f2ea;

    font-family: inherit;

    font-size: 14px;

    transition: border-color 0.3s ease;
}


.sipani-form-field input:focus,
.sipani-form-field select:focus,
.sipani-form-field textarea:focus {

    border-bottom-color: #c8a24a;
}


.sipani-form-field input::placeholder,
.sipani-form-field textarea::placeholder {

    color: rgba(255, 255, 255, 0.3);
}


.sipani-form-field select {

    appearance: none;

    -webkit-appearance: none;

    cursor: pointer;
}


.sipani-form-field select option {

    color: #07102d;

    background: #f5f2ea;
}


.sipani-form-message {

    grid-column: 1 / -1;
}


.sipani-form-field textarea {

    resize: none;

    min-height: 105px;
}


/* =========================================================
   SUBMIT
========================================================= */

.sipani-contact-submit {

    grid-column: 1 / -1;

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;

    margin-top: 10px;

    padding: 18px 0;

    background: transparent;

    border: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.5);

    color: #f5f2ea;

    font-family: inherit;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;

    cursor: pointer;

    transition: border-color 0.3s ease;
}


.sipani-contact-submit i {

    font-size: 18px;

    transition: transform 0.3s ease;
}


.sipani-contact-submit:hover {

    border-bottom-color: #c8a24a;
}


.sipani-contact-submit:hover i {

    transform: translate(5px, -5px);
}


/* =========================================================
   LOCATIONS
========================================================= */

.sipani-contact-locations {

    border-top: 1px solid rgba(255, 255, 255, 0.18);

    padding-top: 30px;
}


.sipani-location-heading {

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 60px;

    margin-bottom: 35px;
}


.sipani-location-heading>span {

    font-size: 9px;

    letter-spacing: 2.5px;

    color: rgba(255, 255, 255, 0.45);
}


.sipani-location-heading p {

    margin: 0;

    font-size: 13px;

    color: rgba(255, 255, 255, 0.5);
    text-align: right;
}


/* =========================================================
   LOCATION ROWS
========================================================= */

.sipani-location-list {

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.sipani-location-item {

    display: grid;

    grid-template-columns: 70px 1fr auto;

    align-items: center;

    min-height: 115px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

    color: #f5f2ea;

    text-decoration: none;

    transition: padding 0.35s ease;
}


.sipani-location-item:hover {

    padding-left: 15px;
}


.location-number {

    font-size: 9px;

    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.4);
}


.location-content {

    display: flex;

    align-items: baseline;

    gap: 25px;
}


.location-content h3 {

    margin: 0;

    font-family: "Italiana", serif;

    font-size: 35px;

    font-weight: 400;
}


.location-content span {

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.4);
}


.sipani-location-item>i {

    font-size: 17px;

    transition: transform 0.3s ease;
}


.sipani-location-item:hover>i {

    transform: translate(5px, -5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sipani-contact {

        padding: 110px 6vw 90px;
    }


    .sipani-contact-header {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .sipani-contact-heading {

        grid-template-columns: 1fr 0.7fr;

        gap: 50px;
    }


    .sipani-contact-body {

        grid-template-columns: 1fr;

        gap: 70px;
    }


    .sipani-contact-info {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 40px;
    }

}


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

@media (max-width: 600px) {

    .sipani-contact {

        padding: 80px 24px 70px;
    }


    .sipani-contact-header {

        padding-bottom: 60px;
    }


    .sipani-contact-heading {

        display: block;
    }


    .sipani-contact-heading h2 {

        font-size: 70px;

        line-height: 0.83;

        letter-spacing: -2px;
    }


    .sipani-contact-heading p {

        max-width: 320px;

        margin-top: 40px;

        font-size: 13px;
    }


    .sipani-contact-body {

        padding: 65px 0;

        gap: 60px;
    }


    .sipani-contact-info {

        display: flex;

        gap: 30px;
    }


    .sipani-contact-info-block p {

        max-width: 100%;
    }


    .sipani-contact-form {

        display: flex;

        flex-direction: column;

        gap: 30px;
    }


    .sipani-contact-submit {

        margin-top: 10px;
    }


    .sipani-location-heading {

        display: block;
    }


    .sipani-location-heading p {

        margin-top: 18px;

        max-width: 300px;
    }


    .sipani-location-item {

        grid-template-columns: 35px 1fr auto;

        min-height: 100px;

        gap: 10px;
    }


    .location-content {

        display: block;
    }


    .location-content h3 {

        font-size: 29px;

        margin-bottom: 7px;
    }


    .location-content span {

        font-size: 8px;
    }


    .sipani-location-item>i {

        font-size: 15px;
    }

}

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

.sipani-footer {

    position: relative;

    background: #0a1128;

    color: #f4f1e9;

    padding: 110px 6vw 35px;

    overflow: hidden;
}


.sipani-footer-inner {

    max-width: 1500px;

    margin: 0 auto;
}


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

.sipani-footer-top {

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 100px;

    padding-bottom: 100px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


/* =========================================================
   LOGO
========================================================= */

.sipani-footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #f4f1e9;

    text-decoration: none;
}


.sipani-footer-logo img {

    width: 80px;
    height: 80px;

    object-fit: contain;
}


.sipani-footer-logo div {

    display: flex;

    flex-direction: column;

    gap: 0px;
}


.sipani-footer-logo strong {

    font-size: 26px;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: "Halant", serif;
}


.sipani-footer-logo span {

    font-size: 9.7px;
    letter-spacing: 0.9px;
    color: rgba(255, 255, 255, 0.45);
    font-family: "Montserrat", sans-serif;
}


/* =========================================================
   BIG FOOTER TITLE
========================================================= */

.sipani-footer-brand h2 {

    margin: 80px 0 0;

    font-family: "Italiana", serif;

    font-size: clamp(80px, 10vw, 155px);

    font-weight: 400;

    line-height: 0.8;

    letter-spacing: -4px;
}


.sipani-footer-brand h2 em {

    font-family: "Playfair Display", serif;

    font-style: italic;

    font-weight: 400;

    color: #c8a24a;
}


/* =========================================================
   NAVIGATION
========================================================= */

.sipani-footer-navigation {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 40px;

    padding-top: 10px;
}


.sipani-footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 15px;
}


.sipani-footer-label {

    margin-bottom: 18px;

    font-size: 11px;

    letter-spacing: 2.5px;

    color: rgba(255, 255, 255, 0.4);
}


.sipani-footer-column a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.82);

    text-decoration: none;

    font-size: 16px;

    line-height: 1.4;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.sipani-footer-column a:hover {

    color: #c8a24a;

    transform: translateX(4px);
}


.sipani-footer-column a i {

    font-size: 11px;
}


/* =========================================================
   STATEMENT
========================================================= */

.sipani-footer-statement {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    padding: 55px 0;
}


.sipani-footer-statement p {

    max-width: 450px;

    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: 27px;

    line-height: 1.3;

    font-weight: 400;

    color: rgba(255, 255, 255, 0.72);
}


.sipani-footer-inquire {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 10px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.5);

    color: #f4f1e9;

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.sipani-footer-inquire i {

    font-size: 16px;

    transition: transform 0.3s ease;
}


.sipani-footer-inquire:hover i {

    transform:
        translate(5px, -5px);
}


/* =========================================================
   BOTTOM
========================================================= */

.sipani-footer-bottom {

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 12px;

    letter-spacing: 1.5px;

    color: rgba(255, 255, 255, 0.4);
}


.sipani-footer-bottom span:nth-child(2) {

    text-align: center;
}


.sipani-footer-bottom a {

    justify-self: end;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.65);

    text-decoration: none;

    text-transform: uppercase;

    font-size: 8px;

    letter-spacing: 1.5px;
}


.sipani-footer-bottom a i {

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sipani-footer {

        padding: 90px 6vw 30px;
    }


    .sipani-footer-top {

        grid-template-columns: 1fr;

        gap: 75px;
    }


    .sipani-footer-brand h2 {

        margin-top: 60px;
    }


    .sipani-footer-navigation {

        max-width: 650px;
    }

}


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

@media (max-width: 600px) {

    .sipani-footer {

        padding: 70px 24px 30px;
    }


    .sipani-footer-top {

        padding-bottom: 65px;

        gap: 60px;
    }


    .sipani-footer-logo img {

        width: 50px;

        height: 50px;
    }


    .sipani-footer-brand h2 {

        margin-top: 55px;

        font-size: 70px;

        line-height: 0.83;

        letter-spacing: -2px;
    }


    .sipani-footer-navigation {

        grid-template-columns:
            1fr 1fr;

        gap: 50px 30px;
    }


    .sipani-footer-column:last-child {

        grid-column: 1 / -1;
    }


    .sipani-footer-statement {

        flex-direction: column;

        align-items: flex-start;

        padding: 45px 0;

        gap: 35px;
    }


    .sipani-footer-statement p {

        font-size: 23px;

        max-width: 330px;
    }


    .sipani-footer-bottom {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .sipani-footer-bottom span:nth-child(2) {

        text-align: left;
    }


    .sipani-footer-bottom a {

        justify-self: auto;
    }

}


/* =========================================================
   FOUNDER - THE MAN BEHIND THE VISION
========================================================= */

.founder-section {
    position: relative;
    width: 100%;
    height: 420vh;
    background: #0a0d14;
    color: #f4f2ec;
    overflow: clip;
}


/* =========================================================
   STICKY VIEWPORT
========================================================= */

.founder-sticky {
    position: sticky;

    /* Header is fixed at the top */
    top: 78px;

    width: 100%;
    height: calc(100vh - 78px);
    min-height: 650px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   TOP INFORMATION
========================================================= */

.founder-top-left,
.founder-top-center,
.founder-top-right {
    position: absolute;

    top: 28px;

    z-index: 20;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: rgba(244, 242, 236, .75);

    white-space: nowrap;
}

.founder-top-left {
    left: 3vw;
}

.founder-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.founder-top-right {
    right: 3vw;
}


/* =========================================================
   INTRO TITLE
========================================================= */

.founder-intro {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: min(900px, 80vw);

    text-align: center;

    z-index: 12;

    pointer-events: none;

    opacity: 1;
}


.founder-intro-label {
    margin-bottom: 28px;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 5px;

    text-transform: uppercase;

    color: #f4f2ec;
}


.founder-intro h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(60px,
            7vw,
            118px);

    font-weight: 400;

    line-height: .88;

    letter-spacing: -4px;

    color: #cda545;

    text-transform: uppercase;
}


.founder-intro h2 span {
    display: block;
}


/* =========================================================
   FOUNDER IMAGE
========================================================= */

.founder-image-wrap {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 30vw;
    max-width: 540px;

    height: 64vh;
    max-height: 720px;

    transform:
        translate(-50%, -50%) scale(.82);

    opacity: 0;

    overflow: hidden;

    border-radius: 22px;

    z-index: 8;

    will-change:
        transform,
        opacity,
        width,
        height,
        border-radius;

    box-shadow:
        0 35px 90px rgba(0, 0, 0, .4);
}


.founder-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
       Keep the founder's head visible.
    */

    object-position: center top;

    transform: scale(1);

    will-change: transform;
}


.founder-image-overlay {
    position: absolute;

    inset: 0;

    background: rgba(7, 13, 28, .12);

    pointer-events: none;

    opacity: 0;
}


/* =========================================================
   FOUNDER NAME
========================================================= */

.founder-name {
    position: absolute;

    left: 5vw;
    bottom: 10vh;

    z-index: 15;

    opacity: 0;

    transform: translateX(-40px);

    pointer-events: none;

    text-align: left;

    will-change:
        opacity,
        transform;
}


.founder-name h2 {
    margin: 0;

    display: flex;
    flex-direction: column;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(65px,
            7vw,
            120px);

    font-weight: 400;

    line-height: .82;

    letter-spacing: -5px;

    color: #f4f2ec;

    text-transform: uppercase;
}


.founder-name h2 span {
    display: block;
}


.founder-role {
    margin-top: 35px;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 6px;

    color: #cda545;

    text-transform: uppercase;
}


/* =========================================================
   DESKTOP LARGE
========================================================= */

@media (min-width: 1400px) {

    .founder-image-wrap {
        width: 35vw;
        height: 80vh;
    }

    .founder-intro h2 {
        font-size: clamp(80px,
                7vw,
                125px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .founder-section {
        height: 400vh;
    }

    .founder-sticky {
        top: 82px;
        height: calc(100vh - 82px);
        min-height: 600px;
    }


    .founder-top-left,
    .founder-top-center,
    .founder-top-right {

        top: 22px;

        font-size: 8px;

        letter-spacing: 3px;
    }


    .founder-intro {
        width: 90vw;
    }


    .founder-intro-label {
        font-size: 8px;
        letter-spacing: 3px;

        margin-bottom: 22px;
    }


    .founder-intro h2 {
        font-size: clamp(48px,
                9vw,
                85px);

        letter-spacing: -3px;
    }


    .founder-image-wrap {
        width: 42vw;
        height: 62vh;
    }


    .founder-name {
        left: 5vw;
        bottom: 8vh;
    }


    .founder-name h2 {
        font-size: clamp(55px,
                9vw,
                90px);
    }

}


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

@media (max-width: 600px) {

    .founder-section {
        height: 430vh;
    }


    .founder-sticky {
        top: 82px;

        height: calc(100vh - 82px);

        min-height: 520px;
    }


    /* TOP INFORMATION */

    .founder-top-left,
    .founder-top-center,
    .founder-top-right {

        top: 18px;

        font-size: 6px;

        letter-spacing: 2px;
    }


    .founder-top-left {
        left: 18px;
    }


    .founder-top-center {
        display: none;
    }


    .founder-top-right {
        right: 18px;
    }


    /* INTRO */

    .founder-intro {
        width: 90vw;
    }


    .founder-intro-label {

        font-size: 7px;

        letter-spacing: 2.5px;

        margin-bottom: 18px;
    }


    .founder-intro h2 {

        font-size: clamp(42px,
                11vw,
                65px);

        line-height: .9;

        letter-spacing: -2px;
    }


    /* IMAGE */

    .founder-image-wrap {

        width: 76vw;

        height: 62vh;

        max-width: none;
        max-height: none;

        border-radius: 16px;
    }


    /* NAME */

    .founder-name {

        left: 24px;

        bottom: 8vh;
    }


    .founder-name h2 {

        font-size: clamp(48px,
                13vw,
                70px);

        line-height: .82;

        letter-spacing: -3px;
    }


    .founder-role {

        margin-top: 24px;

        font-size: 7px;

        letter-spacing: 4px;
    }

}


/* =========================================================
   TIME / LEGACY TRANSITION
========================================================= */

.time-legacy-section {
    position: relative;

    width: 100%;

    /*
       Gives enough scroll distance
       for the cinematic transition.
    */
    height: 400vh;

    background: #090c13;

    overflow: clip;
}


/* =========================================================
   STICKY VIEWPORT
========================================================= */

.time-legacy-sticky {
    position: sticky;

    top: 78px;

    width: 100%;
    height: calc(100vh - 78px);

    min-height: 600px;

    overflow: hidden;

    background: #090c13;
}


/* =========================================================
   DARK BACKGROUND
========================================================= */

.time-legacy-dark {
    position: absolute;

    inset: 0;

    background: #090c13;

    z-index: 3;

    opacity: 1;

    will-change: opacity;
}


/* =========================================================
   MARBLE
========================================================= */

.time-legacy-marble {
    position: absolute;

    inset: 0;

    z-index: 2;

    overflow: hidden;

    opacity: 1;
}


.time-legacy-marble img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    transform: scale(1.08);

    will-change:
        transform,
        opacity;
}


/* =========================================================
   TEXT LAYER
========================================================= */

.time-legacy-copy {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    text-align: center;
}

.time-copy-three {
    pointer-events: auto;
}


/* =========================================================
   COMMON TEXT
========================================================= */

.time-copy {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 90%;

    transform:
        translate(-50%, -50%);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(48px, 5.4vw, 92px);

    font-weight: 400;

    line-height: .88;

    letter-spacing: -3px;

    text-transform: uppercase;

    will-change:
        opacity,
        transform;
}


/* Each line */

.time-copy span {
    display: block;
}


/* =========================================================
   FIRST MESSAGE
========================================================= */

.time-copy-one {

    color: #f0eee8;

    opacity: 0;

    transform:
        translate(-50%, -46%);
}


/* =========================================================
   SECOND MESSAGE
========================================================= */

.time-copy-two {

    color: #151515;

    opacity: 0;

    transform:
        translate(-50%, -42%);
}


/* =========================================================
   THIRD MESSAGE
========================================================= */

.time-copy-three {

    color: #151515;

    opacity: 0;

    transform:
        translate(-50%, -40%);
}

/* =========================================================
   FINAL SIPANI MARBLES STAGE
========================================================= */

.time-copy-three {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Tagline */

.time-copy-tagline {
    margin-top: 34px;

    font-family: var(--sans);

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 5px;

    line-height: 1.4;

    text-transform: uppercase;

    color: #111722;

    white-space: nowrap;

    /* background: #d8ad32; */

    padding: 3px 10px;
}


/* Explore button */

.time-copy-button {
    margin-top: 42px;
    min-height: 53px;
    width: 270px;
    padding: 0 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    font-family: var(--sans);
}



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

@media (max-width: 600px) {

    .time-legacy-section {
        height: 420vh;
    }


    .time-legacy-sticky {
        top: 82px;

        height: calc(100vh - 82px);

        min-height: 520px;
    }


    .time-copy {

        width: 92%;

        font-size:
            clamp(40px, 11vw, 64px);

        line-height: .9;

        letter-spacing: -2px;

    }


    .time-legacy-marble img {
        transform: scale(1.12);
    }

    .time-copy-tagline {
        margin-top: 24px;

        font-size: 8px;

        letter-spacing: 2.5px;

        padding: 3px 6px;

        white-space: normal;

        width: max-content;
        max-width: 90%;
    }


    .time-copy-button {
        margin-top: 28px;

        width: 240px;

        height: 50px;

        font-size: 9px;

        letter-spacing: 2.5px;

        gap: 12px;
    }


    .time-copy-button i {
        font-size: 12px;
    }

}

/* =========================================================
   COLLECTIONS / MARBLE ARCHIVE
   MOBILE RESPONSIVE FIX
   ========================================================= */

@media (max-width: 600px) {

    /* Keep the archive section from clipping
       the editorial header content */
    .margraf-archive {
        overflow: hidden;
    }

    /* Give the header enough room */
    .margraf-header {
        height: 300px;
        position: relative;
        overflow: visible;
    }

    /* -----------------------------------------
       02 / MARBLE ARCHIVE
       ----------------------------------------- */

    .margraf-index {
        position: absolute;
        left: 24px;
        top: 48px;
        bottom: auto;

        margin: 0;
        font-size: 7px;
        line-height: 1.2;
        letter-spacing: 2px;

        white-space: nowrap;
    }

    /* -----------------------------------------
       Slabs held in light.
       Catalogued in silence.
       ----------------------------------------- */

    .margraf-description {
        position: absolute;

        right: 24px;
        top: 48px;
        bottom: auto;

        width: auto;
        max-width: 110px;

        margin: 0;

        font-size: 8px;
        line-height: 1.5;

        white-space: normal;
    }

    /* -----------------------------------------
       Heading
       ----------------------------------------- */

    .margraf-header-left {
        position: relative;
        width: 100%;
        height: 100%;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .margraf-title {
        width: calc(100% - 40px);
        max-width: 100%;
        margin: 0;

        font-size: 52px;
        line-height: .92;
        letter-spacing: -2.5px;

        text-align: center;
    }

    .margraf-title em {
        display: block;
        margin-top: 4px;
        line-height: .92;
    }
}


/* =========================================================
   VERY SMALL PHONES
   320px – 360px
   ========================================================= */

@media (max-width: 360px) {

    .margraf-header {
        height: 290px;
    }

    .margraf-index {
        left: 18px;
        top: 42px;
        font-size: 6.5px;
        letter-spacing: 1.7px;
    }

    .margraf-description {
        right: 18px;
        top: 42px;
        max-width: 95px;
        font-size: 7px;
        line-height: 1.45;
    }

    .margraf-title {
        width: calc(100% - 30px);
        font-size: 46px;
        letter-spacing: -2px;
    }
    .logo-copy strong {
        font-size: 14px;
        /* letter-spacing: 0.5px; */
        font-family: "Halant", serif;
    }
    .logo-copy small {
        font-size: 6px;
        letter-spacing: 0.3px;
        opacity: .55;
        font-family: "Montserrat", sans-serif;
    }
}


/* =========================================================
   TIME / LEGACY - TEXT VISIBILITY
========================================================= */



.time-legacy-copy {
    
    z-index: 5;
}


/* Main legacy text */
.time-copy {
    color: #fff;
    text-shadow: none;
}
.time-copy-span {
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.35),
        0 1px 3px rgba(0, 0, 0, 0.45);
}

/* Individual text spans */
.time-copy-tagline {
    color: #fff;
}


/* Slightly softer white for secondary text */
.time-copy-three {
    color: rgba(255, 255, 255, 0.95);
}


/* =========================================================
   CONTACT FORM VALIDATION
   ========================================================= */

.sipani-form-error {
    border-color: #b3261e !important;
    box-shadow: 0 0 0 1px #b3261e;
}

.sipani-form-message {
    margin-top: 18px;
    min-height: 20px;

    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.5;

    transition: opacity 0.3s ease;
}

.sipani-form-message.success {
    color: #55704f;
}

.sipani-form-message.error {
    color: #a33b32;
}

.sipani-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}