:root {
    --ember: #e9682c;
    --ember-dark: #b94119;
    --amber: #ffb44b;
    --ink: #101512;
    --ink-soft: #18201b;
    --forest: #173325;
    --paper: #f4efe7;
    --paper-deep: #e8dfd2;
    --night: #101722;
    --white: #fffdf8;
    --muted-light: rgba(255, 253, 248, .68);
    --muted-dark: rgba(20, 28, 23, .68);
    --refresh-shadow: 0 26px 80px rgba(38, 27, 18, .13);
}

html {
    scroll-padding-top: 88px;
}

body {
    color: #19201b;
    background: #101512;
    letter-spacing: -.012em;
    opacity: 1 !important;
    transition: none !important;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .2;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 66px 66px;
    -webkit-mask-image: linear-gradient(#000, transparent 75%);
    mask-image: linear-gradient(#000, transparent 75%);
}

::selection {
    color: #fff;
    background: var(--ember);
}

:where(a, button):focus-visible {
    outline: 3px solid #ffcc83;
    outline-offset: 4px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--ember) #111713;
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #111713;
}

*::-webkit-scrollbar-thumb {
    border: 2px solid #111713;
    border-radius: 999px;
    background: var(--ember);
}

.site-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1500;
    height: 3px;
    pointer-events: none;
    background: rgba(255, 255, 255, .05);
}

.site-progress__bar {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--ember), var(--amber));
    box-shadow: 0 0 18px rgba(233, 104, 44, .45);
    will-change: transform;
}

.navbar {
    height: 78px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    background: rgba(14, 20, 16, .82);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    backdrop-filter: blur(18px) saturate(130%);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(14, 20, 16, .96);
    box-shadow: 0 16px 52px rgba(0, 0, 0, .25);
}

.nav-container {
    max-width: 1320px;
}

.nav-logo {
    gap: 12px;
}

.nav-logo::before,
.footer-logo::before {
    content: "IP";
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 180, 75, .5);
    border-radius: 12px;
    color: #111713;
    background: linear-gradient(145deg, #ffc56f, #e9682c);
    box-shadow: 0 8px 28px rgba(233, 104, 44, .2);
    font: 900 .78rem/1 'Montserrat', sans-serif;
    letter-spacing: -.04em;
}

.nav-logo > i,
.footer-logo > i {
    display: none;
}

.nav-logo h2 {
    color: #fffdf8;
    font-size: 1.06rem;
    letter-spacing: -.02em;
}

.nav-menu {
    gap: 4px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
}

.nav-link {
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 253, 248, .76);
    font-size: .88rem;
}

.nav-link::after {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(233, 104, 44, .13);
}

.hero {
    min-height: min(920px, 100svh);
    padding: 126px clamp(22px, 5vw, 74px) 76px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 76% 44%, rgba(233, 104, 44, .17), transparent 25rem),
        radial-gradient(circle at 14% 18%, rgba(255, 180, 75, .06), transparent 22rem),
        linear-gradient(118deg, #0f1511 0 55%, #17251c 100%);
    background-attachment: scroll;
}

.hero::before {
    inset: 0;
    background:
        linear-gradient(115deg, transparent 50%, rgba(255, 255, 255, .022) 50.1% 68%, transparent 68.1%),
        repeating-linear-gradient(90deg, transparent 0 95px, rgba(255, 255, 255, .025) 96px);
    opacity: 1;
    animation: none;
}

.hero::after {
    content: "IVKOVIĆ";
    position: absolute;
    right: -3vw;
    bottom: -3.5vw;
    color: transparent;
    font: 900 clamp(8rem, 21vw, 22rem)/.78 'Montserrat', sans-serif;
    letter-spacing: -.085em;
    -webkit-text-stroke: 1px rgba(255, 180, 75, .06);
    pointer-events: none;
}

.hero-overlay {
    background: linear-gradient(180deg, transparent 72%, #111713 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(54px, 8vw, 130px);
    width: min(100%, 1240px);
    max-width: 1240px;
    text-align: left;
}

.hero-content {
    max-width: 690px;
    margin: 0;
}

.hero-title {
    align-items: flex-start;
    margin-bottom: 26px;
    color: var(--white);
    font-size: clamp(3.45rem, 6.7vw, 7rem);
    line-height: .88;
    letter-spacing: -.07em;
    text-shadow: none;
}

.hero-emoji {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 180, 75, .35);
    border-radius: 14px;
    background: rgba(233, 104, 44, .09);
    font-size: 1.6rem;
    box-shadow: none;
    animation: none;
}

.highlight {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: currentColor;
    text-shadow: none;
}

.hero-subtitle-inline {
    margin-top: 18px;
    color: #ffc16b;
    font-size: clamp(1.05rem, 2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero-subtitle {
    max-width: 660px;
    margin-bottom: 30px;
    color: rgba(255, 253, 248, .67);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.75;
    text-shadow: none;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 610px;
    margin: 0 0 34px;
}

.hero-feature {
    justify-content: flex-start;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .085);
    border-radius: 10px;
    color: rgba(255, 253, 248, .82);
    background: rgba(255, 255, 255, .027);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.hero-feature:hover {
    border-color: rgba(233, 104, 44, .3);
    background: rgba(233, 104, 44, .07);
    transform: translateY(-2px);
}

.hero-feature i {
    color: var(--amber);
}

.hero-buttons {
    justify-content: flex-start;
}

.btn {
    min-height: 50px;
    padding: 14px 23px;
    border-radius: 10px;
    font-weight: 750;
}

.btn-primary {
    border: 1px solid #ef7b43;
    color: #fff;
    background: linear-gradient(135deg, #ef7b43, #d94f1f);
    box-shadow: 0 14px 36px rgba(217, 79, 31, .24);
}

.btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #f18b58, #e25b27);
    box-shadow: 0 18px 46px rgba(217, 79, 31, .31);
}

.btn-secondary {
    border: 1px solid rgba(255, 180, 75, .34);
    color: #ffc16b;
    background: rgba(255, 255, 255, .025);
}

.btn-secondary:hover {
    color: #fff;
    border-color: rgba(255, 180, 75, .65);
    background: rgba(255, 180, 75, .08);
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    width: min(38vw, 470px);
    aspect-ratio: 1;
    justify-self: center;
}

.hero-visual::before,
.hero-visual::after,
.hero-visual-orbit {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.hero-visual::before {
    inset: 3%;
    border: 1px solid rgba(255, 180, 75, .25);
    box-shadow: 0 0 0 34px rgba(233, 104, 44, .025), 0 0 0 68px rgba(233, 104, 44, .012);
}

.hero-visual::after {
    inset: 18%;
    border: 1px dashed rgba(255, 255, 255, .14);
    animation: refresh-spin 36s linear infinite;
}

.hero-visual-orbit {
    inset: 31%;
    border: 1px solid rgba(233, 104, 44, .35);
    background: radial-gradient(circle, rgba(233, 104, 44, .13), transparent 68%);
}

.hero-visual-mark {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 15px;
    width: 44%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 180, 75, .48);
    border-radius: 50%;
    color: #fff7e9;
    background: linear-gradient(145deg, rgba(35, 47, 39, .96), rgba(13, 18, 15, .96));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .4), inset 0 0 45px rgba(233, 104, 44, .06);
}

.hero-visual-mark i {
    color: var(--amber);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.hero-visual-mark span {
    font: 900 clamp(.7rem, 1.1vw, .95rem)/1 'Montserrat', sans-serif;
    letter-spacing: .14em;
}

.hero-route {
    position: absolute;
    z-index: 3;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    color: rgba(255, 253, 248, .72);
    background: rgba(12, 18, 14, .86);
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.hero-route--one { top: 9%; left: 18%; }
.hero-route--two { right: 3%; top: 46%; }
.hero-route--three { left: 8%; bottom: 12%; }

@keyframes refresh-spin {
    to { transform: rotate(1turn); }
}

.services,
.wood-types,
.transport,
.towing,
.why-us,
.contact {
    position: relative;
    isolation: isolate;
    padding: clamp(84px, 9vw, 132px) clamp(18px, 4vw, 58px);
    overflow: clip;
}

.services::before,
.wood-types::before,
.transport::before,
.towing::before,
.why-us::before,
.contact::before {
    content: attr(data-refresh-label);
    position: absolute;
    top: 24px;
    left: max(18px, calc((100vw - 1320px) / 2));
    z-index: -1;
    color: rgba(233, 104, 44, .07);
    font: 900 clamp(5rem, 12vw, 11rem)/1 'Montserrat', sans-serif;
    letter-spacing: -.08em;
    pointer-events: none;
}

.services::after,
.wood-types::after,
.transport::after,
.towing::after,
.why-us::after,
.contact::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -2;
    height: 180px;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, rgba(233, 104, 44, .04));
}

.services {
    color: #1a211c;
    background:
        radial-gradient(circle at 88% 8%, rgba(233, 104, 44, .08), transparent 27rem),
        linear-gradient(180deg, #f7f3ed, var(--paper));
}

.wood-types {
    color: var(--white);
    background:
        repeating-radial-gradient(ellipse at 12% 28%, transparent 0 42px, rgba(255, 180, 75, .018) 44px 45px),
        linear-gradient(135deg, #18130f, #23170f 55%, #15120f);
}

.transport {
    color: #18201a;
    background:
        linear-gradient(120deg, rgba(23, 51, 37, .055), transparent 38%),
        linear-gradient(180deg, #f0f3ed, #e6ece4);
}

.towing {
    color: var(--white);
    background:
        radial-gradient(circle at 84% 22%, rgba(233, 104, 44, .1), transparent 27rem),
        linear-gradient(145deg, #101722, #131b26 60%, #0d141d);
}

.why-us {
    color: #19201b;
    background: linear-gradient(180deg, #f5f0e9, #ece4d9);
}

.contact {
    color: var(--white);
    background:
        radial-gradient(circle at 12% 20%, rgba(233, 104, 44, .09), transparent 26rem),
        linear-gradient(145deg, #111914, #17231b 58%, #101611);
}

.container {
    width: min(100%, 1200px);
    max-width: 1200px;
}

.section-header {
    max-width: 760px;
    margin: 0 auto clamp(42px, 6vw, 72px);
}

.section-title {
    margin-bottom: 15px;
    color: currentColor;
    font-size: clamp(2.35rem, 5vw, 4.8rem);
    line-height: .98;
    letter-spacing: -.065em;
}

.section-title::after {
    width: 62px;
    height: 4px;
    margin-top: 20px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--ember), var(--amber));
}

.section-description {
    color: var(--muted-dark);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.wood-types .section-description,
.towing .section-description,
.contact .section-description {
    color: var(--muted-light);
}

.services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-card,
.wood-card,
.transport-feature,
.why-card,
.contact-card {
    opacity: 1 !important;
    transform: none !important;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease !important;
}

.service-card {
    min-height: 100%;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(24, 32, 26, .09);
    border-radius: 18px;
    background: rgba(255, 255, 255, .76);
    box-shadow: var(--refresh-shadow);
}

.service-card::before {
    height: 4px;
    background: linear-gradient(90deg, var(--ember), var(--amber));
}

.service-card:hover {
    border-color: rgba(233, 104, 44, .25);
    box-shadow: 0 30px 90px rgba(38, 27, 18, .18);
    transform: translateY(-5px) !important;
}

.service-card.featured {
    border-color: rgba(233, 104, 44, .32);
    transform: none !important;
}

.featured-badge {
    right: 20px;
    border-radius: 7px;
    background: var(--forest);
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(145deg, var(--ember), var(--ember-dark));
    box-shadow: 0 14px 36px rgba(185, 65, 25, .2);
}

.service-card h3,
.wood-card h3,
.transport-feature h3,
.why-card h3,
.contact-card h3 {
    letter-spacing: -.025em;
}

.service-card p,
.service-features li {
    color: var(--muted-dark);
}

.service-features i,
.wood-features i {
    color: var(--ember);
}

.wood-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.wood-card {
    position: relative;
    min-height: 100%;
    padding: clamp(28px, 4vw, 40px);
    overflow: hidden;
    border: 1px solid rgba(255, 180, 75, .16);
    border-radius: 18px;
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
        #1d1712;
    box-shadow: 0 26px 74px rgba(0, 0, 0, .28);
}

.wood-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    pointer-events: none;
    background: repeating-radial-gradient(ellipse at -12% 100%, transparent 0 38px, rgba(255, 180, 75, .09) 40px 41px);
}

.wood-card > * {
    position: relative;
    z-index: 1;
}

.wood-card:hover {
    border-color: rgba(255, 180, 75, .36);
    transform: translateY(-5px) !important;
}

.wood-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 180, 75, .23);
    border-radius: 50%;
    background: rgba(233, 104, 44, .08);
    font-size: 2rem;
}

.wood-rating {
    justify-content: center;
    width: fit-content;
    margin: 12px auto 20px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 180, 75, .22);
    border-radius: 7px;
    color: #ffc16b;
    background: rgba(255, 180, 75, .055);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.wood-description,
.wood-features li {
    color: rgba(255, 253, 248, .68);
}

.wood-info {
    margin-top: 30px;
}

.info-box {
    max-width: 920px;
    margin-inline: auto;
    padding: 26px 30px;
    border: 1px solid rgba(255, 180, 75, .18);
    border-radius: 16px;
    color: var(--white);
    background: rgba(255, 255, 255, .035);
}

.info-box > i {
    color: var(--amber);
}

.info-content p {
    color: var(--muted-light);
}

.transport-content {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
    align-items: start;
    gap: clamp(28px, 5vw, 58px);
}

.transport-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.transport-feature {
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(24, 32, 26, .09);
    border-radius: 15px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 0 15px 50px rgba(22, 35, 25, .07);
}

.transport-feature:hover {
    border-color: rgba(23, 51, 37, .24);
    transform: translateY(-4px) !important;
}

.feature-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    color: #fff;
    background: var(--forest);
}

.feature-content p {
    color: var(--muted-dark);
}

.transport-cta {
    position: sticky;
    top: 105px;
}

.cta-box {
    padding: clamp(28px, 4vw, 40px);
    border: 1px solid rgba(233, 104, 44, .18);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 180, 75, .11), transparent 15rem),
        var(--forest);
    box-shadow: 0 24px 76px rgba(18, 43, 28, .22);
}

.cta-box::before {
    display: none;
}

.cta-box h3 {
    color: #fff;
    font-size: clamp(1.6rem, 2.6vw, 2.25rem);
    letter-spacing: -.04em;
}

.cta-box p {
    color: rgba(255, 255, 255, .68);
}

.towing .transport-feature {
    border-color: rgba(255, 255, 255, .08);
    color: var(--white);
    background: rgba(255, 255, 255, .035);
    box-shadow: 0 18px 58px rgba(0, 0, 0, .2);
}

.towing .transport-feature:hover {
    border-color: rgba(233, 104, 44, .3);
}

.towing .feature-icon {
    background: linear-gradient(145deg, var(--ember), var(--ember-dark));
}

.towing .feature-content p {
    color: var(--muted-light);
}

.towing .cta-box {
    border-color: rgba(255, 180, 75, .19);
    background:
        radial-gradient(circle at 100% 0, rgba(233, 104, 44, .18), transparent 14rem),
        #18202a;
}

.why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    counter-reset: process;
}

.why-card {
    position: relative;
    min-height: 225px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(24, 32, 26, .09);
    border-radius: 16px;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 18px 55px rgba(38, 27, 18, .08);
}

.why-card:hover {
    border-color: rgba(233, 104, 44, .24);
    transform: translateY(-4px) !important;
}

.why-number {
    margin-bottom: 38px;
    color: var(--ember);
    font-size: .76rem;
    letter-spacing: .14em;
}

.why-number::after {
    content: "";
    display: inline-block;
    width: 52px;
    height: 1px;
    margin-left: 12px;
    vertical-align: middle;
    background: rgba(233, 104, 44, .3);
}

.why-card p {
    color: var(--muted-dark);
}

.contact-content {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
    gap: clamp(28px, 5vw, 60px);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.contact-card {
    min-height: 100%;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
}

.contact-card:hover {
    border-color: rgba(233, 104, 44, .27);
    transform: translateY(-4px) !important;
}

.contact-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, var(--ember), var(--ember-dark));
}

.contact-details h3 {
    color: #fff;
}

.contact-details p,
.contact-note {
    color: var(--muted-light);
}

.contact-link {
    color: #ffc16b;
}

.contact-cta-box {
    align-self: stretch;
    padding: clamp(30px, 5vw, 52px);
    border: 1px solid rgba(255, 180, 75, .18);
    border-radius: 20px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 180, 75, .12), transparent 18rem),
        rgba(8, 12, 9, .46);
    box-shadow: 0 28px 85px rgba(0, 0, 0, .28);
}

.contact-cta-box h3 {
    color: #fff;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    letter-spacing: -.05em;
}

.contact-cta-box > p {
    color: var(--muted-light);
}

.contact-cta-box .btn-secondary {
    color: #ffc16b;
}

.cta-note {
    border-color: rgba(255, 180, 75, .14);
    background: rgba(255, 180, 75, .045);
}

.footer {
    position: relative;
    padding: clamp(72px, 9vw, 116px) 24px 30px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .065);
    background:
        radial-gradient(circle at 10% 10%, rgba(233, 104, 44, .08), transparent 25rem),
        #0b100d;
}

.footer::before {
    content: "IVKOVIĆ PREVOZ";
    position: absolute;
    right: -2vw;
    bottom: 20px;
    color: rgba(255, 255, 255, .018);
    font: 900 clamp(5rem, 13vw, 13rem)/.8 'Montserrat', sans-serif;
    letter-spacing: -.08em;
    white-space: nowrap;
    pointer-events: none;
}

.footer-content,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-content {
    gap: clamp(28px, 4vw, 52px);
}

.footer-logo {
    gap: 12px;
}

.footer h3,
.footer h4 {
    color: #fff;
}

.footer-links a,
.footer-contact a,
.footer-column p {
    color: rgba(255, 253, 248, .62);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--amber);
}

.footer-keywords {
    opacity: .34;
}

.scroll-top {
    right: 22px;
    bottom: 92px;
    border: 1px solid rgba(255, 180, 75, .35);
    border-radius: 11px;
    color: #fff;
    background: rgba(17, 24, 20, .9);
    box-shadow: 0 14px 42px rgba(0, 0, 0, .28);
}

.scroll-top:hover {
    background: var(--ember);
}

.journey-rail {
    position: fixed;
    top: 50%;
    right: 20px;
    z-index: 850;
    display: grid;
    gap: 13px;
    transform: translateY(-50%);
}

.journey-rail__item {
    position: relative;
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(255, 180, 75, .52);
    border-radius: 50%;
    background: #111713;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.journey-rail__item::before {
    content: attr(aria-label);
    position: absolute;
    top: 50%;
    right: 18px;
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    color: rgba(255, 255, 255, .8);
    background: rgba(14, 20, 16, .92);
    font: 750 .62rem/1 'Inter', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    transform: translate(6px, -50%);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.journey-rail__item:hover::before,
.journey-rail__item:focus-visible::before {
    opacity: 1;
    transform: translate(0, -50%);
}

.journey-rail__item.is-active {
    background: var(--ember);
    box-shadow: 0 0 0 5px rgba(233, 104, 44, .11), 0 0 20px rgba(233, 104, 44, .34);
    transform: scale(1.25);
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 998;
    border: 0;
    background: rgba(5, 8, 6, .68);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.menu-open #floating-cta {
    opacity: 0;
    pointer-events: none;
    transform: scale(.82);
}

.refresh-in-view {
    animation: refresh-rise .65s cubic-bezier(.2, .72, .2, 1) both;
}

@keyframes refresh-rise {
    from { opacity: .78; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
    .nav-link {
        padding-inline: 10px;
        font-size: .8rem;
    }

    .journey-rail {
        display: none;
    }
}

@media (max-width: 900px) {
    .navbar,
    .navbar.scrolled {
        height: 70px;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 46px;
        height: 46px;
        border: 1px solid rgba(255, 180, 75, .28);
        border-radius: 11px;
        background: rgba(233, 104, 44, .07);
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: #ffc16b;
    }

    .nav-menu {
        position: fixed;
        inset: 70px 0 auto;
        z-index: 999;
        display: grid;
        align-content: start;
        justify-content: stretch;
        gap: 5px;
        width: 100%;
        max-height: calc(100svh - 70px);
        padding: 22px;
        overflow-y: auto;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, .07);
        border-radius: 0 0 18px 18px;
        background:
            radial-gradient(circle at 100% 0, rgba(233, 104, 44, .12), transparent 18rem),
            #121914;
        box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }

    .nav-item,
    .nav-link {
        width: 100%;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-link {
        justify-content: flex-start;
        min-height: 52px;
        padding: 13px 16px;
        border: 1px solid transparent;
        border-radius: 10px;
        font-size: .98rem;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-link.active {
        border-color: rgba(255, 180, 75, .16);
        background: rgba(233, 104, 44, .08);
    }

    .hero {
        min-height: auto;
        padding: 116px 20px 82px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        margin-inline: auto;
    }

    .hero-title {
        align-items: center;
    }

    .hero-subtitle {
        margin-inline: auto;
    }

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

    .hero-visual {
        width: min(78vw, 390px);
    }

    .transport-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .transport-cta {
        position: static;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding-inline: 15px;
    }

    .nav-logo::before {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .nav-logo h2 {
        font-size: .96rem;
    }

    .hero {
        padding: 108px 16px 72px;
    }

    .hero::after {
        bottom: 0;
        font-size: 7.2rem;
    }

    .hero-title {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    .hero-emoji {
        width: 46px;
        height: 46px;
        margin-bottom: 22px;
    }

    .hero-subtitle-inline {
        margin-top: 14px;
        font-size: .92rem;
    }

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

    .hero-buttons,
    .hero-buttons .btn {
        width: 100%;
    }

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

    .hero-visual {
        width: min(88vw, 340px);
    }

    .services,
    .wood-types,
    .transport,
    .towing,
    .why-us,
    .contact {
        padding: 76px 16px;
    }

    .services::before,
    .wood-types::before,
    .transport::before,
    .towing::before,
    .why-us::before,
    .contact::before {
        top: 18px;
        left: 12px;
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 2.45rem;
    }

    .services-grid,
    .wood-grid,
    .transport-features,
    .why-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .service-card,
    .wood-card,
    .why-card,
    .contact-card,
    .transport-feature {
        padding: 24px;
    }

    .why-card {
        min-height: auto;
    }

    .contact-cta-box {
        padding: 30px 22px;
    }

    .cta-buttons,
    .cta-buttons .btn {
        width: 100%;
    }

    .cta-buttons .btn {
        justify-content: center;
    }

    .footer {
        padding-inline: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

@media (prefers-contrast: more) {
    .service-card,
    .wood-card,
    .transport-feature,
    .why-card,
    .contact-card {
        border-color: currentColor;
    }
}
