/* ═══════════════════════════════════════════════════
   CRATERE CONCRETE — style.css
   ═══════════════════════════════════════════════════ */

/* ─ ROOT VARIABLES ─ */
:root {
    --rust: #c0432a;
    --rust-d: #9a3520;
    --char: #161412;
    --dark: #0e0c0b;
    --gray: #7a746e;
    --concrete: #b8b0a4;
    --off: #f0ece4;
    --warm: #e8e0d4;
    --gold: #c8a86a;
    --white: #ffffff;

    /* Semantic aliases */
    --bg-light: var(--off);
    --bg-dark: var(--char);
    --bg-darkest: var(--dark);
    --text-main: var(--char);
    --accent: var(--rust);
    --accent-dark: var(--rust-d);
    --border-light: rgba(255, 255, 255, .07);
    --border-dark: rgba(0, 0, 0, .08);

    --nav-h: 66px;
}

/* ─ RESET ─ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* ─ SCROLLBAR ─ */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
}

/* ═══ NAV ═══ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(14, 12, 11, .97);
    border-bottom: 2px solid var(--accent);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.85rem;
    color: var(--off);
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-h {
    width: 32px;
    height: 32px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    color: var(--white);
}

.logo em {
    color: var(--accent);
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 26px;
    list-style: none;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    color: var(--concrete);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .3s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    text-decoration: none;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background .2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--accent-dark);
}

/* Hamburger */
.hbg {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hbg span {
    width: 24px;
    height: 2px;
    background: var(--off);
    display: block;
    transition: .3s;
}

.mob-menu {
    position: fixed;
    inset: 0;
    top: var(--nav-h);
    background: rgba(14, 12, 11, .98);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.mob-menu.open {
    display: flex;
}

.mob-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--off);
    text-decoration: none;
    letter-spacing: 3px;
    transition: color .2s;
}

.mob-menu a:hover {
    color: var(--accent);
}

/* ═══ HERO SLIDER ═══ */
.hero {
    margin-top: var(--nav-h);
    position: relative;
    height: calc(100vh - var(--nav-h));
    min-height: 500px;
    overflow: hidden;
}

/* Slider track — full viewport width slides */
.slides {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform .9s cubic-bezier(.77, 0, .175, 1);
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    overflow: hidden;
    padding-top: 40px;
}

/* Background image layer */
.sbg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.06);
    transition: transform 8s ease-out;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.slide.on .sbg {
    transform: scale(1);
}

/* Dark overlay */
.sbg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(14, 12, 11, .88) 0%, rgba(14, 12, 11, .50) 55%, rgba(14, 12, 11, .15) 100%);
}

/* Noise texture overlay */
.sbg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Fallback gradient backgrounds per slide */
.slide:nth-child(1) .sbg {
    background: linear-gradient(135deg, #241e1a, #3d3228 40%, #1a1510);
}

.slide:nth-child(2) .sbg {
    background: linear-gradient(135deg, #181e28, #242d3d 40%, #0e1318);
}

.slide:nth-child(3) .sbg {
    background: linear-gradient(135deg, #1e1510, #322418 40%, #100b08);
}

/* Slide content */
.sc {
    position: relative;
    z-index: 5;
    padding: 0 7% 120px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s .2s, transform .8s .2s;
}

.slide.on .sc {
    opacity: 1;
    transform: translateY(0);
}

.seyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .75rem;
    letter-spacing: 5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}

.slide h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    color: var(--white);
    line-height: .88;
    margin-bottom: 22px;
}

.slide h1 em {
    color: var(--accent);
    font-style: normal;
    display: block;
}

.slide p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 480px;
    font-weight: 300;
}

.sbtns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.slide-acc {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent 80%);
    z-index: 4;
}

/* Slider nav */
.snav {
    position: absolute;
    bottom: 44px;
    left: 7%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

/* Gap between .sbtns and .snav (achieved via sbtns margin) */
.sbtns {
    margin-bottom: 0;
}

.snbtn {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    cursor: pointer;
    color: var(--white);
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.snbtn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.sdots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.sdot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all .3s;
}

.sdot.on {
    background: var(--accent);
    width: 26px;
}

.snum {
    position: absolute;
    bottom: 38px;
    right: 5%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 7rem;
    color: rgba(255, 255, 255, .05);
    pointer-events: none;
    z-index: 4;
    line-height: 1;
}

/* Buttons */
.btn-r {
    background: var(--accent);
    color: var(--white);
    padding: 13px 34px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .9rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background .2s;
}

.btn-r:hover {
    background: var(--accent-dark);
}

.btn-o {
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: var(--off);
    padding: 12px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .9rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    transition: all .2s;
    display: inline-block;
}

.btn-o:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Stats removed */

/* ═══ SECTION HELPERS ═══ */
.sec-eye {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .72rem;
    letter-spacing: 5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: .92;
}

.sec-title em {
    color: var(--accent);
    font-style: normal;
}

.sec-title.lt {
    color: var(--off);
}

.sec-title.dk {
    color: var(--bg-dark);
}

.sec-title-center {
    text-align: center;
}

.sec-title-center .sec-eye {
    display: block;
    margin-bottom: 8px;
}

/* Gold diamond header */
.gold-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.gold-header::before, .gold-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 168, 106, .3), transparent);
    transform: translateY(-50%);
}

.gold-header-inner {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    padding: 0 20px;
}

.gold-header-inner.dark-bg {
    background: var(--bg-dark);
}

.gold-diamond {
    color: var(--gold);
    font-size: 1.1rem;
}

.gold-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    color: var(--bg-dark);
}

.gold-title.lt {
    color: var(--off);
}

/* ═══ ABOUT ═══ */
#about {
    background: var(--bg-dark);
    padding: 90px 5%;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.about-vis {
    position: relative;
}

.about-img-box {
    width: 100%;
    height: 100%;
    min-height: 460px;
    background: linear-gradient(145deg, #2a2218, #3d3025 60%, #1a150e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, .07);
    position: relative;
    overflow: hidden;
}

.about-img-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.about-badge {
    position: absolute;
    top: 24px;
    right: -10px;
    background: var(--accent);
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    text-align: center;
    z-index: 2;
}

.about-badge .bn {
    font-size: 2rem;
    line-height: 1;
}

.about-badge .bl {
    font-size: .58rem;
    letter-spacing: 1px;
}

.about-txt {
    padding: 64px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-txt p {
    color: var(--concrete);
    line-height: 1.9;
    font-size: .93rem;
    margin-bottom: 14px;
    font-weight: 300;
}

.about-txt p strong {
    color: var(--off);
    font-weight: 600;
}

.about-list {
    list-style: none;
    margin: 16px 0 24px;
}

.about-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: .88rem;
    color: var(--concrete);
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-list li::before {
    content: '▸';
    color: var(--accent);
    flex-shrink: 0;
}

.aboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.abox {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border-light);
    padding: 14px;
    border-left: 3px solid var(--accent);
}

.abox .n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    color: var(--accent);
    line-height: 1;
}

.abox .l {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .68rem;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ═══ PRODUCTS ═══ */
#products {
    background: #f8f5f0;
    padding: 90px 4%;
}

.pgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pcard {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .07);
    position: relative;
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .13);
    z-index: 2;
}

.pcard-img {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    flex-shrink: 0;
}

.pcard:nth-child(1) .pcard-img {
    background: linear-gradient(160deg, #e8e2d6, #c4bba8);
}

.pcard:nth-child(2) .pcard-img {
    background: linear-gradient(160deg, #d0d8e4, #a8b8cc);
}

.pcard:nth-child(3) .pcard-img {
    background: linear-gradient(160deg, #e0d4c6, #c0a888);
}

.pcard:nth-child(4) .pcard-img {
    background: linear-gradient(160deg, #c8d4da, #98b0bc);
}

.pcard:nth-child(5) .pcard-img {
    background: linear-gradient(160deg, #d8e0d2, #a8c0a2);
}

.pcard:nth-child(6) .pcard-img {
    background: linear-gradient(160deg, #e0d0be, #c0a07e);
}

.pcard:nth-child(7) .pcard-img {
    background: linear-gradient(160deg, #d0d0e2, #9898be);
}

.pcard:nth-child(8) .pcard-img {
    background: linear-gradient(160deg, #e0ccc8, #c09890);
}

.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.pcard-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
    pointer-events: none;
}

.pcard-icon {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .2));
}

.ptag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    background: var(--bg-dark);
    color: var(--off);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 9px;
    font-weight: 700;
}

.ptag.r {
    background: var(--accent);
}

.pov {
    position: absolute;
    inset: 0;
    background: rgba(22, 20, 18, .6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .3s;
    backdrop-filter: blur(3px);
}

.pcard:hover .pov {
    opacity: 1;
}

.pov a {
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .76rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 8px 20px;
    text-decoration: none;
    transition: all .2s;
}

.pov a:first-child {
    border: 1.5px solid rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .08);
}

.pov a:first-child:hover {
    background: rgba(255, 255, 255, .2);
}

.pov a:last-child {
    background: var(--accent);
}

.pov a:last-child:hover {
    background: var(--accent-dark);
}

.pbody {
    padding: 18px 18px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.pgrade {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .65rem;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pbody h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.pdesc {
    font-size: .78rem;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1;
}

.pspec-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 14px;
}

.pspec-badge {
    background: var(--warm);
    padding: 2px 8px;
    font-size: .66rem;
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--gray);
    letter-spacing: 1px;
    border-radius: 2px;
}

.pspec-badge strong {
    color: var(--bg-dark);
}

.penq {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--off);
    padding: 9px 26px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .76rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--bg-dark);
    transition: all .2s;
    border-radius: 2px;
}

.penq:hover {
    background: transparent;
    color: var(--bg-dark);
}

/* ═══ HOW WE MAKE ═══ */
#howwemake {
    background: var(--bg-darkest);
    padding: 90px 5%;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    margin-top: 50px;
    position: relative;
}

.process-row::before {
    content: '';
    position: absolute;
    top: 46px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(to right, var(--accent), rgba(192, 67, 42, .1));
    z-index: 0;
}

.pstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 6px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.pstep-c {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, .04);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 12px;
    transition: background .3s, transform .3s;
    position: relative;
}

.pstep-c::after {
    content: attr(data-n);
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: .68rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pstep:hover .pstep-c {
    background: var(--accent);
    transform: scale(1.08);
}

.pstep-t {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--off);
    margin-bottom: 5px;
}

.pstep-d {
    font-size: .74rem;
    color: var(--gray);
    line-height: 1.55;
}

.pcards3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 46px;
}

.pcd {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border-light);
    padding: 24px;
    border-top: 3px solid var(--accent);
}

.pcd .ic {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pcd h4 {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: .9rem;
    color: var(--off);
    margin-bottom: 8px;
}

.pcd p {
    color: var(--gray);
    font-size: .8rem;
    line-height: 1.65;
}

/* ═══ GALLERY — FAN/ARC ═══ */
#gallery {
    background: #f8f5f0;
    padding: 90px 0 70px;
}

.gal-sec {
    padding: 0 5%;
    margin-bottom: 60px;
}

.fan-stage {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fan-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fan-item {
    position: absolute;
    width: 220px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
}

.fan-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fan-item .fi-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.fan-item .fi-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.fan-item:hover .fi-overlay {
    background: rgba(0, 0, 0, .35);
}

.fi-zoom {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    opacity: 0;
    transform: scale(.8);
    transition: opacity .3s, transform .3s;
}

.fan-item:hover .fi-zoom {
    opacity: 1;
    transform: scale(1);
}

.fan-item .fi-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 12px 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .8rem;
    letter-spacing: 1px;
    color: var(--white);
    font-weight: 600;
    text-align: center;
}

.fan-item:hover {
    z-index: 20 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35) !important;
}

.fan-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.fan-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--bg-dark);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--bg-dark);
    transition: all .2s;
}

.fan-btn:hover {
    background: var(--bg-dark);
    color: var(--white);
}

/* Image Lightbox */
.img-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.img-lightbox.open {
    display: flex;
}

.img-lightbox-inner {
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.img-lightbox-inner img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    background: var(--bg-dark);
}

.img-lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .75);
    padding: 10px 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .9rem;
    letter-spacing: 1px;
    color: var(--white);
}

.lightbox-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.lightbox-close:hover {
    background: var(--accent-dark);
}

/* ═══ VIDEO GALLERY ═══ */
#vgallery {
    background: #f8f5f0;
    padding: 0 0 90px;
}

.vgal-wrap {
    overflow: hidden;
    position: relative;
}

.vgal-track {
    display: flex;
    gap: 18px;
    padding: 0 5%;
    width: max-content;
    animation: vscroll 38s linear infinite;
}

.vgal-track:hover {
    animation-play-state: paused;
}

@keyframes vscroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.vcard {
    flex-shrink: 0;
    width: 230px;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .14);
}

.vcard:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 44px rgba(0, 0, 0, .25);
}

.vcard-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.vcard-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vcard:nth-child(8n+1) .vcard-bg {
    background: linear-gradient(175deg, #2a1e18, #4a3020);
}

.vcard:nth-child(8n+2) .vcard-bg {
    background: linear-gradient(175deg, #1a1f2c, #2c3040);
}

.vcard:nth-child(8n+3) .vcard-bg {
    background: linear-gradient(175deg, #201814, #382820);
}

.vcard:nth-child(8n+4) .vcard-bg {
    background: linear-gradient(175deg, #181e14, #283018);
}

.vcard:nth-child(8n+5) .vcard-bg {
    background: linear-gradient(175deg, #1e1518, #30202a);
}

.vcard:nth-child(8n+6) .vcard-bg {
    background: linear-gradient(175deg, #2a1e18, #4a3020);
}

.vcard:nth-child(8n+7) .vcard-bg {
    background: linear-gradient(175deg, #1a1f2c, #2c3040);
}

.vcard:nth-child(8n+8) .vcard-bg {
    background: linear-gradient(175deg, #201814, #382820);
}

.vcard-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vcard-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .05) 100%);
}

.vplay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    z-index: 3;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    transition: all .3s;
}

.vcard:hover .vplay {
    background: var(--accent);
    border-color: var(--accent);
    transform: translate(-50%, -55%) scale(1.1);
}

.vdur {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: rgba(0, 0, 0, .65);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .68rem;
    letter-spacing: 1px;
    padding: 2px 7px;
    border-radius: 3px;
}

.vinfo {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 16px 14px 14px;
}

.vinfo h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .5px;
    color: var(--white);
    margin-bottom: 3px;
}

.vinfo span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .72rem;
    color: rgba(255, 255, 255, .55);
    letter-spacing: 1px;
}

/* Video Popup Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.open {
    display: flex;
}

.video-modal-inner {
    position: relative;
    max-width: 860px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-modal-inner video,
.video-modal-inner iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.video-modal-inner .vm-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, #1a1510, #2e2418);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--concrete);
}

.vm-placeholder .vm-icon {
    font-size: 3.5rem;
    opacity: .5;
}

.vm-placeholder h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--off);
}

.vm-placeholder p {
    font-size: .82rem;
    opacity: .6;
}

.video-modal-bar {
    background: var(--bg-dark);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-modal-bar h5 {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1.5px;
    color: var(--off);
    font-size: .95rem;
}

.vm-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color .2s;
}

.vm-close:hover {
    color: var(--accent);
}

/* ═══ CONTACT ═══ */
#contact {
    background: var(--bg-light);
    padding: 90px 5%;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-left .sec-eye {
    margin-bottom: 6px;
}

.contact-left .sec-title {
    margin-bottom: 16px;
}

.contact-intro {
    color: var(--gray);
    line-height: 1.8;
    font-size: .92rem;
    margin-bottom: 32px;
}

.ccard {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border-left: 3px solid var(--accent);
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    border-radius: 0 4px 4px 0;
    transition: box-shadow .2s;
}

.ccard:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.cicon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    border-radius: 2px;
}

.ccard h5 {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .7rem;
    color: var(--gray);
    margin-bottom: 2px;
}

.ccard p {
    font-size: .88rem;
    color: var(--bg-dark);
    line-height: 1.45;
}

/* Form */
.cform {
    background: var(--bg-dark);
    padding: 40px 36px;
    border-radius: 4px;
}

.cform-head {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--off);
    letter-spacing: 2px;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
}

.frow2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

.fg label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.fg input, .fg select, .fg textarea {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--off);
    padding: 10px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s;
    resize: vertical;
    border-radius: 2px;
}

.fg input::placeholder, .fg textarea::placeholder {
    color: rgba(255, 255, 255, .2);
}

.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--accent);
}

.fg select option {
    background: var(--bg-dark);
}

.fsub {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 13px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .9rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    width: 100%;
}

.fsub:hover {
    background: var(--accent-dark);
}

.fok {
    display: none;
    background: rgba(192, 67, 42, .12);
    border: 1px solid var(--accent);
    padding: 12px;
    color: var(--accent);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 12px;
    border-radius: 2px;
}

/* ═══ FOOTER ═══ */
footer {
    background: var(--bg-darkest);
    padding: 54px 5% 24px;
    border-top: 3px solid var(--accent);
}

.fstamp {
    font-family: 'Bebas Neue', sans-serif;
    color: rgba(192, 67, 42, .12);
    font-size: 4.5rem;
    letter-spacing: 5px;
    text-align: center;
    line-height: 1;
    margin-bottom: 14px;
}

.fgrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 34px;
}

.fbrand p {
    color: var(--gray);
    font-size: .85rem;
    line-height: 1.75;
    margin-top: 10px;
}

.fcol h6 {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: .76rem;
    color: var(--off);
    margin-bottom: 14px;
}

.fcol ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fcol ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: .84rem;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fcol ul li a::before {
    content: '›';
    color: var(--accent);
}

.fcol ul li a:hover {
    color: var(--accent);
}

.fbot {
    border-top: 1px solid var(--border-light);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.fbot p {
    color: var(--gray);
    font-size: .8rem;
}

.ftag {
    color: var(--accent);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 3px;
    font-size: .74rem;
}

/* ═══ MODAL ═══ */
.mwrap {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.mwrap.open {
    display: flex;
}

.mbox {
    background: var(--bg-light);
    max-width: 920px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    border-radius: 4px;
}

.mcls {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 4px 0 0;
    transition: background .2s;
}

.mcls:hover {
    background: var(--accent);
}

/* ═══ SCROLL REVEAL ═══ */
.rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s, transform .65s;
}

.rvl {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .65s, transform .65s;
}

.rvr {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .65s, transform .65s;
}

.rv.on, .rvl.on, .rvr.on {
    opacity: 1;
    transform: translate(0, 0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width:1100px) {
    .pgrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .process-row::before {
        display: none;
    }

    .pcards3 {
        grid-template-columns: 1fr 1fr;
    }

    .fgrid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width:860px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .hbg {
        display: flex;
    }

    .about-wrap, .contact-wrap {
        grid-template-columns: 1fr;
    }

    .about-txt {
        padding: 36px 28px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stt:nth-child(2) {
        border-right: none;
    }

    .fan-stage {
        height: 320px;
    }

    .mbox {
        grid-template-columns: 1fr;
    }

    .mimg {
        min-height: 260px;
    }

    .mimg-slider {
        min-height: 220px;
    }
}

@media (max-width:640px) {
    .pgrid {
        grid-template-columns: 1fr;
    }

    .process-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pcards3 {
        grid-template-columns: 1fr;
    }

    .fgrid {
        grid-template-columns: 1fr;
    }

    .frow2 {
        grid-template-columns: 1fr;
    }

    .cform {
        padding: 24px 18px;
    }

    .slide h1 {
        font-size: 2.8rem;
    }

    .snum {
        display: none;
    }

    .fstamp {
        font-size: 2.5rem;
    }

    .fan-stage {
        height: 260px;
    }
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT MODAL — image slider & layout
   State driven by .hidden class, zero inline styles in HTML
   ═══════════════════════════════════════════════════════════ */

/* ── Utility: JS toggles this to show/hide elements ── */
.hidden { display: none !important; }

/* ── Left pane: image area ── */
.mimg {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #1a1510;
    overflow: hidden;
    min-height: 420px;
}

/* ── Slider pane: fills left column, flex-grows ── */
.mimg-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    background: #111;
}

/* ── Main image inside slider ── */
.mimg-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    inset: 0;
    transition: opacity .2s ease;
}

.mimg-main-img.fading {
    opacity: 0;
}

/* ── Bottom gradient overlay (over image, under UI) ── */
.mimg-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

/* ── Prev / Next arrows ── */
.mimg-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.25);
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, transform .2s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mimg-arrow:hover {
    background: var(--accent, #c0432a);
    border-color: var(--accent, #c0432a);
    transform: translateY(-50%) scale(1.08);
}

.mimg-prev { left: 12px; }
.mimg-next { right: 12px; }

/* ── Counter badge (top-right) ── */
.mimg-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
}

/* ── Dot indicators (bottom-centre, above gradient) ── */
.mimg-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 7px;
    align-items: center;
}

.mimg-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
}

.mimg-dot.active {
    background: var(--accent, #c0432a);
    transform: scale(1.4);
}

/* ── Thumbnail strip ── */
.mimg-thumbs {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    background: rgba(0,0,0,.65);
    overflow-x: auto;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: #c0432a #111;
}

.mimg-thumbs::-webkit-scrollbar      { height: 3px; }
.mimg-thumbs::-webkit-scrollbar-thumb { background: #c0432a; }

.mthumb {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: .55;
    transition: border-color .2s, opacity .2s;
}

.mthumb.active {
    border-color: #c0432a;
    opacity: 1;
}

.mthumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── No-image placeholder ── */
.mimg-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    opacity: .18;
    background: linear-gradient(145deg, #2a2218, #3d3025);
    min-height: 320px;
}

/* ── Right pane: scrollable content ── */
.mcont {
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 92vh;
}

.mcont .sec-eye { margin-bottom: 6px; }

.mcont h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3rem;
    line-height: .92;
    margin-bottom: 12px;
    color: var(--bg-dark);
}

/* ── Enquire button ── */
.menq {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .88rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
    transition: background .2s;
    border-radius: 2px;
    margin-top: auto;
}

.menq:hover { background: var(--accent-dark); }

/* ── Size table ── */
.msize-wrap {
    margin-bottom: 22px;
}

.msize-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #7a746e;
    margin-bottom: 8px;
}

.msize-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .78rem;
}

.msize-table thead tr {
    background: #161412;
    color: #f0ece4;
}

.msize-table thead th {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .62rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 9px;
    text-align: left;
    font-weight: 700;
    white-space: nowrap;
}

.msize-table tbody tr {
    border-bottom: 1px solid #e8e0d4;
    transition: background .15s;
}

.msize-table tbody tr:hover { background: #f5f0e8; }

.msize-table tbody td {
    padding: 7px 9px;
    color: #161412;
    white-space: nowrap;
}

.msize-table tbody td:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: .72rem;
    color: #c0432a;
    text-transform: uppercase;
}

.msize-table .dim-pair {
    color: #7a746e;
    font-size: .72rem;
}

/* ── Spec badges in modal ── */
.mspec-badges {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.mspec-badge-item {
    background: #e8e0d4;
    color: #161412;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .63rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 2px;
    font-weight: 700;
}

.mspec-badge-item.accent {
    background: #c0432a;
    color: #fff;
}

/* ── Rich HTML description ── */
.mdesc-rich {
    color: #7a746e;
    font-size: .87rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.mdesc-rich p              { margin-bottom: 10px; }
.mdesc-rich p:last-child   { margin-bottom: 0; }
.mdesc-rich strong         { color: #161412; font-weight: 600; }
.mdesc-rich em             { color: #c0432a; font-style: italic; }
.mdesc-rich ul             { padding-left: 18px; margin-bottom: 10px; }
.mdesc-rich li             { margin-bottom: 4px; }
.mdesc-rich h2,
.mdesc-rich h3,
.mdesc-rich h4             {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    color: #161412;
    margin-bottom: 6px;
    font-size: .95rem;
    text-transform: uppercase;
}

/* ─── Product card description ─── */
.pdesc {
    font-size: .78rem;
    color: #7a746e;
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─── Size chips on card ─── */
.psize-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.psize-chip {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 8px;
    border: 1px solid #c8b99a;
    color: #7a746e;
    border-radius: 2px;
    background: #f5f0e8;
}

/* ─── Image count badge on product card ─── */
.pimg-count {
    position: absolute;
    bottom: 9px;
    right: 9px;
    z-index: 3;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .6rem;
    letter-spacing: 1px;
    padding: 2px 7px;
    border-radius: 20px;
    backdrop-filter: blur(3px);
}

/* ─── Responsive: mobile modal stacks vertically ─── */
@media (max-width: 768px) {
    .mbox {
        grid-template-columns: 1fr;
        max-height: 96vh;
    }

    .mimg {
        min-height: 260px;
    }

    .mimg-slider {
        min-height: 220px;
    }

    .mcont {
        padding: 24px 20px 24px;
        max-height: none;
    }
}

/* ═══════════════════════════════════════════════════
   PROCESS SECTION — COMPLETE REDESIGN
   ═══════════════════════════════════════════════════ */

/* ── Section wrapper ── */
#howwemake {
    background: var(--bg-darkest);
    padding: 100px 0 0;
    overflow: hidden;
    position: relative;
}

#howwemake::before {
    content: 'PROCESS';
    position: absolute;
    top: 60px;
    right: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 10vw;
    color: rgba(255,255,255,.025);
    letter-spacing: 10px;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

/* ── Intro row ── */
.process-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding: 0 5% 60px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.process-intro-left {
    max-width: 580px;
}

.process-intro-text {
    color: var(--gray);
    font-size: .93rem;
    line-height: 1.85;
    margin-top: 14px;
    font-weight: 300;
}

.process-intro-right {
    flex-shrink: 0;
}

.process-stat-row {
    display: flex;
    align-items: center;
    gap: 32px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    padding: 24px 32px;
    border-top: 3px solid var(--accent);
}

.process-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ps-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    color: var(--accent);
    line-height: 1;
}

.ps-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
}

.process-stat-div {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.1);
}

/* ── Timeline ── */
.process-timeline {
    padding: 0 5%;
    position: relative;
}

.ptl-item {
    display: grid;
    grid-template-columns: 90px 1fr 120px;
    gap: 0;
    align-items: stretch;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: background .3s;
    cursor: default;
}

.ptl-item:hover {
    background: rgba(255,255,255,.02);
}

/* ── Number column ── */
.ptl-num-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 36px;
    gap: 0;
    position: relative;
}

.ptl-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,.18);
    letter-spacing: 2px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.ptl-item:hover .ptl-num {
    color: var(--white);
    background: rgba(192,67,42,.15);
    border-color: var(--accent);
}

.accent-num {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-color: var(--accent) !important;
}

.ptl-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, rgba(192,67,42,.4), rgba(192,67,42,.04));
    margin-top: 8px;
    min-height: 40px;
}

/* ── Content column ── */
.ptl-content {
    padding: 32px 32px 32px 40px;
    border-left: 1px solid rgba(255,255,255,.05);
    border-right: 1px solid rgba(255,255,255,.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ptl-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    opacity: .7;
}

.accent-tag {
    opacity: 1 !important;
}

.ptl-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--off);
    line-height: 1.2;
    transition: color .3s;
}

.ptl-item:hover .ptl-title {
    color: var(--white);
}

.ptl-desc {
    font-size: .84rem;
    color: var(--gray);
    line-height: 1.75;
    font-weight: 300;
    max-width: 620px;
}

.ptl-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    padding: 4px 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
    align-self: flex-start;
    transition: all .3s;
}

.ptl-item:hover .ptl-pill {
    border-color: rgba(192,67,42,.3);
    color: var(--concrete);
}

.accent-pill {
    background: rgba(192,67,42,.12) !important;
    border-color: rgba(192,67,42,.4) !important;
    color: var(--accent) !important;
}

/* ── Icon column ── */
.ptl-icon-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.ptl-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    border: 1.5px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: rgba(255,255,255,.15);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    flex-shrink: 0;
}

.ptl-item:hover .ptl-icon-wrap {
    background: rgba(192,67,42,.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(15deg) scale(1.08);
}

.accent-icon {
    background: rgba(192,67,42,.18) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

/* ── 3 Feature Cards ── */
.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
}

.pfc {
    padding: 40px 36px;
    background: rgba(255,255,255,.025);
    border-top: 1px solid rgba(255,255,255,.06);
    border-right: 1px solid rgba(255,255,255,.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.pfc:last-child {
    border-right: none;
}

.pfc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background .3s;
}

.pfc:hover::before {
    background: var(--accent);
}

.pfc:hover {
    background: rgba(255,255,255,.04);
}

.pfc-mid {
    background: rgba(192,67,42,.06) !important;
    border-color: rgba(192,67,42,.15) !important;
}

.pfc-mid::before {
    background: var(--accent) !important;
}

.pfc-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: .78rem;
    color: var(--accent);
    letter-spacing: 3px;
    opacity: .7;
}

.pfc-icon {
    font-size: 2.2rem;
    color: rgba(255,255,255,.2);
    line-height: 1;
    transition: color .3s;
}

.pfc:hover .pfc-icon,
.pfc-mid .pfc-icon {
    color: var(--accent);
}

.pfc-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--off);
}

.pfc-desc {
    font-size: .83rem;
    color: var(--gray);
    line-height: 1.75;
    font-weight: 300;
    flex: 1;
}

.pfc-foot {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.15);
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.06);
    align-self: flex-start;
    width: 100%;
}

/* ── Closing Quote ── */
.process-quote {
    padding: 70px 5%;
    background: rgba(0,0,0,.2);
    border-top: 1px solid rgba(255,255,255,.05);
}

.pq-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.pq-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 7rem;
    color: var(--accent);
    opacity: .18;
    line-height: .6;
    display: block;
    margin-bottom: -20px;
    font-style: italic;
}

.pq-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--concrete);
    line-height: 1.85;
    quotes: none;
}

.pq-rule {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 24px auto 16px;
}

.pq-attr {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .process-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-cards {
        grid-template-columns: 1fr;
    }

    .pfc {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .ptl-item {
        grid-template-columns: 70px 1fr 80px;
    }
}

@media (max-width: 768px) {
    .process-stat-row {
        gap: 20px;
        padding: 18px 20px;
    }

    .ptl-item {
        grid-template-columns: 56px 1fr;
    }

    .ptl-icon-col {
        display: none;
    }

    .ptl-content {
        padding: 24px 20px;
    }

    .pfc {
        padding: 28px 24px;
    }

    .pq-text {
        font-size: .98rem;
    }
}

@media (max-width: 480px) {
    .process-stat-row {
        flex-wrap: wrap;
        gap: 14px;
    }

    .process-stat-div {
        display: none;
    }

    .ptl-num-col {
        padding-top: 24px;
    }
}


/* ═══════════════════════════════════════════════════
   PROCESS SVG ICON FIXES
   ═══════════════════════════════════════════════════ */

.ptl-icon-wrap svg {
    width: 28px;
    height: 28px;
    display: block;
}

.pfc-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.ptl-pill-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.ptl-pill-icon svg {
    width: 13px;
    height: 13px;
    display: block;
}

/* ═══════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════════ */

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 13px 20px 13px 16px;
    border-radius: 50px;
    box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s, padding .3s;
    overflow: hidden;
    white-space: nowrap;
}

.wa-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 40px rgba(37, 211, 102, .55);
}

.wa-float:active {
    transform: translateY(0) scale(.98);
}

/* WhatsApp SVG icon */
.wa-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,.15));
}

.wa-label {
    position: relative;
    z-index: 1;
}

/* Ripple pulse rings */
.wa-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 2px solid rgba(37, 211, 102, .6);
    animation: wa-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

.wa-ripple-2 {
    animation-delay: 1.1s;
}

@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: .7; }
    70%  { transform: scale(1.18); opacity: 0; }
    100% { transform: scale(1.18); opacity: 0; }
}

/* On mobile: collapse to icon-only circle */
@media (max-width: 600px) {
    .wa-float {
        padding: 14px;
        border-radius: 50%;
        gap: 0;
        bottom: 20px;
        right: 20px;
    }

    .wa-label {
        display: none;
    }
}