/* ============================================================
   EL AMANECIDO
   MAIN STYLESHEET
============================================================ */


/* ============================================================
   VARIABLES
============================================================ */

:root {

    --black: #080706;
    --black-soft: #11100e;
    --brown: #241812;

    --gold: #b28a4a;
    --gold-light: #d0aa68;

    --cream: #eee8dc;
    --white: #ffffff;
    --gray: #aaa49b;

    --border: rgba(255,255,255,.18);

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --header-height: 64px;

    --transition: .5s cubic-bezier(.22,.61,.36,1);

}


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

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


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


body {

    background: var(--black);

    color: var(--white);

    font-family: var(--font-body);

    font-weight: 300;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}


body.menu-open {
    overflow: hidden;
}


img,
video {

    display: block;

    width: 100%;

}


img {

    height: auto;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input {

    font: inherit;

}


button {

    border: 0;

    background: transparent;

    color: inherit;

    cursor: pointer;

}


::selection {

    background: var(--gold);

    color: var(--black);

}



/* ============================================================
   PRELOADER
============================================================ */

#preloader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: var(--black);

    display: flex;

    align-items: center;

    justify-content: center;

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

}


#preloader.loaded {

    opacity: 0;

    visibility: hidden;

}


.preloader-inner {

    width: 180px;

    text-align: center;

}


.preloader-logo img {

    width: 80px;

    margin: 0 auto 25px;

}


.preloader-line {

    width: 100%;

    height: 1px;

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

    position: relative;

    overflow: hidden;

}


.preloader-line::after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 40%;

    height: 100%;

    background: var(--gold);

    animation: preloaderLine 1.5s ease-in-out infinite;

}


@keyframes preloaderLine {

    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }

}



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

.main-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: var(--header-height);

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 32px;

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

    transition:
        background .5s ease,
        border-color .5s ease,
        height .5s ease;

}


.main-header.scrolled {

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

    backdrop-filter: blur(12px);

    height: 58px;

}



/* ============================================================
   MENU BUTTON
============================================================ */

.menu-button {

    position: absolute;

    left: 32px;

    top: 50%;

    transform: translateY(-50%);

    width: 26px;

    height: 20px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}


.menu-button span {

    display: block;

    width: 100%;

    height: 1px;

    background: var(--white);

    transition: var(--transition);

}


.menu-button:hover span:nth-child(1) {

    width: 70%;

}


.menu-button:hover span:nth-child(3) {

    width: 70%;

    margin-left: 30%;

}



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

.header-logo {

    position: absolute;

    left: 50%;

    top: 50%;

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

}


.header-logo img {

    width: 42px;

    height: 42px;

    object-fit: contain;

}



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

.header-right {

    position: absolute;

    right: 32px;

    top: 0;

    height: 100%;

    display: flex;

    align-items: center;

    gap: 25px;

}


.languages {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 10px;

    letter-spacing: .15em;

}


.languages a {

    opacity: .5;

    transition: opacity .3s ease;

}


.languages a:hover,
.languages a.active {

    opacity: 1;

}


.languages span {

    opacity: .3;

}



/* ============================================================
   SEARCH BUTTON
============================================================ */

.search-button {

    width: 19px;

    height: 19px;

}


.search-button svg {

    width: 100%;

    height: 100%;

    fill: none;

    stroke: var(--white);

    stroke-width: 1;

}



/* ============================================================
   SIDE MENU
============================================================ */

.side-menu {

    position: fixed;

    top: 0;

    left: 0;

    width: min(460px, 90vw);

    height: 100vh;

    z-index: 2000;

    background: var(--black-soft);

    padding: 110px 60px 50px;

    transform: translateX(-100%);

    transition: transform .7s cubic-bezier(.77,0,.18,1);

    display: flex;

    flex-direction: column;

}


.side-menu.open {

    transform: translateX(0);

}



/* ============================================================
   CLOSE MENU
============================================================ */

.close-menu {

    position: absolute;

    top: 27px;

    right: 32px;

    width: 25px;

    height: 25px;

}


.close-menu span {

    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    height: 1px;

    background: var(--white);

}


.close-menu span:first-child {

    transform: rotate(45deg);

}


.close-menu span:last-child {

    transform: rotate(-45deg);

}



/* ============================================================
   SIDE NAV
============================================================ */

.side-navigation {

    display: grid;

    grid-template-columns: 35px 1fr;

    align-items: center;

}


.side-navigation .menu-number {

    font-size: 9px;

    color: var(--gold);

    letter-spacing: .15em;

    margin-bottom: 20px;

}


.side-navigation a {

    font-family: var(--font-display);

    font-size: 36px;

    font-weight: 300;

    line-height: 1;

    margin-bottom: 20px;

    transition:
        color .3s ease,
        padding-left .4s ease;

}


.side-navigation a:hover {

    color: var(--gold-light);

    padding-left: 10px;

}



/* ============================================================
   MENU FOOTER
============================================================ */

.side-menu-footer {

    margin-top: auto;

    padding-top: 30px;

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

    display: flex;

    justify-content: space-between;

    font-size: 10px;

    letter-spacing: .12em;

    text-transform: uppercase;

}


.side-social {

    display: flex;

    gap: 20px;

}


.side-social a {

    opacity: .6;

    transition: opacity .3s ease;

}


.side-social a:hover {

    opacity: 1;

}



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

.menu-overlay {

    position: fixed;

    inset: 0;

    z-index: 1500;

    background: rgba(0,0,0,.7);

    opacity: 0;

    visibility: hidden;

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

}


.menu-overlay.open {

    opacity: 1;

    visibility: visible;

}



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

.search-overlay {

    position: fixed;

    inset: 0;

    z-index: 3000;

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

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    visibility: hidden;

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

}


.search-overlay.open {

    opacity: 1;

    visibility: visible;

}


.search-close {

    position: absolute;

    top: 28px;

    right: 32px;

    width: 25px;

    height: 25px;

}


.search-close span {

    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    height: 1px;

    background: white;

}


.search-close span:first-child {

    transform: rotate(45deg);

}


.search-close span:last-child {

    transform: rotate(-45deg);

}


.search-container {

    width: min(700px, 85%);

}


.search-container .section-kicker {

    margin-bottom: 20px;

}


.search-form {

    display: flex;

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

}


.search-form input {

    flex: 1;

    background: none;

    border: none;

    outline: none;

    color: white;

    font-family: var(--font-display);

    font-size: 42px;

    font-weight: 300;

    padding: 15px 0;

}


.search-form input::placeholder {

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

}


.search-form button {

    width: 50px;

}


.search-form svg {

    width: 22px;

    fill: none;

    stroke: white;

    stroke-width: 1;

}



/* ============================================================
   GENERIC
============================================================ */

.section-kicker {

    font-family: var(--font-body);

    font-size: 10px;

    font-weight: 400;

    letter-spacing: .28em;

    text-transform: uppercase;

    color: var(--gold-light);

    margin-bottom: 25px;

}


.section-text {

    font-size: 13px;

    line-height: 2;

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

    max-width: 430px;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 40px;

    padding-bottom: 8px;

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

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: .17em;

    transition:
        gap .4s ease,
        color .3s ease,
        border-color .3s ease;

}


.text-link:hover {

    gap: 30px;

    color: var(--gold-light);

    border-color: var(--gold);

}


.outline-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 180px;

    padding: 15px 30px;

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

    font-size: 10px;

    letter-spacing: .17em;

    text-transform: uppercase;

    transition:
        background .4s ease,
        color .4s ease,
        border-color .4s ease;

}


.outline-button:hover {

    background: var(--white);

    color: var(--black);

    border-color: var(--white);

}



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

.hero {

    position: relative;

    height: 100vh;

    min-height: 650px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-background {

    position: absolute;

    inset: 0;

    overflow: hidden;

}


.hero-video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.02);

}


.hero-overlay {

    position: absolute;

    inset: 0;

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

}


.hero-content {

    position: relative;

    z-index: 2;

    text-align: center;

    width: 90%;

    max-width: 900px;

}


.hero-kicker {

    font-size: 10px;

    letter-spacing: .35em;

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

    margin-bottom: 20px;

}


.hero h1 {

    font-family: var(--font-display);

    font-size: clamp(70px, 10vw, 150px);

    font-weight: 300;

    line-height: .8;

    letter-spacing: -.025em;

}


.hero-subtitle {

    margin-top: 35px;

    font-family: var(--font-display);

    font-size: 24px;

    line-height: 1.2;

    font-weight: 300;

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

}


.hero-button {

    margin-top: 45px;

    display: inline-flex;

    flex-direction: column;

    align-items: center;

    gap: 15px;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .2em;

}


.hero-button .arrow {

    width: 38px;

    height: 38px;

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

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition:
        background .3s ease,
        transform .3s ease;

}


.hero-button:hover .arrow {

    background: var(--white);

    color: var(--black);

    transform: translateY(5px);

}



/* ============================================================
   SCROLL INDICATOR
============================================================ */

.scroll-indicator {

    position: absolute;

    z-index: 2;

    bottom: 35px;

    left: 32px;

    display: flex;

    align-items: center;

    gap: 15px;

    transform: rotate(-90deg);

    transform-origin: left center;

}


.scroll-indicator span {

    font-size: 8px;

    letter-spacing: .2em;

    text-transform: uppercase;

}


.scroll-line {

    width: 65px;

    height: 1px;

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

}



/* ============================================================
   VIDEO CONTROL
============================================================ */

.video-control {

    position: absolute;

    z-index: 3;

    right: 32px;

    bottom: 30px;

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: rgba(0,0,0,.35);

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

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 10px;

}


.video-control .play-icon {

    display: none;

}


.video-control.paused .pause-icon {

    display: none;

}


.video-control.paused .play-icon {

    display: block;

}



/* ============================================================
   LAND SECTION
============================================================ */

.land-section {

    min-height: 100vh;

    display: grid;

    grid-template-columns: 55% 45%;

    background: var(--black);

}


.land-image {

    min-height: 100vh;

    overflow: hidden;

}


.land-image img {

    height: 100%;

    object-fit: cover;

    transition: transform 1.5s cubic-bezier(.22,.61,.36,1);

}


.land-section:hover .land-image img {

    transform: scale(1.035);

}


.land-content {

    padding: 100px 10%;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.land-content h2 {

    font-family: var(--font-display);

    font-weight: 300;

    font-size: clamp(55px, 6vw, 90px);

    line-height: .9;

    margin-bottom: 40px;

}



/* ============================================================
   STORY SECTION
============================================================ */

.story-section {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.story-background {

    position: absolute;

    inset: 0;

}


.story-background img {

    height: 100%;

    object-fit: cover;

}


.story-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.75),
            rgba(0,0,0,.18)
        );

}


.story-content {

    position: relative;

    z-index: 2;

    width: 80%;

    max-width: 1200px;

}


.story-content h2 {

    font-family: var(--font-display);

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

    font-weight: 300;

    line-height: .82;

    margin-bottom: 35px;

}


.story-content > p:not(.section-kicker) {

    font-family: var(--font-display);

    font-size: 23px;

    line-height: 1.4;

    max-width: 500px;

}



/* ============================================================
   CRAFT SECTION
============================================================ */

.craft-section {

    min-height: 90vh;

    display: grid;

    grid-template-columns: 50% 50%;

    background: #0d0b09;

}


.craft-image {

    overflow: hidden;

}


.craft-image img {

    height: 100%;

    object-fit: cover;

}


.craft-content {

    padding: 100px 12%;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.craft-content h2 {

    font-family: var(--font-display);

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

    line-height: .85;

    font-weight: 300;

    margin-bottom: 40px;

}



/* ============================================================
   PROCESS
============================================================ */

.process-section {

    padding: 140px 5% 150px;

    background: var(--cream);

    color: var(--black);

}


.process-section .section-kicker {

    color: #896a35;

}


.process-header {

    max-width: 800px;

    margin: 0 auto 100px;

    text-align: center;

}


.process-header h2 {

    font-family: var(--font-display);

    font-size: clamp(70px, 9vw, 125px);

    font-weight: 300;

    line-height: .78;

    margin-bottom: 40px;

}


.process-header .section-text {

    color: rgba(0,0,0,.6);

    margin: auto;

}



/* ============================================================
   PROCESS ITEMS
============================================================ */

.process-items {

    max-width: 1250px;

    margin: auto;

    display: grid;

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

    gap: 100px 80px;

}


.process-item {

    position: relative;

}


.process-number {

    font-family: var(--font-display);

    font-size: 20px;

    margin-bottom: 18px;

    color: #8d6d37;

}


.process-image {

    aspect-ratio: 4 / 5;

    overflow: hidden;

}


.process-image img {

    height: 100%;

    object-fit: cover;

    transition: transform 1s cubic-bezier(.22,.61,.36,1);

}


.process-item:hover .process-image img {

    transform: scale(1.05);

}


.process-info {

    padding-top: 25px;

}


.process-info h3 {

    font-family: var(--font-display);

    font-size: 38px;

    font-weight: 400;

    margin-bottom: 12px;

}


.process-info p {

    font-size: 12px;

    line-height: 1.8;

    color: rgba(0,0,0,.6);

    max-width: 350px;

}


.process-more {

    text-align: center;

    margin-top: 100px;

}


.process-section .text-link {

    border-color: rgba(0,0,0,.35);

}



/* ============================================================
   PRODUCT SECTION
============================================================ */

.product-section {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.product-background {

    position: absolute;

    inset: 0;

}


.product-background img {

    height: 100%;

    object-fit: cover;

    transition: transform 2s ease;

}


.product-section:hover .product-background img {

    transform: scale(1.04);

}


.product-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.2),
            rgba(0,0,0,.75)
        );

}


.product-content {

    position: relative;

    z-index: 2;

    text-align: center;

}


.product-content h2 {

    font-family: var(--font-display);

    font-size: clamp(80px, 11vw, 160px);

    font-weight: 300;

    line-height: .75;

}


.product-description {

    margin: 35px 0;

    font-family: var(--font-display);

    font-size: 24px;

}



/* ============================================================
   PRODUCT DETAIL
============================================================ */

.product-detail-section {

    min-height: 100vh;

    display: grid;

    grid-template-columns: 50% 50%;

    background: #120d09;

}


.product-detail-image {

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 80px;

    background:
        radial-gradient(
            circle at center,
            #3a2416 0%,
            #120d09 65%
        );

}


.product-detail-image img {

    width: 70%;

    max-height: 80vh;

    object-fit: contain;

    filter:
        drop-shadow(0 30px 40px rgba(0,0,0,.5));

    transition: transform 1s ease;

}


.product-detail-section:hover .product-detail-image img {

    transform: translateY(-10px);

}


.product-detail-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 100px 12%;

}


.product-detail-content h2 {

    font-family: var(--font-display);

    font-size: clamp(70px, 8vw, 120px);

    line-height: .78;

    font-weight: 300;

    margin-bottom: 40px;

}


.product-meta {

    margin-top: 50px;

    display: grid;

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

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

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

}


.product-meta div {

    padding: 20px 10px;

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

}


.product-meta div:last-child {

    border-right: none;

}


.product-meta span {

    display: block;

    font-size: 8px;

    letter-spacing: .15em;

    text-transform: uppercase;

    color: var(--gray);

    margin-bottom: 8px;

}


.product-meta strong {

    font-family: var(--font-display);

    font-size: 17px;

    font-weight: 400;

}



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

.experience-section {

    min-height: 100vh;

    display: grid;

    grid-template-columns: 55% 45%;

}


.experience-image {

    overflow: hidden;

}


.experience-image img {

    height: 100%;

    object-fit: cover;

    transition: transform 1.5s ease;

}


.experience-section:hover .experience-image img {

    transform: scale(1.04);

}


.experience-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 100px 10%;

}


.experience-content h2 {

    font-family: var(--font-display);

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

    font-weight: 300;

    line-height: .8;

    margin-bottom: 40px;

}



/* ============================================================
   FINAL SECTION
============================================================ */

.final-section {

    min-height: 85vh;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

}


.final-background {

    position: absolute;

    inset: 0;

}


.final-background img {

    height: 100%;

    object-fit: cover;

}


.final-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.2),
            rgba(0,0,0,.7)
        );

}


.final-content {

    position: relative;

    z-index: 2;

}


.final-content h2 {

    font-family: var(--font-display);

    font-size: clamp(70px, 9vw, 130px);

    font-weight: 300;

    line-height: .8;

    margin-bottom: 45px;

}



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

.main-footer {

    background: #060504;

    padding: 100px 5% 30px;

}


.footer-logo {

    margin-bottom: 90px;

}


.footer-logo img {

    width: 70px;

}


.footer-links {

    display: grid;

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

    gap: 50px;

    padding-bottom: 90px;

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

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-column h4 {

    font-size: 9px;

    font-weight: 400;

    letter-spacing: .2em;

    text-transform: uppercase;

    color: var(--gold-light);

    margin-bottom: 25px;

}


.footer-column a,
.footer-column p {

    font-size: 11px;

    line-height: 2.3;

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

    transition: color .3s ease;

}


.footer-column a:hover {

    color: white;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 25px;

    font-size: 8px;

    letter-spacing: .08em;

    text-transform: uppercase;

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

}


.footer-legal {

    display: flex;

    gap: 30px;

}


.footer-legal a {

    transition: color .3s ease;

}


.footer-legal a:hover {

    color: white;

}



/* ============================================================
   ANIMATIONS
============================================================ */

.reveal {

    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.22,.61,.36,1);

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}



/* ============================================================
   RESPONSIVE - TABLET
============================================================ */

@media (max-width: 900px) {


    .main-header {

        padding: 0 20px;

    }


    .menu-button {

        left: 20px;

    }


    .header-right {

        right: 20px;

    }


    .land-section,
    .craft-section,
    .experience-section,
    .product-detail-section {

        grid-template-columns: 1fr;

    }


    .land-image {

        min-height: 65vh;

    }


    .land-content,
    .craft-content,
    .experience-content,
    .product-detail-content {

        min-height: 70vh;

        padding: 80px 10%;

    }


    .craft-image,
    .experience-image {

        min-height: 65vh;

    }


    .process-items {

        gap: 70px 30px;

    }


    .footer-links {

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

    }


}



/* ============================================================
   RESPONSIVE - MOBILE
============================================================ */

@media (max-width: 600px) {


    :root {

        --header-height: 58px;

    }


    .main-header {

        padding: 0 18px;

    }


    .menu-button {

        left: 18px;

        width: 23px;

    }


    .header-right {

        right: 18px;

        gap: 15px;

    }


    .header-logo img {

        width: 36px;

        height: 36px;

    }


    .languages {

        font-size: 9px;

    }


    .side-menu {

        width: 100%;

        padding: 100px 35px 35px;

    }


    .side-navigation a {

        font-size: 32px;

    }


    .hero {

        min-height: 100svh;

    }


    .hero h1 {

        font-size: clamp(60px, 17vw, 100px);

        line-height: .82;

    }


    .hero-subtitle {

        font-size: 20px;

        margin-top: 25px;

    }


    .hero-button {

        margin-top: 35px;

    }


    .scroll-indicator {

        left: 20px;

        bottom: 30px;

    }


    .video-control {

        right: 20px;

        bottom: 20px;

    }


    .land-image,
    .craft-image,
    .experience-image {

        min-height: 60vh;

    }


    .land-content,
    .craft-content,
    .experience-content,
    .product-detail-content {

        padding: 75px 25px;

        min-height: auto;

    }


    .land-content h2,
    .craft-content h2,
    .experience-content h2 {

        font-size: 65px;

    }


    .story-section {

        min-height: 90vh;

    }


    .story-content {

        width: 90%;

    }


    .story-content h2 {

        font-size: 70px;

    }


    .story-content > p:not(.section-kicker) {

        font-size: 19px;

    }


    .process-section {

        padding: 90px 20px;

    }


    .process-header {

        margin-bottom: 70px;

    }


    .process-header h2 {

        font-size: 75px;

    }


    .process-items {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .process-info h3 {

        font-size: 35px;

    }


    .product-section {

        min-height: 85vh;

    }


    .product-content h2 {

        font-size: 85px;

    }


    .product-detail-image {

        min-height: 70vh;

        padding: 50px 20px;

    }


    .product-detail-image img {

        width: 80%;

    }


    .product-detail-content h2 {

        font-size: 75px;

    }


    .product-meta {

        grid-template-columns: 1fr;

    }


    .product-meta div {

        border-right: none;

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

    }


    .product-meta div:last-child {

        border-bottom: none;

    }


    .final-section {

        min-height: 75vh;

    }


    .final-content h2 {

        font-size: 75px;

    }


    .footer-links {

        grid-template-columns: 1fr 1fr;

        gap: 60px 30px;

    }


    .footer-links .footer-column:first-child {

        grid-column: 1 / -1;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        line-height: 1.8;

    }


    .footer-legal {

        flex-direction: column;

        gap: 5px;

    }


}



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

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

    html {

        scroll-behavior: auto;

    }

    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}