/* =========================================================
   MARCO RICHARD
   Premium Beverage Company
   Neumorphic Corporate Website
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap");


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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-width: 320px;
    background: #e7e5df;
    color: #24231f;
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

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

button {
    font: inherit;
}

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


/* =========================================================
   ROOT
   ========================================================= */

:root {
    --bg: #e7e5df;
    --surface: #e7e5df;

    --dark: #24231f;
    --dark-soft: #4b4943;

    --muted: #77746c;

    --cream: #f4f1e9;
    --white: #faf9f5;

    --gold: #b89252;
    --gold-light: #d4b77e;

    --pink: #c48c9c;
    --pink-light: #d8aab7;

    --shadow-dark: #c5c3bd;
    --shadow-light: #ffffff;

    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --radius-xl: 52px;

    --container: 1240px;

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


/* =========================================================
   GLOBAL
   ========================================================= */

.app {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(255,255,255,.65),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 40%,
            rgba(196,140,156,.10),
            transparent 30%
        ),
        var(--bg);
}

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}

.section {
    position: relative;
    padding: 130px 0;
}

.section-heading {
    margin-bottom: 70px;
}

.section-heading.centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.split-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: end;
}

.section-heading h2,
.consumer-copy h2,
.innovation-copy h2,
.careers-copy h2,
.apply-panel h2,
.contact-grid h2 {
    margin-top: 16px;

    font-family: "Playfair Display", serif;
    font-weight: 600;

    font-size: clamp(
        2.8rem,
        5vw,
        5rem
    );

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

.section-heading p {
    max-width: 540px;

    color: var(--muted);

    font-size: 1.05rem;
    line-height: 1.8;
}

.section-heading.centered p {
    margin: 25px auto 0;
}

.section-kicker {
    display: inline-block;

    font-size: .72rem;
    font-weight: 700;

    letter-spacing: .18em;

    color: var(--gold);
}


/* =========================================================
   NEUMORPHISM
   ========================================================= */

.neumorph-card {
    background: var(--surface);

    box-shadow:
        14px 14px 30px var(--shadow-dark),
        -14px -14px 30px var(--shadow-light);
}

.neumorph-inset {
    background: var(--surface);

    box-shadow:
        inset 8px 8px 18px var(--shadow-dark),
        inset -8px -8px 18px var(--shadow-light);
}


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

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(231,229,223,.78);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

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

.nav-inner {
    height: 86px;

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

    gap: 30px;
}


/* LOGO */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.brand-mark {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: var();
    color: var(--cream);

    font-family: "Playfair Display", serif;
    font-size: .85rem;

    box-shadow:
        5px 5px 12px #c5c3bd,
        -5px -5px 12px #ffffff;
}

.brand-name {
    display: flex;
    flex-direction: column;

    font-size: .67rem;
    letter-spacing: .14em;
    line-height: 1.05;
}

.brand-name strong {
    font-weight: 700;
}


/* NAV */

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-left: auto;
}

.nav-links a {
    position: relative;

    font-size: .69rem;
    font-weight: 700;

    letter-spacing: .13em;

    color: var(--dark-soft);

    transition:
        color .25s var(--ease);
}

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

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

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width .3s var(--ease);
}

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

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


/* NAV ACTIONS */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.soft-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 52px;
    padding: 0 25px;

    border: 0;
    border-radius: 18px;

    background: var(--surface);

    color: var(--dark);

    font-size: .7rem;
    font-weight: 700;

    letter-spacing: .1em;

    box-shadow:
        8px 8px 18px var(--shadow-dark),
        -8px -8px 18px var(--shadow-light);

    transition:
        transform .25s var(--ease),
        box-shadow .25s var(--ease);
}

.soft-button:hover {
    transform: translateY(-3px);

    box-shadow:
        11px 11px 24px var(--shadow-dark),
        -11px -11px 24px var(--shadow-light);
}

.soft-button:active {
    transform: translateY(1px);

    box-shadow:
        inset 5px 5px 12px var(--shadow-dark),
        inset -5px -5px 12px var(--shadow-light);
}

.soft-button span {
    font-size: 1rem;
}

.soft-button.primary {
    background: var(--dark);
    color: var(--cream);

    box-shadow:
        9px 9px 20px #bdbbb5,
        -9px -9px 20px #ffffff;
}

.soft-button.primary:hover {
    background: #302f2b;
}

.soft-button.small {
    min-height: 42px;
    padding: 0 17px;

    font-size: .63rem;
}

.soft-button.large {
    min-height: 62px;
    padding: 0 32px;

    border-radius: 21px;
}


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

.menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 14px;

    background: var(--surface);

    box-shadow:
        6px 6px 14px var(--shadow-dark),
        -6px -6px 14px var(--shadow-light);

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 19px;
    height: 2px;

    margin: 4px auto;

    background: var(--dark);
}


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

.hero {
    min-height: calc(100vh - 86px);

    display: flex;
    align-items: center;

    overflow: hidden;
}

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

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, .9fr);

    align-items: center;

    gap: 90px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 16px;

    border-radius: 100px;

    color: var(--muted);

    font-size: .64rem;
    font-weight: 700;

    letter-spacing: .13em;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #75916c;

    box-shadow:
        0 0 0 4px rgba(117,145,108,.12);
}

.hero h1 {
    margin-top: 28px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        4rem,
        7vw,
        7.5rem
    );

    font-weight: 600;

    line-height: .88;

    letter-spacing: -.065em;
}

.accent-text {
    color: var(--gold);
    font-style: italic;
}

.soft-text {
    color: var(--pink);
    font-style: italic;
}

.hero-lead {
    max-width: 610px;

    margin-top: 34px;

    color: var(--muted);

    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 38px;
}

.hero-mini-stats {
    display: flex;
    gap: 45px;

    margin-top: 65px;
}

.hero-mini-stats div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-mini-stats strong {
    font-size: 1rem;
}

.hero-mini-stats span {
    color: var(--muted);

    font-size: .59rem;
    font-weight: 700;

    letter-spacing: .13em;
}


/* HERO ORBS */

.hero-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(1px);

    pointer-events: none;
}

.orb-one {
    width: 420px;
    height: 420px;

    right: -180px;
    top: 10%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255,255,255,.75),
            rgba(196,140,156,.13),
            transparent 70%
        );
}

.orb-two {
    width: 260px;
    height: 260px;

    left: -130px;
    bottom: -100px;

    background:
        radial-gradient(
            circle,
            rgba(184,146,82,.15),
            transparent 70%
        );
}


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

.hero-visual {
    position: relative;

    min-height: 650px;

    display: grid;
    place-items: center;
}

.bottle-card {
    position: relative;

    width: min(100%, 500px);
    height: 600px;

    padding: 30px;

    border-radius: var(--radius-xl);

    overflow: hidden;
}

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

    color: var(--muted);

    font-size: .6rem;
    font-weight: 700;

    letter-spacing: .13em;
}

.bottle-stage {
    position: absolute;

    inset: 80px 0 80px;

    display: grid;
    place-items: center;
}

.bottle-shadow {
    position: absolute;

    bottom: 30px;

    width: 230px;
    height: 45px;

    border-radius: 50%;

    background: rgba(80,75,65,.18);

    filter: blur(15px);
}


/* BOTTLE */

.bottle {
    position: relative;

    width: 180px;
    height: 360px;

    filter:
        drop-shadow(
            18px 25px 20px rgba(0,0,0,.18)
        );

    animation:
        bottle-float 5s ease-in-out infinite;
}

.bottle-neck {
    position: absolute;

    left: 58px;
    top: 0;

    width: 64px;
    height: 95px;

    border-radius: 12px 12px 5px 5px;

    background:
        linear-gradient(
            90deg,
            #211f1b,
            #4d4638 35%,
            #191814
        );
}

.bottle-neck::after {
    content: "";

    position: absolute;

    left: -4px;
    top: -9px;

    width: 72px;
    height: 20px;

    border-radius: 7px;

    background: #181713;
}

.bottle-body {
    position: absolute;

    left: 15px;
    top: 72px;

    width: 150px;
    height: 280px;

    border-radius:
        35px
        35px
        27px
        27px;

    background:
        linear-gradient(
            90deg,
            #181714 0%,
            #3e392f 23%,
            #191814 50%,
            #514a3d 76%,
            #151411 100%
        );

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

    box-shadow:
        inset 8px 0 15px rgba(255,255,255,.07),
        inset -12px 0 20px rgba(0,0,0,.3);
}

.bottle-label {
    position: absolute;

    left: 50%;
    top: 50%;

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

    width: 90px;
    height: 130px;

    display: grid;
    place-content: center;

    text-align: center;

    background: #e7dfce;

    color: #29261f;

    font-family: "Playfair Display", serif;

    font-size: 1.15rem;

    line-height: 1.05;

    letter-spacing: .05em;

    box-shadow:
        inset 0 0 0 2px rgba(184,146,82,.5);
}

.bottle-caption {
    position: absolute;

    bottom: 28px;
    left: 30px;
    right: 30px;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.bottle-caption span {
    font-size: .58rem;
    font-weight: 700;

    letter-spacing: .16em;

    color: var(--muted);
}

.bottle-caption strong {
    font-family: "Playfair Display", serif;

    font-size: 1.4rem;
}


/* FLOATING CHIPS */

.floating-chip {
    position: absolute;

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

    padding: 12px 15px;

    border-radius: 18px;

    background: var(--surface);

    box-shadow:
        10px 10px 22px var(--shadow-dark),
        -10px -10px 22px var(--shadow-light);

    animation:
        chip-float 4s ease-in-out infinite;
}

.chip-one {
    top: 170px;
    left: -20px;
}

.chip-two {
    right: -15px;
    bottom: 180px;

    animation-delay: -2s;
}

.chip-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--dark);
    color: white;
}

.chip-icon.pink {
    background: var(--pink);
}

.floating-chip span:last-child {
    display: flex;
    flex-direction: column;
}

.floating-chip b {
    font-size: .7rem;
}

.floating-chip small {
    color: var(--muted);

    font-size: .55rem;

    letter-spacing: .08em;
}


/* =========================================================
   SCROLL CUE
   ========================================================= */

.scroll-cue {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

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

    color: var(--muted);

    font-size: .6rem;
    font-weight: 700;

    letter-spacing: .16em;
}

.scroll-cue b {
    font-size: 1rem;

    animation:
        scroll-bounce 1.7s infinite;
}


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

.about-grid {
    display: grid;

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

    gap: 28px;
}

.about-card {
    position: relative;

    min-height: 330px;

    padding: 38px;

    border-radius: var(--radius-lg);

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

.about-card:hover {
    transform: translateY(-8px);
}

.about-card.raised {
    transform: translateY(-20px);
}

.about-card.raised:hover {
    transform: translateY(-28px);
}

.card-number {
    position: absolute;

    top: 30px;
    right: 30px;

    color: var(--muted);

    font-size: .65rem;
    font-weight: 700;

    letter-spacing: .1em;
}

.about-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    margin-bottom: 80px;

    border-radius: 20px;

    background: var(--dark);
    color: var(--cream);

    font-size: 1.4rem;

    box-shadow:
        7px 7px 15px var(--shadow-dark),
        -7px -7px 15px var(--shadow-light);
}

.pink-icon {
    background: var(--pink);
}

.about-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 1.8rem;
}

.about-card p {
    margin-top: 12px;

    color: var(--muted);

    line-height: 1.7;
}


/* =========================================================
   BRANDS
   ========================================================= */

.brands-section {
    overflow: hidden;
}

.brands-grid {
    display: grid;

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

    gap: 28px;
}

.brand-card {
    position: relative;

    height: 560px;

    padding: 28px;

    border-radius: var(--radius-lg);

    overflow: hidden;

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

.brand-card:hover {
    transform: translateY(-10px);
}

.brand-dark {
    background: #2a2925;

    color: var(--cream);

    box-shadow:
        15px 15px 35px #c0beb8,
        -12px -12px 28px #ffffff;
}

.brand-light {
    background: #d9d6ce;
}

.brand-pink {
    background:
        linear-gradient(
            145deg,
            #d7a9b6,
            #c98f9e
        );
}

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

    font-size: .6rem;
    font-weight: 700;

    letter-spacing: .13em;

    opacity: .7;
}

.brand-bottle {
    position: absolute;

    left: 50%;
    top: 50%;

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

    width: 150px;
    height: 330px;

    border-radius:
        30px
        30px
        22px
        22px;

    background:
        linear-gradient(
            90deg,
            #2d2114,
            #b28a48 45%,
            #3b2a18
        );

    box-shadow:
        25px 35px 35px rgba(0,0,0,.2);
}

.brand-bottle::before {
    content: "";

    position: absolute;

    left: 45px;
    top: -65px;

    width: 60px;
    height: 80px;

    border-radius: 10px;

    background: #2b2117;
}

.brand-bottle-label {
    position: absolute;

    left: 50%;
    top: 50%;

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

    width: 85px;
    height: 120px;

    display: grid;
    place-items: center;

    background: #eee5d3;

    color: #26231e;

    font-family: "Playfair Display", serif;

    font-size: 1.3rem;
}

.brand-art {
    position: absolute;

    inset: 0;

    display: grid;

    place-items: center;
}

.brand-art div {
    position: absolute;

    width: 170px;
    height: 170px;

    border-radius: 50%;

    border: 1px solid rgba(50,48,43,.25);
}

.brand-art div:nth-child(2) {
    width: 240px;
    height: 240px;
}

.brand-art div:nth-child(3) {
    width: 310px;
    height: 310px;
}

.brand-symbol {
    position: absolute;

    inset: 0;

    display: grid;
    place-items: center;

    color: white;

    font-size: 9rem;
    font-weight: 200;

    opacity: .65;
}

.brand-card-bottom {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

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

.brand-card-bottom h3 {
    font-family: "Playfair Display", serif;

    font-size: 2.3rem;
}

.brand-card-bottom span {
    font-size: .6rem;
    font-weight: 700;

    letter-spacing: .08em;
}


/* =========================================================
   MARKET
   ========================================================= */

.stats-grid {
    display: grid;

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

    gap: 24px;
}

.stat-card {
    min-height: 270px;

    padding: 30px;

    border-radius: var(--radius-md);

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

.stat-card span {
    font-size: .6rem;
    font-weight: 700;

    letter-spacing: .14em;

    color: var(--muted);
}

.stat-card strong {
    font-family: "Playfair Display", serif;

    font-size: 4.2rem;

    color: var(--dark);
}

.stat-card p {
    color: var(--muted);

    font-size: .8rem;
}

.pink-card {
    background:
        linear-gradient(
            145deg,
            #ead9dd,
            #dfc4ca
        );
}

.market-banner {
    margin-top: 40px;

    min-height: 150px;

    padding: 35px 45px;

    border-radius: 30px;

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

.market-banner > span {
    color: var(--muted);

    font-size: .65rem;
    font-weight: 700;

    letter-spacing: .14em;
}

.market-banner strong {
    display: flex;
    align-items: baseline;
    gap: 15px;

    font-family: "Playfair Display", serif;

    font-size: 3.5rem;
}

.market-banner strong small {
    font-family: "DM Sans", sans-serif;

    color: var(--muted);

    font-size: .58rem;
    font-weight: 700;

    letter-spacing: .1em;
}


/* =========================================================
   CONSUMER
   ========================================================= */

.consumer-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 90px;

    align-items: center;
}

.consumer-copy p {
    max-width: 580px;

    margin-top: 25px;

    color: var(--muted);

    line-height: 1.85;
}

.text-link {
    display: inline-block;

    margin-top: 35px;

    color: var(--dark);

    font-size: .68rem;
    font-weight: 700;

    letter-spacing: .12em;

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

    padding-bottom: 6px;
}

.consumer-stats {
    display: grid;
    gap: 30px;
}

.big-stat {
    min-height: 230px;

    padding: 40px;

    border-radius: var(--radius-lg);

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.big-stat strong {
    font-family: "Playfair Display", serif;

    font-size: 5rem;

    line-height: 1;
}

.big-stat span {
    max-width: 260px;

    margin-top: 18px;

    color: var(--muted);

    font-size: .65rem;
    font-weight: 700;

    line-height: 1.5;

    letter-spacing: .1em;
}


/* =========================================================
   INNOVATION
   ========================================================= */

.innovation-panel {
    min-height: 580px;

    padding: 65px;

    border-radius: var(--radius-xl);

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;
}

.innovation-copy p {
    max-width: 500px;

    margin-top: 28px;

    color: var(--muted);

    line-height: 1.8;
}

.innovation-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 35px;
}

.innovation-tags span {
    padding: 10px 14px;

    border-radius: 100px;

    background: var(--surface);

    box-shadow:
        5px 5px 10px var(--shadow-dark),
        -5px -5px 10px var(--shadow-light);

    color: var(--muted);

    font-size: .58rem;
    font-weight: 700;

    letter-spacing: .08em;
}


/* INTERFACE */

.innovation-interface {
    min-height: 410px;

    padding: 20px;

    border-radius: 30px;
}

.interface-header {
    display: flex;
    align-items: center;

    gap: 7px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(120,115,105,.15);
}

.interface-header span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--pink);
}

.interface-header span:nth-child(2) {
    background: var(--gold);
}

.interface-header span:nth-child(3) {
    background: #7e9675;
}

.interface-header b {
    margin-left: auto;

    color: var(--muted);

    font-size: .58rem;

    letter-spacing: .12em;
}

.interface-main {
    height: 340px;

    display: flex;
    flex-direction: column;

    justify-content: center;
}

.interface-main small {
    color: var(--gold);

    font-size: .58rem;
    font-weight: 700;

    letter-spacing: .14em;
}

.interface-main strong {
    margin-top: 15px;

    font-family: "Playfair Display", serif;

    font-size: 2.5rem;
}

.interface-result {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 40px;

    padding: 18px;

    border-radius: 18px;

    background: var(--surface);

    box-shadow:
        7px 7px 15px var(--shadow-dark),
        -7px -7px 15px var(--shadow-light);
}

.ai-badge {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--dark);
    color: white;

    font-size: .65rem;
    font-weight: 700;
}

.interface-result div {
    display: flex;
    flex-direction: column;
}

.interface-result b {
    font-size: .7rem;
}

.interface-result small {
    margin-top: 4px;

    color: var(--muted);

    font-size: .6rem;
}


/* =========================================================
   CAREERS
   ========================================================= */

.careers-section {
    padding-bottom: 70px;
}

.careers-panel {
    min-height: 450px;

    padding: 65px;

    border-radius: var(--radius-xl);

    display: grid;

    grid-template-columns:
        1fr .7fr;

    gap: 50px;

    align-items: center;

    overflow: hidden;

    position: relative;
}

.careers-copy p {
    max-width: 560px;

    margin-top: 25px;

    color: var(--muted);

    line-height: 1.8;
}

.careers-copy .soft-button {
    margin-top: 35px;
}

.career-number {
    position: relative;

    width: 320px;
    height: 320px;

    margin-left: auto;

    border-radius: 50%;

    display: flex;
    flex-direction: column;

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

    background: var(--surface);

    box-shadow:
        inset 14px 14px 28px var(--shadow-dark),
        inset -14px -14px 28px var(--shadow-light);
}

.career-number::before {
    content: "";

    position: absolute;

    inset: 30px;

    border-radius: 50%;

    border: 1px solid rgba(184,146,82,.35);
}

.career-number span {
    color: var(--muted);

    font-size: .6rem;
    font-weight: 700;

    letter-spacing: .18em;
}

.career-number strong {
    margin-top: 7px;

    font-family: "Playfair Display", serif;

    font-size: 5.5rem;

    line-height: 1;

    color: var(--gold);
}

.career-number small {
    margin-top: 10px;

    color: var(--muted);

    font-size: .58rem;
    font-weight: 700;

    letter-spacing: .13em;
}


/* =========================================================
   GRADUATE PROGRAM
   ========================================================= */

.graduate-section {
    padding-top: 70px;
}

.program-highlight {
    display: grid;

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

    gap: 20px;

    padding: 35px;

    border-radius: 28px;
}

.program-highlight > div {
    display: flex;
    flex-direction: column;

    gap: 9px;

    padding: 20px;

    border-radius: 18px;

    background: var(--surface);

    box-shadow:
        inset 5px 5px 11px var(--shadow-dark),
        inset -5px -5px 11px var(--shadow-light);
}

.program-highlight span {
    color: var(--muted);

    font-size: .58rem;
    font-weight: 700;

    letter-spacing: .13em;
}

.program-highlight strong {
    font-family: "Playfair Display", serif;

    font-size: 2rem;
}


/* =========================================================
   JOURNEY
   ========================================================= */

.journey-track {
    display: grid;

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

    align-items: center;

    gap: 15px;

    margin-top: 50px;
}

.journey-step {
    min-height: 230px;

    padding: 30px;

    border-radius: 28px;
}

.journey-step > span {
    display: inline-flex;

    width: 40px;
    height: 40px;

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

    border-radius: 12px;

    background: var(--dark);
    color: white;

    font-size: .65rem;
    font-weight: 700;
}

.journey-step h3 {
    margin-top: 30px;

    font-size: .85rem;

    letter-spacing: .12em;
}

.journey-step p {
    margin-top: 10px;

    color: var(--muted);

    font-size: .8rem;

    line-height: 1.6;
}

.journey-arrow {
    color: var(--gold);

    font-size: 1.5rem;
}


/* =========================================================
   CAREER FIT
   ========================================================= */

.fit-panel {
    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 70px;

    padding: 65px;

    border-radius: var(--radius-xl);

    align-items: center;
}

.fit-panel h2 {
    margin-top: 15px;

    font-family: "Playfair Display", serif;

    font-size: 3.8rem;

    line-height: 1;
}

.fit-panel p {
    max-width: 500px;

    margin-top: 25px;

    color: var(--muted);

    line-height: 1.8;
}

.check-grid {
    display: grid;

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

    gap: 15px;
}

.check-item {
    min-height: 70px;

    padding: 16px;

    display: flex;
    align-items: center;

    gap: 14px;

    border-radius: 17px;

    background: var(--surface);

    box-shadow:
        6px 6px 13px var(--shadow-dark),
        -6px -6px 13px var(--shadow-light);
}

.check-item b {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: #809275;
    color: white;

    font-size: .7rem;
}

.check-item span {
    color: var(--dark-soft);

    font-size: .7rem;
    font-weight: 600;
}


/* =========================================================
   APPLY
   ========================================================= */

.apply-section {
    padding-top: 70px;
}

.apply-panel {
    position: relative;

    min-height: 560px;

    padding: 75px;

    border-radius: var(--radius-xl);

    display: flex;
    flex-direction: column;

    justify-content: center;

    overflow: hidden;
}

.apply-panel h2 {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.apply-panel h2 em {
    color: var(--pink);
}

.apply-panel p {
    position: relative;
    z-index: 2;

    margin-top: 25px;

    color: var(--muted);
}

.apply-panel .soft-button {
    position: relative;
    z-index: 2;

    align-self: flex-start;

    margin-top: 35px;
}

.apply-panel small {
    position: relative;
    z-index: 2;

    margin-top: 25px;

    color: var(--muted);

    font-size: .6rem;
}

.apply-orb {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 35%,
            rgba(255,255,255,.8),
            rgba(196,140,156,.15),
            transparent 68%
        );

    pointer-events: none;
}


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

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;
}

.contact-grid p {
    max-width: 500px;

    margin-top: 25px;

    color: var(--muted);

    line-height: 1.8;
}

.contact-card {
    display: flex;
    flex-direction: column;

    gap: 20px;

    padding: 40px;

    border-radius: 30px;
}

.contact-card a {
    padding-bottom: 15px;

    border-bottom: 1px solid rgba(100,95,85,.15);

    font-size: .85rem;
    font-weight: 600;

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.contact-card a:hover {
    color: var(--gold);

    padding-left: 5px;
}


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

.footer {
    padding: 45px 0;

    border-top: 1px solid rgba(100,95,85,.1);
}

.footer-inner {
    display: flex;

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

    gap: 30px;
}

.footer-inner > span {
    color: var(--muted);

    font-size: .58rem;
    font-weight: 700;

    letter-spacing: .1em;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a,
.footer-inner > a {
    color: var(--muted);

    font-size: .58rem;
    font-weight: 700;

    letter-spacing: .1em;

    transition: color .2s ease;
}

.footer-links a:hover,
.footer-inner > a:hover {
    color: var(--dark);
}


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

@keyframes bottle-float {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-13px) rotate(1deg);
    }
}

@keyframes chip-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes scroll-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

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


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

@media (max-width: 1050px) {

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-visual {
        min-height: 580px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-mini-stats {
        justify-content: center;
    }

    .section-heading.split-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .about-grid,
    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .consumer-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .innovation-panel,
    .careers-panel,
    .fit-panel {
        grid-template-columns: 1fr;
    }

    .career-number {
        margin: 0 auto;
    }

    .journey-track {
        grid-template-columns: 1fr 1fr;
    }

    .journey-arrow {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }
}


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

@media (max-width: 700px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .section {
        padding: 90px 0;
    }


    /* NAV */

    .nav-inner {
        height: 74px;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-actions > .soft-button {
        display: none;
    }

    .menu-button {
        display: block;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding-top: 75px;
        padding-bottom: 110px;
    }

    .hero h1 {
        font-size: clamp(
            3.5rem,
            16vw,
            5.5rem
        );
    }

    .hero-lead {
        font-size: .95rem;
    }

    .hero-mini-stats {
        gap: 18px;

        justify-content: space-between;
    }

    .hero-mini-stats strong {
        font-size: .82rem;
    }

    .hero-mini-stats span {
        font-size: .5rem;
    }

    .hero-visual {
        min-height: 500px;
    }

    .bottle-card {
        height: 480px;
    }

    .bottle {
        transform: scale(.82);
    }

    .chip-one {
        left: -5px;
        top: 120px;
    }

    .chip-two {
        right: -5px;
        bottom: 110px;
    }

    .scroll-cue {
        display: none;
    }


    /* HEADINGS */

    .section-heading h2,
    .consumer-copy h2,
    .innovation-copy h2,
    .careers-copy h2,
    .apply-panel h2,
    .contact-grid h2 {
        font-size: 3rem;
    }


    /* ABOUT */

    .about-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .about-card.raised {
        transform: none;
    }

    .about-card.raised:hover {
        transform: translateY(-8px);
    }


    /* BRANDS */

    .brand-card {
        height: 500px;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .market-banner {
        padding: 30px;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .market-banner strong {
        font-size: 3rem;
    }


    /* CONSUMER */

    .big-stat strong {
        font-size: 4rem;
    }


    /* INNOVATION */

    .innovation-panel,
    .careers-panel,
    .fit-panel,
    .apply-panel {
        padding: 35px 25px;

        border-radius: 32px;
    }

    .innovation-interface {
        min-height: 350px;
    }


    /* CAREER */

    .career-number {
        width: 260px;
        height: 260px;
    }

    .career-number strong {
        font-size: 4.5rem;
    }


    /* PROGRAM */

    .program-highlight {
        grid-template-columns: 1fr;

        padding: 20px;
    }

    .journey-track {
        grid-template-columns: 1fr;
    }


    /* FIT */

    .check-grid {
        grid-template-columns: 1fr;
    }


    /* APPLY */

    .apply-panel {
        min-height: 500px;
    }

    .apply-orb {
        width: 350px;
        height: 350px;
    }


    /* FOOTER */

    .footer-inner {
        flex-direction: column;

        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;

        justify-content: center;
    }
}


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

@media (max-width: 420px) {

    .hero h1 {
        font-size: 3.35rem;
    }

    .hero-mini-stats {
        flex-direction: column;

        align-items: center;

        gap: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .soft-button {
        width: 100%;
    }

    .bottle-card {
        width: 100%;
    }

    .floating-chip {
        transform: scale(.82);
    }

    .chip-one {
        left: -20px;
    }

    .chip-two {
        right: -20px;
    }
}


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

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

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