/* ============================================================
   TUSDIO × TASTE & FLAVOUR
   Luxury Hospitality Case Study
   ============================================================ */

:root {
    --black: #080706;
    --black-soft: #100d0b;
    --black-warm: #15100d;

    --paper: #f2ebe1;
    --paper-soft: #cfc4b5;
    --paper-muted: #8d8174;

    --wine: #6f0018;
    --wine-light: #a52b43;
    --wine-deep: #39000c;

    --line: rgba(242, 235, 225, .13);
    --line-soft: rgba(242, 235, 225, .07);

    --display: "Fraunces", Georgia, serif;
    --body: "DM Sans", Arial, sans-serif;
    --devanagari: "Noto Serif Devanagari", serif;

    --ease: cubic-bezier(.22, 1, .36, 1);
}


/* ============================================================
   RESET
   ============================================================ */

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

html {
    background: var(--black);
    color: var(--paper);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--paper);
    font-family: var(--body);
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    background: var(--wine);
    color: white;
}

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

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

button {
    font: inherit;
}

p {
    line-height: 1.75;
    color: var(--paper-soft);
}

em {
    font-family: var(--display);
    font-weight: 300;
}


/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.skip-link {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 9999;
    background: var(--paper);
    color: var(--black);
    padding: 12px 18px;
    font-size: 12px;
    transition: top .3s ease;
}

.skip-link:focus {
    top: 20px;
}


/* ============================================================
   NAVBAR
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000;

    background: rgba(8, 7, 6, .76);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(242, 235, 225, .09);
}

.nav-container {
    max-width: 1440px;
    height: 72px;

    margin: auto;
    padding: 0 42px;

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    font-family: var(--display);
    font-size: 23px;
    font-weight: 500;
    letter-spacing: -.02em;
}

.logo-link:hover {
    opacity: .65;
}

.site-header nav {
    margin-left: auto;
}

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    position: relative;

    font-size: 12px;
    letter-spacing: .01em;

    color: var(--paper-soft);

    transition: color .3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 100%;
    height: 1px;

    background: var(--wine-light);

    transform: scaleX(0);
    transform-origin: right;

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

.nav-links a:hover {
    color: var(--paper);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-user-area {
    display: flex;
    align-items: center;
}

.nav-user-box {
    display: flex;
    align-items: center;
    gap: 9px;
}

.nav-user-name {
    color: var(--paper-soft);
    font-size: 12px;
}

.nav-user-btn {
    border: 1px solid var(--line);
    border-radius: 999px;

    padding: 7px 13px;

    color: var(--paper);
    background: transparent;

    font-size: 11px;

    cursor: pointer;

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

.nav-user-btn:hover {
    border-color: var(--wine-light);
    background: rgba(111, 0, 24, .25);
}

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    width: 34px;
    height: 30px;

    padding: 0;

    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 4px;

    width: 25px;
    height: 1px;

    background: var(--paper);

    transition: transform .3s ease;
}

.menu-toggle span:first-child {
    top: 10px;
}

.menu-toggle span:last-child {
    top: 18px;
}


/* ============================================================
   SHARED
   ============================================================ */

.eyebrow {
    display: block;

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

    text-transform: uppercase;

    letter-spacing: .14em;

    color: var(--wine-light);
}

main {
    overflow: hidden;
}


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

.hero {
    position: relative;

    width: 100%;
    height: 100svh;
    min-height: 720px;

    overflow: hidden;

    background: #080706;
}

.hero-media {
    position: absolute;
    inset: 0;
}

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

    object-fit: cover;

    transform: scale(1.08);

    filter:
        saturate(.78)
        contrast(1.06)
        brightness(.78);
}

.hero-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .7) 0%,
            rgba(0, 0, 0, .1) 38%,
            rgba(31, 0, 7, .16) 60%,
            rgba(8, 7, 6, .96) 100%
        );
}

.hero-noise {
    position: absolute;
    inset: 0;

    opacity: .035;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

    height: 100%;

    padding: 112px 5vw 38px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-meta {
    display: flex;
    justify-content: space-between;

    color: rgba(242, 235, 225, .68);

    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hero-main {
    width: min(1000px, 90%);
    margin: auto;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 30px;

    color: var(--paper-soft);

    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.kicker-line {
    width: 40px;
    height: 1px;
    background: var(--wine-light);
}

.hero-logo {
    width: min(560px, 72vw);

    margin: 0 auto 38px;
}

.hero-logo img {
    width: 100%;

    filter:
        drop-shadow(0 25px 60px rgba(0, 0, 0, .5));
}

.hero-intro {
    max-width: 360px;

    margin: auto;

    text-align: center;

    color: rgba(242, 235, 225, .78);

    font-family: var(--display);
    font-size: clamp(17px, 1.5vw, 21px);
    font-style: italic;
    line-height: 1.45;
}

.hero-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    color: var(--paper-soft);

    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-footer span:last-child {
    text-align: right;
}

.hero-scroll-indicator {
    width: 80px;
    height: 1px;

    background: rgba(242, 235, 225, .22);

    position: relative;
}

.hero-scroll-indicator span {
    position: absolute;
    left: 0;
    top: 0;

    width: 30%;
    height: 1px;

    background: var(--wine-light);
}


/* ============================================================
   OPENING
   ============================================================ */

.opening {
    position: relative;

    max-width: 1440px;

    margin: auto;

    padding: 170px 5vw 180px;
}

.opening-top {
    display: flex;
    justify-content: space-between;

    padding-bottom: 24px;

    border-bottom: 1px solid var(--line);

    color: var(--paper-muted);

    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.opening-copy {
    padding-top: 120px;
}

.opening-copy h1 {
    max-width: 1050px;

    margin: 24px 0 70px;

    font-family: var(--display);
    font-size: clamp(58px, 8.8vw, 132px);
    font-weight: 300;

    line-height: .94;
    letter-spacing: -.055em;
}

.opening-copy h1 em {
    color: var(--wine-light);
}

.opening-description {
    max-width: 850px;

    margin-left: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.opening-description p:first-child {
    font-family: var(--display);
    font-size: 22px;
    line-height: 1.45;

    color: var(--paper);
}

.opening-description p:last-child {
    max-width: 340px;

    font-size: 13px;
}

.project-details {
    margin-top: 150px;

    padding-top: 25px;

    border-top: 1px solid var(--line);

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.project-details div {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.project-details span {
    color: var(--paper-muted);

    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.project-details strong {
    font-family: var(--display);
    font-weight: 400;

    font-size: 17px;
}


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

.statement {
    position: relative;

    height: 90vh;
    min-height: 680px;

    overflow: hidden;

    background: var(--wine-deep);
}

.statement-word {
    position: absolute;

    z-index: 3;

    font-family: var(--display);
    font-size: clamp(90px, 15vw, 230px);
    font-weight: 300;

    line-height: .8;

    letter-spacing: -.06em;

    color: var(--paper);
}

.word-one {
    left: 6vw;
    top: 12%;
}

.word-two {
    right: 5vw;
    bottom: 12%;
    font-style: italic;
    color: #e9dcd1;
}

.statement-image {
    position: absolute;

    width: 40vw;
    height: 72vh;

    left: 50%;
    top: 50%;

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

    overflow: hidden;

    border: 1px solid rgba(242, 235, 225, .18);
}

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

    object-fit: cover;

    filter: saturate(.75);

    transform: scale(1.1);
}


/* ============================================================
   EXPERIENCE
   ============================================================ */

.experience {
    background: var(--black);
}

.experience-intro {
    max-width: 1440px;

    margin: auto;

    padding: 180px 5vw 100px;

    display: grid;
    grid-template-columns: .7fr 1.5fr .7fr;
    gap: 40px;

    align-items: end;
}

.experience-intro h2 {
    max-width: 720px;

    font-family: var(--display);
    font-size: clamp(50px, 6vw, 92px);
    font-weight: 300;

    line-height: .98;
    letter-spacing: -.04em;
}

.experience-intro h2 em {
    color: var(--wine-light);
}

.experience-intro > p {
    max-width: 280px;

    font-size: 13px;
}


/* ============================================================
   EXPERIENCE HERO IMAGE
   ============================================================ */

.experience-hero-image {
    position: relative;

    width: 100%;
    height: 92vh;

    min-height: 650px;

    overflow: hidden;
}

.experience-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.1);
}

.image-caption {
    position: absolute;

    left: 5vw;
    right: 5vw;
    bottom: 35px;

    display: flex;
    justify-content: space-between;

    z-index: 2;

    color: var(--paper);

    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.image-caption::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: -20px;

    height: 1px;

    background: rgba(242, 235, 225, .22);
}


/* ============================================================
   TRIPTYCH — CONNECTED THREE IMAGE EXPERIENCE
   ============================================================ */

.triptych-section {
    padding: 190px 0 0;

    background:
        linear-gradient(
            180deg,
            var(--black) 0%,
            var(--black-soft) 100%
        );
}

.triptych-heading {
    max-width: 1440px;

    margin: auto;

    padding: 0 5vw 80px;

    display: grid;
    grid-template-columns: .7fr 1.3fr;
}

.triptych-heading h3 {
    max-width: 700px;

    font-family: var(--display);
    font-size: clamp(48px, 6vw, 86px);
    font-weight: 300;

    line-height: .96;
    letter-spacing: -.045em;
}

.triptych {
    position: relative;

    width: min(1250px, 88vw);

    height: 780px;

    margin: auto;

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

.triptych-card {
    position: absolute;

    width: 38%;
    max-width: 470px;

    overflow: hidden;

    background: var(--black-warm);

    border: 1px solid var(--line);

    box-shadow:
        0 50px 100px rgba(0, 0, 0, .45);
}

.triptych-image {
    width: 100%;
    height: 620px;

    overflow: hidden;
}

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

    object-fit: cover;

    transform: scale(1.08);
}

.triptych-number {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 2;

    color: white;

    font-size: 10px;
    letter-spacing: .1em;
}

.card-left {
    left: 4%;
    top: 10%;

    transform: rotate(-5deg);
}

.card-center {
    z-index: 3;

    top: 4%;

    transform: translateY(0);
}

.card-right {
    right: 4%;
    top: 10%;

    transform: rotate(5deg);
}

.triptych-footer {
    max-width: 1250px;

    width: 88vw;

    margin: auto;

    padding: 30px 0 160px;

    border-top: 1px solid var(--line);

    display: flex;
    justify-content: space-between;

    color: var(--paper-muted);

    font-size: 11px;
}

.triptych-footer p {
    max-width: 300px;

    font-size: 12px;
}


/* ============================================================
   MANIFESTO
   ============================================================ */

.manifesto {
    min-height: 90vh;

    padding: 150px 5vw;

    background: var(--paper);
    color: var(--black);

    display: grid;
    grid-template-columns: .5fr 1.5fr;
    grid-template-rows: 1fr auto;
}

.manifesto-small {
    color: #71665b;

    font-size: 10px;
    letter-spacing: .13em;
}

.manifesto-main {
    align-self: center;

    max-width: 850px;
}

.manifesto-main p {
    margin-bottom: 35px;

    color: #6d6258;

    font-size: 15px;
}

.manifesto-main h2 {
    font-family: var(--display);
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 300;

    line-height: .9;
    letter-spacing: -.05em;

    color: var(--black);
}

.manifesto-main h2 em {
    color: var(--wine);
}

.manifesto-bottom {
    grid-column: 1 / -1;

    align-self: end;

    padding-top: 30px;

    border-top: 1px solid rgba(8, 7, 6, .18);

    display: flex;
    justify-content: space-between;

    color: #74695f;

    font-size: 10px;
    letter-spacing: .12em;
}


/* ============================================================
   SOCIAL WORLD
   ============================================================ */

.social-world {
    padding: 190px 5vw 180px;

    background: var(--black);
}

.social-header {
    max-width: 1440px;

    margin: auto;

    display: grid;
    grid-template-columns: .65fr 1.35fr;

    gap: 60px;

    margin-bottom: 130px;
}

.social-header h2 {
    max-width: 800px;

    margin-bottom: 35px;

    font-family: var(--display);
    font-size: clamp(55px, 7vw, 105px);
    font-weight: 300;

    line-height: .94;
    letter-spacing: -.05em;
}

.social-header h2 em {
    color: var(--wine-light);
}

.social-header p {
    max-width: 400px;

    font-size: 13px;
}

.story-wall {
    max-width: 1250px;

    margin: auto;

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

    gap: 45px;

    align-items: start;
}

.story-column {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.story-column-b {
    padding-top: 130px;
}

.story-column-c {
    padding-top: 45px;
}

.story-image {
    overflow: hidden;

    border: 1px solid var(--line);

    background: var(--black-warm);
}

.story-image img {
    width: 100%;

    transform: scale(1.03);

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

.story-image:hover img {
    transform: scale(1.08);
}

.story-wall figure figcaption {
    padding-top: 14px;

    display: flex;
    justify-content: space-between;

    color: var(--paper-muted);

    font-size: 10px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.story-wall figcaption span {
    color: var(--wine-light);
}


/* ============================================================
   OBJECTS
   ============================================================ */

.objects {
    padding: 190px 5vw;

    background: var(--black-soft);
}

.objects-intro {
    max-width: 1440px;

    margin: auto;

    margin-bottom: 150px;
}

.objects-intro h2 {
    max-width: 850px;

    margin-top: 25px;

    font-family: var(--display);
    font-size: clamp(55px, 7vw, 105px);
    font-weight: 300;

    line-height: .94;
    letter-spacing: -.05em;
}

.objects-intro h2 em {
    color: var(--wine-light);
}


/* ============================================================
   OBJECT FEATURE
   ============================================================ */

.object-feature {
    max-width: 1250px;

    margin: auto;

    display: grid;
    grid-template-columns: 1.45fr .55fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 180px;
}

.object-image {
    overflow: hidden;

    background: var(--black);

    border: 1px solid var(--line);
}

.object-image img {
    width: 100%;
}

.object-copy {
    padding-bottom: 15px;
}

.object-copy > span {
    color: var(--wine-light);

    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.object-copy h3 {
    margin: 25px 0;

    font-family: var(--display);
    font-size: 43px;
    font-weight: 300;

    line-height: 1;

    letter-spacing: -.035em;
}

.object-copy p {
    font-size: 13px;
}


/* ============================================================
   OBJECT SPLIT
   ============================================================ */

.object-split {
    max-width: 1150px;

    margin: auto;

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

    gap: 80px;

    margin-bottom: 180px;
}

.object-card-offset {
    margin-top: 170px;
}

.object-card-image {
    overflow: hidden;

    background: var(--black);

    border: 1px solid var(--line);
}

.object-card-image img {
    width: 100%;
}

.object-card-meta {
    display: flex;
    justify-content: space-between;

    padding-top: 16px;

    color: var(--paper-muted);

    font-size: 11px;
}

.object-card-meta strong {
    color: var(--paper);

    font-family: var(--display);
    font-weight: 400;
}


/* ============================================================
   MENU OBJECT
   ============================================================ */

.menu-object {
    position: relative;

    max-width: 1250px;
    height: 780px;

    margin: auto;

    overflow: hidden;

    background: var(--wine-deep);
}

.menu-object > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.06);
}

.menu-object::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .8)
        );
}

.menu-object-overlay {
    position: absolute;

    left: 50px;
    bottom: 50px;

    z-index: 2;
}

.menu-object-overlay h3 {
    max-width: 650px;

    margin-top: 20px;

    font-family: var(--display);
    font-size: clamp(50px, 6vw, 85px);
    font-weight: 300;

    line-height: .94;

    letter-spacing: -.05em;
}


/* ============================================================
BRAND MOMENT — JHAROKA / MIST / LOGO
============================================================ */
.brand-moment {
position: relative;
width: 100%;
min-height: 900px;

overflow: hidden;

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

background: #000;

isolation: isolate;
}
/* ============================================================
PURE BLACK BACKGROUND
============================================================ */
.brand-background {
position: absolute;
inset: 0;
z-index: 0;

background: #000;
}
/* ============================================================
IMAGE 1 — MAROON MIST
============================================================ */
.brand-mist {
position: absolute;
z-index: 1;

width: min(1100px, 100vw);
height: 100%;

left: 50%;
top: 50%;

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

pointer-events: none;
}
.brand-mist img {
width: 100%;
height: 100%;
display: block;

object-fit: cover;

/*
   Keeps the mist atmospheric rather than looking
   like a normal rectangular photograph.
*/
mix-blend-mode: screen;

opacity: .9;

filter:
    saturate(.9)
    contrast(1.05);

transform: scale(1.05);
}
/* ============================================================
IMAGE 2 — BLACK JHAROKA
============================================================ */
.brand-jharoka {
position: absolute;
z-index: 2;

width: min(720px, 76vw);
height: min(800px, 88vh);

left: 50%;
top: 50%;

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

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

pointer-events: none;
}
.brand-jharoka img {
width: 100%;
height: 100%;
display: block;

object-fit: contain;

/*
   The Jharoka image itself should contain the
   black architectural shape with transparency
   around it.
*/

filter:
    contrast(1.08)
    brightness(.72);

transform: scale(1.02);

transition:
    transform 1.4s var(--ease),
    opacity 1.2s ease;
}
/* ============================================================
IMAGE 3 — WHITE LOGO
============================================================ */
.brand-logo {
position: absolute;
z-index: 3;

width: min(380px, 35vw);

left: 50.9%;
top: 40%;

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

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

pointer-events: none;
}
.brand-logo img {
width: 100%;
height: auto;
display: block;

/*
   White logo sits ABOVE the black Jharoka.
*/

filter:
    brightness(0)
    invert(1)
    drop-shadow(0 20px 45px rgba(0, 0, 0, .65));

opacity: 1;
}
/* ============================================================
SUBTLE LUXURY VIGNETTE
============================================================ */
.brand-moment::after {
content: "";
position: absolute;
inset: 0;

z-index: 4;

pointer-events: none;

background:
    radial-gradient(
        ellipse at center,
        transparent 25%,
        rgba(0, 0, 0, .12) 55%,
        rgba(0, 0, 0, .72) 100%
    );
}
/* ============================================================
RESPONSIVE — TABLET
============================================================ */
@media (max-width: 1000px) {
.brand-moment {
    min-height: 800px;
}

.brand-mist {
    width: 120vw;
}

.brand-jharoka {
    width: min(650px, 82vw);
    height: 75vh;
}

.brand-logo {
    width: min(250px, 34vw);
}
}
/* ============================================================
RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 768px) {
.brand-moment {
    min-height: 680px;
}

.brand-mist {
    width: 150vw;
    height: 100%;
}

.brand-mist img {
    transform: scale(1.12);
}

.brand-jharoka {
    width: 94vw;
    height: 610px;
}

.brand-logo {
    width: 190px;
}
}
/* ============================================================
SMALL MOBILE
============================================================ */
@media (max-width: 480px) {
.brand-moment {
    min-height: 620px;
}

.brand-mist {
    width: 175vw;
}

.brand-jharoka {
    width: 100vw;
    height: 560px;
}

.brand-logo {
    width: 165px;
}
}


/* ============================================================
   SUMMARY
   ============================================================ */

.summary {
    padding: 190px 5vw 200px;

    background: var(--paper);
    color: var(--black);
}

.summary-header {
    max-width: 1440px;

    margin: auto;

    display: grid;
    grid-template-columns: .7fr 1.3fr;

    margin-bottom: 120px;
}

.summary-header h2 {
    font-family: var(--display);
    font-size: clamp(55px, 7vw, 105px);
    font-weight: 300;

    line-height: .92;
    letter-spacing: -.05em;
}

.summary-list {
    max-width: 1250px;

    margin: auto;

    border-top: 1px solid rgba(8, 7, 6, .2);
}

.summary-row {
    min-height: 155px;

    padding: 35px 0;

    border-bottom: 1px solid rgba(8, 7, 6, .2);

    display: grid;
    grid-template-columns: 70px 1fr 50px;

    align-items: center;

    transition: padding .45s var(--ease);
}

.summary-row:hover {
    padding-left: 25px;
}

.summary-row > span:first-child {
    color: var(--wine);

    font-size: 10px;
    letter-spacing: .1em;
}

.summary-row h3 {
    margin-bottom: 8px;

    font-family: var(--display);
    font-size: 30px;
    font-weight: 400;
}

.summary-row p {
    max-width: 430px;

    color: #766c63;

    font-size: 13px;
}

.summary-arrow {
    font-family: var(--display);
    font-size: 25px;

    color: var(--wine);
}


/* ============================================================
   FINAL SCENE
   ============================================================ */

.final-scene {
    position: relative;

    height: 100svh;
    min-height: 700px;

    overflow: hidden;

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

.final-image {
    position: absolute;
    inset: 0;
}

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

    object-fit: cover;

    transform: scale(1.12);

    filter: saturate(.75);
}

.final-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8, 7, 6, .55),
            rgba(57, 0, 12, .2) 45%,
            rgba(8, 7, 6, .94)
        );
}

.final-content {
    position: relative;
    z-index: 2;

    text-align: center;

    padding: 40px;
}

.final-content h2 {
    margin: 28px auto 55px;

    font-family: var(--display);
    font-size: clamp(55px, 8vw, 120px);
    font-weight: 300;

    line-height: .92;
    letter-spacing: -.05em;
}

.final-content h2 em {
    color: var(--wine-light);
}

.final-logo {
    width: min(300px, 55vw);

    margin: auto;

    filter:
        drop-shadow(0 20px 50px rgba(0, 0, 0, .55));
}


/* ============================================================
   CLOSING
   ============================================================ */

.closing {
    min-height: 720px;

    padding: 45px 5vw 55px;

    background: var(--black);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.closing-top {
    display: flex;
    justify-content: space-between;

    color: var(--paper-muted);

    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.closing-top span:first-child {
    color: var(--wine-light);

    font-family: var(--display);
    font-size: 16px;
}

.closing-center {
    max-width: 1000px;
}

.closing-center h2 {
    margin-top: 25px;

    font-family: var(--display);
    font-size: clamp(55px, 8vw, 115px);
    font-weight: 300;

    line-height: .9;
    letter-spacing: -.05em;
}

.closing-center h2 em {
    color: var(--wine-light);
}

.closing-link {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 25px;

    border-top: 1px solid var(--line);

    color: var(--paper);

    font-size: 12px;

    transition: color .3s ease;
}

.closing-link:hover {
    color: var(--wine-light);
}

.closing-arrow {
    font-family: var(--display);
    font-size: 30px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1000px) {

    .nav-container {
        padding: 0 25px;
    }

    .nav-links {
        gap: 14px;
    }

    .opening-copy h1 {
        font-size: clamp(58px, 10vw, 100px);
    }

    .experience-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .experience-intro > p {
        margin-left: auto;
    }

    .triptych {
        height: 680px;
    }

    .triptych-image {
        height: 540px;
    }

    .manifesto {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .manifesto-bottom {
        grid-column: auto;
    }

    .social-header {
        grid-template-columns: 1fr;
    }

    .object-feature {
        grid-template-columns: 1fr;
    }

    .object-copy {
        max-width: 500px;
    }

    .summary-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (max-width: 768px) {

    html {
        scroll-behavior: auto;
    }

    .site-header {
        background: rgba(8, 7, 6, .9);
    }

    .nav-container {
        height: 65px;
    }

    .menu-toggle {
        display: block;
    }

    .site-header nav {
        position: absolute;

        left: 0;
        top: 65px;

        width: 100%;

        padding: 15px 22px 25px;

        background: rgba(8, 7, 6, .98);

        border-bottom: 1px solid var(--line);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity .3s ease,
            visibility .3s ease,
            transform .3s ease;
    }

    .site-header nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;

        padding: 13px 0;

        font-size: 13px;
    }

    .nav-user-area,
    .nav-user-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 95px 22px 28px;
    }

    .hero-meta span:last-child {
        display: none;
    }

    .hero-logo {
        width: 86vw;
    }

    .hero-intro {
        max-width: 290px;
    }

    .opening {
        padding: 110px 22px;
    }

    .opening-top span:last-child {
        display: none;
    }

    .opening-copy {
        padding-top: 80px;
    }

    .opening-copy h1 {
        font-size: clamp(54px, 15vw, 78px);
    }

    .opening-description {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-left: 0;
    }

    .opening-description p:first-child {
        font-size: 20px;
    }

    .project-details {
        margin-top: 90px;

        grid-template-columns: 1fr 1fr;

        gap: 35px;
    }

    .statement {
        height: 75vh;
        min-height: 550px;
    }

    .statement-word {
        font-size: 24vw;
    }

    .statement-image {
        width: 64vw;
        height: 58vh;
    }

    .experience-intro {
        padding: 110px 22px 70px;
    }

    .experience-intro h2 {
        font-size: clamp(48px, 13vw, 70px);
    }

    .experience-intro > p {
        margin-left: 0;
    }

    .experience-hero-image {
        height: 68vh;
        min-height: 480px;
    }

    .image-caption {
        left: 22px;
        right: 22px;
        bottom: 25px;
    }

    .triptych-section {
        padding-top: 110px;
    }

    .triptych-heading {
        display: block;

        padding: 0 22px 55px;
    }

    .triptych-heading h3 {
        margin-top: 25px;
        font-size: clamp(48px, 13vw, 70px);
    }

    .triptych {
        width: 90vw;
        height: 600px;
    }

    .triptych-card {
        width: 58vw;
    }

    .triptych-image {
        height: 470px;
    }

    .card-left {
        left: 0;
        top: 10%;
    }

    .card-center {
        top: 2%;
    }

    .card-right {
        right: 0;
        top: 10%;
    }

    .triptych-footer {
        width: 90vw;

        padding-bottom: 100px;

        display: block;
    }

    .triptych-footer p {
        margin-top: 20px;
    }

    .manifesto {
        min-height: 700px;

        padding: 110px 22px;
    }

    .manifesto-main h2 {
        font-size: clamp(58px, 15vw, 82px);
    }

    .manifesto-bottom {
        gap: 15px;
        flex-wrap: wrap;
    }

    .social-world {
        padding: 110px 22px;
    }

    .social-header {
        margin-bottom: 80px;
    }

    .social-header h2 {
        font-size: clamp(52px, 14vw, 76px);
    }

    .story-wall {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .story-column {
        gap: 60px;
    }

    .story-column-b {
        padding-top: 80px;
    }

    .story-column-c {
        padding-top: 0;
    }

    .story-column-c figure:first-child {
        grid-column: 1 / -1;
    }

    .objects {
        padding: 110px 22px;
    }

    .objects-intro {
        margin-bottom: 90px;
    }

    .objects-intro h2 {
        font-size: clamp(52px, 14vw, 76px);
    }

    .object-feature {
        margin-bottom: 110px;
        gap: 40px;
    }

    .object-copy h3 {
        font-size: 38px;
    }

    .object-split {
        grid-template-columns: 1fr;

        gap: 70px;

        margin-bottom: 110px;
    }

    .object-card-offset {
        margin-top: 0;
    }

    .menu-object {
        height: 600px;
    }

    .menu-object-overlay {
        left: 25px;
        right: 25px;
        bottom: 30px;
    }

    .menu-object-overlay h3 {
        font-size: 48px;
    }

    .brand-moment {
        min-height: 650px;
    }

    .brand-arch {
        height: 570px;
        width: 78vw;
    }

    .devanagari {
        font-size: 70px;
    }

    .brand-inner h2 {
        font-size: 42px;
    }

    .summary {
        padding: 110px 22px;
    }

    .summary-header {
        margin-bottom: 70px;
    }

    .summary-header h2 {
        font-size: clamp(52px, 14vw, 78px);
    }

    .summary-row {
        min-height: 130px;

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

        padding: 28px 0;
    }

    .summary-row h3 {
        font-size: 25px;
    }

    .summary-row p {
        font-size: 12px;
    }

    .final-scene {
        min-height: 650px;
    }

    .final-content {
        padding: 25px;
    }

    .final-content h2 {
        font-size: clamp(52px, 14vw, 76px);
    }

    .closing {
        min-height: 600px;

        padding: 30px 22px 35px;
    }

    .closing-center h2 {
        font-size: clamp(52px, 14vw, 78px);
    }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

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

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

}

