@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;700&display=swap');

:root {
    --bg-cream: #f7efe5;
    --bg-deep: #221913;
    --ink: #2c1d13;
    --muted: rgba(66, 45, 31, 0.72);
    --line: rgba(92, 60, 33, 0.12);
    --card: rgba(255, 249, 241, 0.72);
    --card-strong: rgba(255, 250, 245, 0.88);
    --shadow: 0 24px 60px rgba(61, 36, 21, 0.14);
    --cigar-accent: #a66a36;
    --cigar-glow: rgba(207, 155, 102, 0.3);
    --whisky-accent: #8b3f1f;
    --whisky-glow: rgba(164, 76, 34, 0.26);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Manrope', 'Noto Sans SC', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 252, 246, 0.92) 0%, rgba(255, 252, 246, 0) 28%),
        radial-gradient(circle at 85% 14%, rgba(193, 118, 67, 0.14) 0%, rgba(193, 118, 67, 0) 30%),
        linear-gradient(145deg, #fbf6ef 0%, #e9d8c8 46%, #dfcab8 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background:
        repeating-linear-gradient(135deg, rgba(96, 63, 39, 0.018) 0 2px, transparent 2px 14px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 26%);
    opacity: 0.7;
}

body::after {
    background:
        radial-gradient(circle at bottom center, rgba(96, 60, 31, 0.1) 0%, rgba(96, 60, 31, 0) 42%);
}

.portal-shell {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.portal-header {
    padding: 30px 0 18px;
}

.portal-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px 10px 10px;
    border-radius: 999px;
    border: 1px solid rgba(126, 88, 56, 0.12);
    background: rgba(255, 251, 246, 0.6);
    box-shadow: 0 12px 24px rgba(84, 53, 30, 0.08);
    backdrop-filter: blur(16px);
}

.portal-brand-home {
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.portal-brand-home:hover,
.portal-brand-home:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(126, 88, 56, 0.2);
    box-shadow: 0 18px 30px rgba(84, 53, 30, 0.12);
}

.portal-brand img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(75, 46, 24, 0.18);
}

.portal-brand-copy {
    display: grid;
    gap: 2px;
}

.portal-brand-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(92, 60, 33, 0.56);
}

.portal-brand-title {
    font-family: 'Cormorant Garamond', 'Noto Sans SC', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

body.portal-home {
    background: #11100f;
    color: #f8f3eb;
}

body.portal-home.is-scrolled {
    --header-surface: rgba(7, 7, 7, 0.94);
}

body.portal-home::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 18%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 18px);
    opacity: 0.3;
}

body.portal-home::after {
    background:
        radial-gradient(circle at top center, rgba(188, 145, 103, 0.16) 0%, rgba(188, 145, 103, 0) 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 68%, rgba(0, 0, 0, 0.18) 100%);
}

.portal-home .portal-shell {
    width: 100%;
}

.portal-home-hero {
    display: block;
    padding: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.portal-home-slider {
    position: relative;
    height: 100svh;
    min-height: 680px;
    overflow: hidden;
    background: #18110d;
}

.portal-home-slides {
    position: absolute;
    inset: 0;
}

.portal-home-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.7s ease, transform 5.2s linear;
}

.portal-home-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.portal-home-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
    linear-gradient(180deg, rgba(9, 7, 6, 0.16) 0%, rgba(9, 7, 6, 0.1) 44%, rgba(9, 7, 6, 0.6) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0) 38%);
}

.portal-home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portal-home-slider-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    padding: 28px 38px 34px;
    color: #fff8ef;
}

.portal-home-slider-topbar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 24;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 20px 24px 12px;
    background: var(--header-surface, rgba(7, 7, 7, 0));
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: background 0.28s ease, border-color 0.28s ease, padding 0.28s ease;
}

body.portal-home.is-scrolled .portal-home-slider-topbar {
    align-items: center;
    min-height: 72px;
    padding: 11px 24px;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.portal-home-slider-brand {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    border: none;
    background: transparent;
    appearance: none;
    cursor: pointer;
}

.portal-home-slider-brand img {
    width: clamp(84px, 9vw, 128px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
    transition: width 0.28s ease, opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.portal-home-slider-brand:hover img,
.portal-home-slider-brand:focus-visible img {
    transform: translateY(-2px);
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.3));
}

.portal-home-slider-brand:focus-visible {
    outline: none;
}

body.portal-home.is-scrolled .portal-home-slider-brand img {
    width: clamp(54px, 6vw, 84px);
    opacity: 1;
    transform: none;
    filter: none;
}

.portal-home-slider-controls {
    position: absolute;
    left: 38px;
    bottom: 30px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: min(260px, 42vw);
}

.portal-home-slider-progress {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(20px, 1fr);
    gap: 12px;
    width: 100%;
}

.portal-home-slider-dot {
    position: relative;
    height: 14px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.portal-home-slider-dot::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background: rgba(255, 236, 214, 0.24);
}

.portal-home-slider-dot span {
    position: absolute;
    left: 0;
    top: 50%;
    height: 2px;
    width: 0;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #d27a26 0%, #ef9a3f 100%);
    box-shadow: 0 0 14px rgba(223, 131, 41, 0.38);
}

.portal-home-slider-dot.is-active span {
    width: 100%;
}

.portal-home-slider-dot.is-active::before {
    background: rgba(234, 150, 67, 0.18);
}

.portal-home-slider-dot.is-animating span {
    transition: width var(--hero-duration, 5000ms) linear;
}

.portal-home-slider-collection {
    position: absolute;
    left: 50%;
    bottom: 34px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    text-decoration: none;
    color: #fff6eb;
    font-family: 'Cormorant Garamond', 'Noto Sans SC', serif;
    font-size: clamp(2.05rem, 3.6vw, 3.6rem);
    letter-spacing: 0.04em;
    line-height: 0.95;
    white-space: nowrap;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    transform: translateX(-50%);
    z-index: 3;
}

.portal-home-slider-collection-label {
    display: block;
}

.portal-home-slider-arrow {
    position: relative;
    width: 14px;
    height: 50px;
    display: block;
    overflow: hidden;
}

.portal-home-slider-arrow-rail {
    display: none;
}

.portal-home-slider-arrow-flow {
    position: absolute;
    left: 50%;
    top: 0;
    width: 14px;
    height: 50px;
    transform: translateX(-50%) translateY(-56px);
    animation: portal-home-arrow-flow 4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    opacity: 0;
}

.portal-home-slider-arrow-flow::before,
.portal-home-slider-arrow-flow::after {
    content: '';
    position: absolute;
    left: 50%;
}

.portal-home-slider-arrow-flow::before {
    top: 0;
    width: 2px;
    height: 40px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(247, 171, 74, 0.98) 0%, rgba(247, 171, 74, 0.84) 28%, rgba(247, 171, 74, 0.38) 72%, rgba(247, 171, 74, 0) 100%);
}

.portal-home-slider-arrow-flow::after {
    bottom: 0;
    width: 12px;
    height: 9px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(247, 171, 74, 0.92) 0%, rgba(247, 171, 74, 0.48) 58%, rgba(247, 171, 74, 0) 100%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.portal-home-slider-arrow-flow.second {
    animation-delay: 2s;
}

.portal-home-slider-arrow-flow.second::before {
    height: 48px;
}

@keyframes portal-home-arrow-flow {
    0% {
        transform: translateX(-50%) translateY(-56px);
        opacity: 0;
    }

    10% {
        opacity: 0.98;
    }

    30% {
        opacity: 1;
    }

    52% {
        transform: translateX(-50%) translateY(56px);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) translateY(56px);
        opacity: 0;
    }
}

.portal-home-collections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 100svh;
}

.portal-home-collection-card {
    position: relative;
    display: block;
    min-height: 100svh;
    overflow: hidden;
    text-decoration: none;
    color: #fff8ef;
    background: #17110d;
    isolation: isolate;
}

.portal-home-collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(12, 9, 8, 0.12) 0%, rgba(12, 9, 8, 0.48) 100%);
    transition: background 0.45s ease, opacity 0.45s ease;
}

.portal-home-collection-card img,
.portal-home-collection-whisky-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.portal-home-collection-card img {
    object-fit: cover;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.portal-home-collection-whisky-image {
    object-position: center center;
}

.portal-home-collection-card.is-whisky {
    background: linear-gradient(180deg, #432313 0%, #120c0a 100%);
}

.portal-home-collection-label {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 2;
    font-family: 'Cormorant Garamond', 'Noto Sans SC', serif;
    font-size: clamp(1.55rem, 2.4vw, 2.55rem);
    font-style: italic;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0.1em;
    text-transform: none;
    color: rgba(255, 245, 233, 0.9);
    text-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
    transition: color 0.22s ease, text-shadow 0.22s ease, transform 0.22s ease;
}

.portal-home-collection-card.is-whisky .portal-home-collection-label {
    left: auto;
    right: 40px;
    text-align: right;
}

.portal-home-collection-card:hover .portal-home-collection-label,
.portal-home-collection-card:focus .portal-home-collection-label,
.portal-home-collection-card:focus-visible .portal-home-collection-label,
.portal-home-collection-card:active .portal-home-collection-label {
    color: #f09a3e;
    text-shadow: 0 0 18px rgba(240, 154, 62, 0.34), 0 12px 24px rgba(0, 0, 0, 0.2);
    transform: translate3d(0, -3px, 0);
}

.portal-home-collection-card:hover::before,
.portal-home-collection-card:focus-visible::before,
.portal-home-collection-card:active::before {
    background: linear-gradient(180deg, rgba(12, 9, 8, 0.08) 0%, rgba(12, 9, 8, 0.58) 100%);
}

.portal-home-collection-card.is-cigar:hover img,
.portal-home-collection-card.is-cigar:focus-visible img,
.portal-home-collection-card.is-cigar:active img {
    transform: scale(1.065) translate3d(8px, -8px, 0) rotate(-0.75deg);
    filter: saturate(1.07) brightness(1.03) contrast(1.01);
}

.portal-home-collection-card.is-whisky:hover .portal-home-collection-whisky-image,
.portal-home-collection-card.is-whisky:focus-visible .portal-home-collection-whisky-image,
.portal-home-collection-card.is-whisky:active .portal-home-collection-whisky-image {
    transform: scale(1.04) translate3d(-5px, -6px, 0);
    filter: saturate(1.08) brightness(1.03) contrast(1.02);
}

@media (max-width: 900px) {
    .portal-home-hero {
        padding: 0;
    }

    .portal-home-slider {
        min-height: 100svh;
        height: 100svh;
    }

    .portal-home-slider-overlay {
        padding: 22px 24px 28px;
    }

    .portal-home-slider-topbar {
        min-height: 64px;
        padding: 16px 18px 10px;
        gap: 18px;
    }

    body.portal-home.is-scrolled .portal-home-slider-topbar {
        min-height: 64px;
        padding: 10px 18px;
    }

    .portal-home-slider-brand img {
        width: min(86px, 16vw);
    }

    body.portal-home.is-scrolled .portal-home-slider-brand img {
        width: min(56px, 11vw);
    }

    .portal-home-slider-controls {
        left: 24px;
        bottom: 24px;
        width: min(190px, 42vw);
    }

    .portal-home-slider-progress {
        gap: 6px;
    }

    .portal-home-slider-collection {
        font-size: clamp(1.55rem, 6.2vw, 2.2rem);
        bottom: 22px;
        gap: 8px;
    }

    .portal-home-slider-arrow {
        height: 40px;
    }

    .portal-home-slider-arrow-flow {
        height: 40px;
        transform: translateX(-50%) translateY(-46px);
    }

    .portal-home-slider-arrow-flow::before {
        height: 31px;
    }

    .portal-home-slider-arrow-flow.second::before {
        height: 37px;
    }

    @keyframes portal-home-arrow-flow {
        0% {
            transform: translateX(-50%) translateY(-46px);
            opacity: 0;
        }

        10% {
            opacity: 0.98;
        }

        30% {
            opacity: 1;
        }

        52% {
            transform: translateX(-50%) translateY(46px);
            opacity: 0;
        }

        100% {
            transform: translateX(-50%) translateY(46px);
            opacity: 0;
        }
    }

    .portal-home-slider-arrow-flow::after {
        width: 10px;
        height: 8px;
    }

    .portal-home-collections {
        grid-template-columns: 1fr;
    }

    .portal-home-collection-card {
        min-height: 50svh;
    }

    .portal-home-collection-whisky-stage {
        padding: 34px;
    }

    .portal-home-collection-label {
        left: 24px;
        bottom: 24px;
        font-size: clamp(1.35rem, 6.2vw, 2.1rem);
        letter-spacing: 0.08em;
    }

    .portal-home-collection-card.is-whisky .portal-home-collection-label {
        right: 24px;
    }
}

.portal-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 26px;
    align-items: stretch;
    padding: 20px 0 26px;
}

.portal-copy {
    padding: 24px 0 18px;
}

.portal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 251, 245, 0.72);
    border: 1px solid rgba(126, 88, 56, 0.1);
    color: rgba(92, 60, 33, 0.72);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portal-copy h1 {
    margin: 18px 0 16px;
    font-family: 'Cormorant Garamond', 'Noto Sans SC', serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: 0.03em;
    font-weight: 700;
}

.portal-copy p {
    max-width: 620px;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.8;
    color: var(--muted);
}

.portal-note-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.portal-note {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 250, 244, 0.72);
    border: 1px solid rgba(111, 71, 42, 0.08);
    box-shadow: 0 12px 30px rgba(83, 49, 25, 0.08);
}

.portal-note-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(92, 60, 33, 0.48);
    margin-bottom: 10px;
}

.portal-note strong {
    font-size: 1rem;
    line-height: 1.45;
}

.portal-visual {
    position: relative;
    min-height: 560px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 244, 229, 0.9) 0%, rgba(255, 244, 229, 0) 30%),
        linear-gradient(180deg, rgba(63, 43, 29, 0.92) 0%, rgba(27, 18, 12, 0.98) 100%);
    box-shadow: 0 32px 80px rgba(35, 22, 14, 0.26);
    border: 1px solid rgba(255, 248, 240, 0.08);
}

.portal-visual::before,
.portal-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
}

.portal-visual::before {
    width: 320px;
    height: 320px;
    top: -120px;
    right: -80px;
    background: rgba(224, 154, 103, 0.18);
}

.portal-visual::after {
    width: 260px;
    height: 260px;
    bottom: -120px;
    left: -80px;
    background: rgba(132, 72, 32, 0.22);
}

.portal-visual-stack {
    position: absolute;
    inset: 26px;
    display: grid;
    align-content: center;
    gap: 18px;
}

.portal-floating-card {
    position: relative;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 251, 246, 0.08);
    border: 1px solid rgba(255, 246, 235, 0.1);
    backdrop-filter: blur(16px);
    color: rgba(255, 247, 238, 0.94);
}

.portal-floating-card:nth-child(1) {
    width: 74%;
    justify-self: end;
}

.portal-floating-card:nth-child(2) {
    width: 84%;
}

.portal-floating-card:nth-child(3) {
    width: 68%;
    justify-self: center;
}

.portal-floating-kicker {
    display: block;
    margin-bottom: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 239, 220, 0.62);
}

.portal-floating-card strong {
    display: block;
    font-family: 'Cormorant Garamond', 'Noto Sans SC', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

.portal-floating-card p {
    margin: 0;
    line-height: 1.7;
    color: rgba(255, 243, 233, 0.8);
}

.portal-sections {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 8px 0 56px;
}

.portal-card {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 460px;
    padding: 28px;
    border-radius: 34px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid rgba(88, 54, 30, 0.08);
}

.portal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 84px rgba(55, 31, 17, 0.18);
}

.portal-card::before,
.portal-card::after {
    content: '';
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

.portal-card::before {
    width: 280px;
    height: 280px;
    right: -40px;
    top: -20px;
    border-radius: 50%;
}

.portal-card::after {
    left: -30px;
    bottom: -50px;
    width: 220px;
    height: 220px;
    border-radius: 42% 58% 63% 37% / 39% 42% 58% 61%;
    opacity: 0.8;
}

.portal-card-cigar {
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.86) 0%, rgba(245, 230, 213, 0.94) 100%),
        linear-gradient(145deg, #f4e5d1 0%, #e0c0a0 100%);
}

.portal-card-cigar::before {
    background: radial-gradient(circle, rgba(196, 133, 74, 0.24) 0%, rgba(196, 133, 74, 0) 70%);
}

.portal-card-cigar::after {
    background: radial-gradient(circle, rgba(145, 84, 38, 0.14) 0%, rgba(145, 84, 38, 0) 68%);
}

.portal-card-whisky {
    color: #fff9f1;
    background:
        linear-gradient(180deg, rgba(67, 38, 24, 0.88) 0%, rgba(30, 18, 12, 0.96) 100%),
        linear-gradient(145deg, #8d5628 0%, #341d12 100%);
}

.portal-card-whisky::before {
    background: radial-gradient(circle, rgba(208, 129, 58, 0.34) 0%, rgba(208, 129, 58, 0) 72%);
}

.portal-card-whisky::after {
    background: radial-gradient(circle, rgba(255, 210, 138, 0.18) 0%, rgba(255, 210, 138, 0) 72%);
}

.portal-card-inner {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: space-between;
    gap: 26px;
}

.portal-card-top {
    display: grid;
    gap: 18px;
}

.portal-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 84px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.portal-card-cigar .portal-pill {
    background: rgba(166, 106, 54, 0.1);
    color: #905828;
}

.portal-card-whisky .portal-pill {
    background: rgba(255, 239, 220, 0.12);
    color: rgba(255, 239, 220, 0.82);
}

.portal-card h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', 'Noto Sans SC', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 0.92;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.portal-card p {
    margin: 0;
    max-width: 440px;
    font-size: 1rem;
    line-height: 1.8;
}

.portal-card-cigar p {
    color: rgba(66, 45, 31, 0.74);
}

.portal-card-whisky p {
    color: rgba(255, 244, 232, 0.78);
}

.portal-showcase {
    display: grid;
    gap: 12px;
}

.portal-showcase-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.portal-chip {
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    backdrop-filter: blur(10px);
}

.portal-card-cigar .portal-chip {
    background: rgba(255, 248, 239, 0.82);
    border: 1px solid rgba(145, 84, 38, 0.12);
    color: #7a4e2b;
}

.portal-card-whisky .portal-chip {
    background: rgba(255, 250, 244, 0.08);
    border: 1px solid rgba(255, 241, 223, 0.12);
    color: rgba(255, 244, 232, 0.86);
}

.portal-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
}

.portal-status {
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.portal-card-cigar .portal-status {
    color: #8c5a2f;
}

.portal-card-whisky .portal-status {
    color: rgba(255, 239, 220, 0.82);
}

.portal-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.portal-card:hover .portal-arrow {
    transform: translateX(4px);
}

.portal-card-cigar .portal-arrow {
    background: rgba(255, 247, 237, 0.88);
    color: #8e592c;
}

.portal-card-whisky .portal-arrow {
    background: rgba(255, 246, 235, 0.12);
    color: #fff5e8;
}

.section-shell {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
    padding: 14px 0 48px;
}

.section-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-label {
    display: block;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(92, 60, 33, 0.5);
    margin-bottom: 8px;
}

.section-title {
    margin: 0;
    font-family: 'Cormorant Garamond', 'Noto Sans SC', serif;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
}

.section-subtitle {
    margin: 14px 0 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1rem;
}

.whisky-coming {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 22px;
    margin-top: 26px;
}

.whisky-panel,
.whisky-aside {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.whisky-panel {
    padding: 32px;
    background:
        radial-gradient(circle at top right, rgba(247, 188, 131, 0.2) 0%, rgba(247, 188, 131, 0) 34%),
        linear-gradient(180deg, rgba(56, 31, 19, 0.92) 0%, rgba(24, 15, 10, 0.98) 100%);
    color: #fff8ef;
}

.whisky-panel h2,
.whisky-aside h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', 'Noto Sans SC', serif;
    letter-spacing: 0.04em;
}

.whisky-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.whisky-panel p,
.whisky-aside p {
    margin: 0;
    line-height: 1.8;
}

.whisky-roadmap {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.whisky-step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 248, 239, 0.08);
    border: 1px solid rgba(255, 244, 230, 0.08);
}

.whisky-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 237, 215, 0.12);
    color: #ffd9b0;
    font-weight: 800;
}

.whisky-step strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.whisky-step span {
    color: rgba(255, 242, 230, 0.72);
}

.whisky-aside {
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(255, 250, 244, 0.92) 0%, rgba(243, 229, 214, 0.98) 100%);
    border: 1px solid rgba(111, 71, 42, 0.08);
}

.whisky-aside h3 {
    font-size: 2rem;
    margin-bottom: 14px;
}

.whisky-bottle-grid {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.whisky-bottle {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(111, 71, 42, 0.08);
}

.whisky-bottle-shape {
    width: 74px;
    height: 104px;
    border-radius: 22px 22px 18px 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.08) 24%),
        linear-gradient(180deg, #b95c22 0%, #7f3313 70%, #63240b 100%);
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 238, 215, 0.18), 0 18px 30px rgba(109, 50, 17, 0.18);
}

.whisky-bottle-shape::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    width: 24px;
    height: 20px;
    transform: translateX(-50%);
    border-radius: 10px 10px 4px 4px;
    background: linear-gradient(180deg, #94511f 0%, #683313 100%);
}

.whisky-bottle strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.whisky-bottle span {
    color: rgba(66, 45, 31, 0.72);
    line-height: 1.6;
}

.section-footer-note {
    margin-top: 22px;
    color: rgba(92, 60, 33, 0.68);
    font-size: 0.92rem;
}

@media (max-width: 960px) {
    .portal-home-hero,
    .portal-home-intro,
    .portal-home-feature,
    .portal-home-feature:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .portal-home-feature:nth-child(even) .portal-home-feature-media {
        order: 0;
    }

    .portal-home-intro-points,
    .portal-home-catalogue-grid {
        grid-template-columns: 1fr;
    }

    .portal-home-slider,
    .portal-home-slider-overlay {
        min-height: 440px;
    }

    .portal-home-slider-progress {
        max-width: 100%;
    }

    .portal-hero,
    .portal-sections,
    .whisky-coming {
        grid-template-columns: 1fr;
    }

    .portal-visual {
        min-height: 420px;
    }
}

@media (max-width: 720px) {
    .portal-home .portal-shell {
        width: min(100% - 20px, 100%);
    }

    .portal-home-header,
    .portal-home-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .portal-home-meta {
        gap: 10px;
        flex-wrap: wrap;
    }

    .portal-home-hero {
        gap: 20px;
        padding-bottom: 30px;
    }

    .portal-home-copy {
        padding: 12px 0 0;
    }

    .portal-home-slider,
    .portal-home-slider-overlay {
        min-height: 320px;
    }

    .portal-home-slider-overlay {
        padding: 18px;
    }

    .portal-home-slider-copy {
        max-width: 240px;
    }

    .portal-home-slider-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .portal-home-slider-progress {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .portal-home-feature-copy {
        padding: 28px 22px;
    }

    .portal-home-feature-media {
        min-height: 280px;
    }

    .portal-home-link-block {
        width: 100%;
        min-width: 0;
    }

    .portal-shell,
    .section-shell {
        width: min(100% - 24px, 100%);
    }

    .portal-header {
        padding-top: 18px;
    }

    .portal-hero {
        gap: 18px;
        padding-top: 10px;
    }

    .portal-copy h1 {
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    .portal-note-grid {
        grid-template-columns: 1fr;
    }

    .portal-visual {
        min-height: 360px;
        border-radius: 28px;
    }

    .portal-visual-stack {
        inset: 18px;
    }

    .portal-floating-card,
    .portal-floating-card:nth-child(1),
    .portal-floating-card:nth-child(2),
    .portal-floating-card:nth-child(3) {
        width: 100%;
        justify-self: stretch;
    }

    .portal-card {
        min-height: 400px;
        padding: 22px;
        border-radius: 28px;
    }

    .portal-card-footer {
        align-items: flex-end;
    }

    .portal-arrow {
        width: 50px;
        height: 50px;
    }

    .section-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .whisky-panel,
    .whisky-aside {
        padding: 22px;
        border-radius: 24px;
    }

    .whisky-step,
    .whisky-bottle {
        grid-template-columns: 1fr;
    }

    .whisky-step-index,
    .whisky-bottle-shape {
        margin: 0 auto;
    }
}
