/* ==========================================================================
   Preet Machinery Company — Site Stylesheet
   Design system unchanged from original build. Bootstrap 5 is loaded
   separately (see meta-tags.php) as a utility layer only — it is not
   used for grid/layout here, so it will not conflict with these rules.
   ========================================================================== */

:root {
    --amber: #c27514;
    --amber-light: #e8a33d;
    --charcoal: #201c18;
    --charcoal-soft: #332c25;
    --paper: #f7f3ec;
    --paper-line: #e4dccb;
    --steel: #6b6459;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Headings use Oswald */
h1, h2, h3, h4, h5, h6,
.accordion-header button,
.accordion-button,
.faq-item summary,
.faq-question {
    font-family: 'Oswald', sans-serif;
}

/* Everything else uses Inter */
body, p, span, div, a, li, .btn, .nav-link, .badge, .card,
.accordion-body, .form-control, .table, .lead, .small,
.text-muted, .eyebrow, .tagline, .figure-caption, .cat-spec,
.stat .lbl, .machine-cat-pill, .breadcrumb, .footer, .navbar,
.dropdown, .modal, .tooltip, .popover,
.accordion .accordion-item .accordion-header .accordion-button,
.faq .faq-item summary {
    font-family: 'Inter', sans-serif !important;
}


.mono {
    font-family: 'JetBrains Mono', monospace;
}

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

ul {
    list-style: none;
}

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

.wrap {
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--amber);
    display: inline-block;
}

:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
}

/* ===== Breadcrumb ===== */
.breadcrumb-bar {
    background: var(--paper);
    border-bottom: 1px solid var(--paper-line);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    padding-top:12px!important;
    padding-bottom:0!important;
}

.breadcrumb-bar .wrap {
    padding-bottom:0!important;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding-bottom:0!important;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--steel);
}

.breadcrumb-list a {
    color: var(--steel);
    transition: color .2s;
}

.breadcrumb-list a:hover {
    color: var(--amber);
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--charcoal);
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    color: var(--paper-line);
    margin-left: 6px;
}

/* ===== Top bar ===== */
.topbar {
    background: var(--charcoal);
    color: #cfc7ba;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    border-bottom: 4px solid var(--amber);
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 32px;
    flex-wrap: wrap;
    gap: 6px 24px;
}

.topbar a {
    color: #cfc7ba;
    transition: color .2s;
}

.topbar a:hover {
    color: var(--amber-light);
}

.topbar .contacts {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding: 5px 0;
}

.topbar .social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar .social a {
    display: flex;
    width: 16px;
    height: 16px;
}

.topbar .social svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ===== Header / nav ===== */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 243, 236, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--paper-line);
}

nav.wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-mark span {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--charcoal);
}

.logo-text {
    line-height: 1.25;
}

.logo-text .name {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.03em;
}

.logo-text .sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    color: var(--steel);
}

.navlinks {
    display: flex;
    gap: 50px;
    font-size: 14.5px;
    font-weight: 500;
}

.navlinks a {
    position: relative;
    padding: 4px 0;
}

.navlinks a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width .25s;
}

.navlinks a:hover::after {
    width: 100%;
}

.navlinks a.active::after {
    width: 100%;
}

.nav-cta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    letter-spacing: 0.06em;
    border: 1.5px solid var(--charcoal);
    padding: 10px 20px;
    transition: all .2s;
}

.nav-cta:hover {
    background: var(--charcoal);
    color: var(--paper);
}

.navtoggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navtoggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    transition: transform .25s ease, opacity .2s ease;
}

.navtoggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navtoggle.open span:nth-child(2) {
    opacity: 0;
}

.navtoggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mega menu ===== */
.has-mega {
    position: relative;
}

.mega-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
    cursor: pointer;
    padding: 4px 0;
}

.mega-trigger .chev {
    width: 9px;
    height: 9px;
    border-right: 1.4px solid currentColor;
    border-bottom: 1.4px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s;
    margin-top: -3px;
}

.has-mega:hover .mega-trigger .chev,
.has-mega:focus-within .mega-trigger .chev {
    transform: rotate(225deg);
    margin-top: 3px;
}

.mega-panel {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: min(880px, 86vw);
    background: var(--white);
    border: 1px solid var(--paper-line);
    box-shadow: 0 24px 48px rgba(32, 28, 24, 0.14);
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 60;
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 40px;
    row-gap: 20px;
}

.mega-item {
    display: block;
}

.mega-thumb {
    /*background: var(--charcoal);*/
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.mega-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(226, 203, 166, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(226, 203, 166, 0.09) 1px, transparent 1px);
    background-size: 12px 12px;
}

.mega-thumb svg {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 60%;
    height: 60%;
    stroke: #e2cba6;
    transition: stroke .2s, transform .3s;
}

.mega-item:hover .mega-thumb svg {
    stroke: var(--amber-light);
    transform: scale(1.08);
}

.mega-thumb .tag {
    position: absolute;
    bottom: 8px;
    left: 9px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    color: var(--amber-light);
    z-index: 1;
}

.mega-item h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 13.5px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 5px;
    line-height: 1.25;
}

.mega-item p {
    font-size: 12px;
    color: var(--steel);
    line-height: 1.4;
}

.mega-item:hover h5 {
    color: var(--amber);
}

.mega-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--paper-line);
}

.mega-footer span {
    font-size: 12.5px;
    color: var(--steel);
}

.mega-footer a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    border-bottom: 1px solid var(--amber);
    padding-bottom: 2px;
}

.mega-footer a:hover {
    color: var(--amber);
}

@media (max-width: 980px) {
    .mega-panel {
        display: none;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 40px 0;
    border-bottom: 1px solid var(--paper-line);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.4fr;
    gap: 0;
    align-items: center;
}

.hero h1 {
    font-size: 32px;
    line-height: 1.05;
    margin: 20px 0 22px;
    letter-spacing: 0.005em;
}

.hero h1 em {
    font-style: normal;
    color: var(--amber);
}

.hero p.lede {
    font-size: 17px;
    color: var(--steel);
    max-width: 480px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 15px 26px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--charcoal);
    transition: all .2s;
}

.btn-solid {
    background: var(--charcoal);
    color: var(--paper);
}

.btn-solid:hover {
    background: var(--amber);
    border-color: var(--amber);
    transform: translateY(-2px);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--paper);
    transform: translateY(-2px);
}

.hero-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-meta div {
    border-left: 1px solid var(--amber);
    padding-left: 10px;
}

.hero-meta .num {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
}

.hero-meta .lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--steel);
    text-transform: uppercase;
}

/* Blueprint hero illustration */
.blueprint {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blueprint::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(226, 203, 166, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 203, 166, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}

.blueprint-frame {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(226, 203, 166, 0.35);
}

.blueprint-tag {
    position: absolute;
    bottom: 26px;
    left: 26px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--amber-light);
    font-size: 11px;
    letter-spacing: 0.1em;
}

.blueprint-tag .l2 {
    color: #8b8378;
    margin-top: 3px;
}

.blueprint svg {
    width: 78%;
    height: auto;
    position: relative;
    z-index: 1;
}

.blueprint img {
    max-width: 420px;
    margin: 0 auto;
}

.draw-line {
    stroke-dasharray: 1400;
    stroke-dashoffset: 1400;
    animation: draw 2.6s ease forwards;
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .draw-line {
        animation: none;
        stroke-dashoffset: 0;
    }
}

/* ===== Section shared ===== */
section {
    padding: 84px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-head h2 {
    font-size: 34px;
    max-width: 560px;
}

.section-head p {
    color: var(--steel);
    max-width: 420px;
    font-size: 15px;
}

/* ===== Categories ===== */
.categories {
    background: var(--white);
    border-top: 1px solid var(--paper-line);
    border-bottom: 1px solid var(--paper-line);
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--paper-line);
}

.cat-card {
    border-right: 1px solid var(--paper-line);
    padding: 34px 24px;
    position: relative;
    transition: background .25s, transform .25s, box-shadow .25s;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.cat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    transition: background .25s;
}

.cat-card:hover::before {
    background: var(--amber);
}

.cat-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -9px;
    top: 96px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 1px solid var(--paper-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--steel);
    z-index: 3;
}

.cat-card:last-child {
    border-right: none;
}

.cat-card:hover {
    background: var(--paper);
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(32, 28, 24, 0.08);
    z-index: 2;
}

.cat-index {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    margin-bottom: 22px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.cat-index .n {
    color: var(--amber);
    font-weight: 500;
}

.cat-index .of {
    color: var(--steel);
}

.cat-icon-frame {
    width: 64px;
    height: 64px;
    border: 1px solid var(--paper-line);
    background: var(--paper);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.cat-icon-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--paper-line) 1px, transparent 1px), linear-gradient(90deg, var(--paper-line) 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: .6;
}

.cat-icon-frame::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid var(--amber);
    border-left: 1.5px solid var(--amber);
}

.cat-icon-frame img {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.cat-card:hover .cat-icon-frame {
    border-color: var(--amber);
}

.cat-card h3 {
    font-size: 16.5px;
    line-height: 1.28;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.cat-spec {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--amber);
    margin-bottom: 12px;
}

.cat-card p {
    font-size: 13px;
    color: var(--steel);
    margin-bottom: auto;
    padding-bottom: 18px;
}

.cat-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--paper-line);
}

.cat-card:hover .cat-link {
    color: var(--amber);
}

.cat-link .arrow {
    transition: transform .2s;
}

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

/* ===== Why us ===== */
.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.why-list {
    display: flex;
    flex-direction: column;
}

.why-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--paper-line);
    transition: padding-left .25s;
}

.why-item:hover {
    padding-left: 6px;
}

.why-item:first-child {
    padding-top: 0;
}

.why-icon {
    width: 40px;
    height: 40px;
    color: var(--amber);
}

.why-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.why-item p {
    font-size: 14px;
    color: var(--steel);
}

.specimg {
    background: var(--charcoal);
    padding: 0;
    position: relative;
    /*aspect-ratio: 4/5;*/
}

.specimg::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background-image: linear-gradient(rgba(226, 203, 166, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(226, 203, 166, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;*/
}

.specimg svg {
    position: relative;
    z-index: 1;
    width: 100%;
}

.spec-readout {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    color: #cfc7ba;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.spec-readout div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(226, 203, 166, 0.25);
    padding-bottom: 6px;
}

.spec-readout span:last-child {
    color: var(--amber-light);
}

/* ===== Stats strip ===== */
.stats {
    background: var(--charcoal);
    color: var(--paper);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 44px 32px;
    border-right: 1px solid rgba(226, 203, 166, 0.15);
}

.stat:last-child {
    border-right: none;
}

.stat .num {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--amber-light);
}

.stat .lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a89f90;
    margin-top: 8px;
}

/* ===== FAQ ===== */
.faq {
 /*   background: var(--white);*/
    border-top: 1px solid var(--paper-line);
}

.faq-list {
    max-width: 820px;
}

.faq-item {
    border-bottom: 1px solid var(--paper-line);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 15.5px;
    letter-spacing: 0.01em;
    color: var(--charcoal);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    color: var(--amber);
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 0 24px;
    color: var(--steel);
    font-size: 14.5px;
    max-width: 680px;
}

/* ===== Related products strip ===== */
.related {
    background: var(--paper);
    border-top: 1px solid var(--paper-line);
}

.related-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.related-list a {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    letter-spacing: 0.03em;
    border: 1px solid var(--paper-line);
    background: var(--white);
    padding: 16px;
    display: block;
    transition: border-color .2s, color .2s;
}

.related-list a:hover {
    border-color: var(--amber);
    color: var(--amber);
}

/* ===== CTA / contact strip ===== */
.cta {
    background: var(--amber);
}

.cta .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.cta h2 {
    color: var(--charcoal);
    font-size: 30px;
    max-width: 520px;
}

.cta .btn {
    border-color: var(--charcoal);
}

.cta .btn-solid {
    background: var(--charcoal);
    color: var(--paper);
}

.cta .btn-solid:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--charcoal);
}

/* ===== Footer ===== */
footer {
    background: var(--charcoal);
    color: #cfc7ba;
    padding: 64px 0 26px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(226, 203, 166, 0.15);
}

.foot-grid h4 {
    color: var(--paper);
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.foot-grid ul li {
    margin-bottom: 11px;
    font-size: 13.5px;
}

.foot-grid ul li a {
    color: #a89f90;
    transition: color .2s;
}

.foot-grid ul li a:hover {
    color: var(--amber-light);
}

.foot-about p {
    font-size: 13.5px;
    color: #a89f90;
    max-width: 300px;
    margin-top: 14px;
}

.foot-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.foot-social a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(226, 203, 166, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
}

.foot-social a:hover {
    border-color: var(--amber);
    background: rgba(194, 117, 20, 0.12);
}

.foot-social svg {
    width: 16px;
    height: 16px;
    fill: #cfc7ba;
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    font-size: 12.5px;
    color: #8b8378;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .blueprint {
        order: -1;
        aspect-ratio: 16/10;
    }

    .navtoggle {
        display: flex;
    }

    .navlinks {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--paper-line);
        box-shadow: 0 20px 30px rgba(32, 28, 24, 0.1);
        flex-direction: column;
        gap: 0;
        z-index: 70;
    }

    .navlinks.open {
        display: flex;
    }

    .navlinks a,
    .navlinks .mega-trigger {
        width: 100%;
        padding: 16px 32px;
        border-bottom: 1px solid var(--paper-line);
        justify-content: space-between;
    }

    .has-mega {
        width: 100%;
    }

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

    .cat-card {
        border-bottom: 1px solid var(--paper-line);
    }

    .cat-card::after {
        display: none;
    }

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

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

    .stat {
        border-bottom: 1px solid rgba(226, 203, 166, 0.15);
    }

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

    .hero h1 {
        font-size: 38px;
    }

    .related-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .topbar .contacts {
        flex-direction: column;
        gap: 6px;
    }

    .hero {
        padding: 28px 0;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p.lede {
        font-size: 15.5px;
    }

    .hero-meta {
        gap: 18px;
    }

    .hero-meta div {
        padding-left: 8px;
    }

    section {
        padding: 56px 0;
    }

    .section-head h2 {
        font-size: 26px;
    }

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

    .cat-card {
        border-right: none;
        min-height: 0;
    }

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

    .stat {
        border-right: none;
        padding: 28px 24px;
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cta .wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cta h2 {
        font-size: 24px;
    }

    .why-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .related-list {
        grid-template-columns: 1fr;
    }
}


/* Shared enquiry-shell styling (same pattern as about-us.php — keep both in sync,
   or better: move .enquiry / .enquiry-shell / .enquiry-form rules into your
   global stylesheet so they aren't duplicated per page). */
.enquiry {
    background: var(--paper);
    border-top: 1px solid var(--paper-line);
    padding: 80px 0 90px;
}

.enquiry-shell {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    background: var(--white);
    border: 1px solid var(--paper-line);
    border-radius: 8px;
    overflow: hidden;
}

.enquiry-intro {
    background: var(--charcoal);
    color: var(--paper);
    padding: 44px 38px;
}

.enquiry-intro .eyebrow {
    color: var(--amber-light);
}

.enquiry-intro h2 {
    font-size: 24px;
    margin: 14px 0 14px;
    color: var(--white);
}

.enquiry-intro p {
    color: #cfc7b8;
    font-size: 14px;
    line-height: 1.7;
}

.enquiry-intro .contact-line {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(247, 243, 236, .15);
    font-size: 14px;
}

.enquiry-intro .contact-line a {
    color: var(--amber-light);
    text-decoration: none;
}

.enquiry-form {
    padding: 44px 38px;
}

.enquiry-form table {
    width: 100%;
    border-collapse: collapse;
}

.enquiry-form td {
    padding: 0 0 18px;
    vertical-align: top;
}

.enquiry-form label {
    display: block;
    font-size: 12px;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 7px;
}

.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
    width: 100%;
    padding: 11px 13px;
    font-size: 14px;
    font-family: inherit;
    color: var(--charcoal);
    background: var(--paper);
    border: 1px solid var(--paper-line);
    border-radius: 4px;
}

.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
    outline: none;
    border-color: var(--amber);
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 90px;
}

.enquiry-form .row-2 {
    display: flex;
    gap: 20px;
}

.enquiry-form .row-2 > div {
    flex: 1;
}

.enquiry-form button {
    width: 100%;
    padding: 14px;
    background: var(--amber);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    cursor: pointer;
    transition: background .15s ease;
}

.enquiry-form button:hover {
    background: var(--amber-light);
}

@media (max-width: 860px) {
    .enquiry-shell {
        grid-template-columns: 1fr;
    }

    .enquiry-form .row-2 {
        flex-direction: column;
    }
}


/* ---- Product/category page additions ---- */

.breadcrumb {
    padding: 18px 0;
    border-bottom: 1px solid var(--paper-line);
    font-size: 13px;
    color: var(--steel);
}

.breadcrumb a {
    color: var(--steel);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--amber);
}

.breadcrumb .sep {
    margin: 0 8px;
    color: var(--paper-line);
}

.breadcrumb .current {
    color: var(--charcoal);
    font-weight: 600;
}

.machine-header {
    padding: 44px 0 10px;
}

.machine-cat-pill {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--amber);
    border: 1px solid var(--amber);
    border-radius: 3px;
    padding: 4px 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.machine-header h1 {
    font-size: clamp(26px, 3.4vw, 38px);
    color: var(--charcoal);
    margin-bottom: 14px;
    max-width: 22ch;
}

.machine-header .tagline {
    color: var(--steel);
    font-size: 16px;
    max-width: 60ch;
    line-height: 1.6;
}

.action-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 28px 0 10px;
    padding: 20px 0;
    border-top: 1px solid var(--paper-line);
    border-bottom: 1px solid var(--paper-line);
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--amber);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--amber-light);
}

.btn-ghost {
    border-color: var(--paper-line);
    color: var(--charcoal);
    background: var(--white);
}

.btn-ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.machine-body {
    padding: 56px 0 10px;
}

.machine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 6px;
    object-fit: cover;
    /*border: 1px solid var(--paper-line);*/
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.gallery-thumbs img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 4px;
    /*border: 1px solid var(--paper-line);*/
    cursor: pointer;
}

.machine-desc p {
    color: var(--charcoal-soft);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Signature element: instrument-panel style spec readout */
#specifications {
    scroll-margin-top: 24px;
}

.spec-readout {
    background: var(--charcoal);
    border-radius: 8px;
    padding: 8px;
    margin-top: 8px;
}

.spec-readout-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px 10px;
    color: #9d9587;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.spec-readout-head .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber-light);
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--amber-light);
}

.spec-readout table {
    width: 100%;
    border-collapse: collapse;
}

.spec-readout td {
    padding: 14px 18px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 13px;
    border-top: 1px solid rgba(247, 243, 236, .08);
}

.spec-readout tr:first-child td {
    border-top: none;
}

.spec-readout td:first-child {
    color: #a39a8a;
    letter-spacing: .04em;
}

.spec-readout td:last-child {
    color: var(--amber-light);
    text-align: right;
    font-weight: 600;
}

.related {
    padding: 64px 0;
}

.related-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.related-list a {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--paper-line);
    border-radius: 20px;
    color: var(--charcoal-soft);
    text-decoration: none;
    font-size: 14px;
    transition: border-color .15s ease, color .15s ease;
}

.related-list a:hover {
    border-color: var(--amber);
    color: var(--amber);
}

@media (max-width: 860px) {
    .machine-grid {
        grid-template-columns: 1fr;
    }

    .action-bar {
        flex-direction: column;
    }

    .action-bar .btn {
        justify-content: center;
        width: 100%;
    }
}
/* ========================================= */
.btn-amber{
    background: var(--amber);
    color: #fff;
    border: 2px solid var(--amber);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all .3s ease;
}

.btn-amber:hover{
    background: var(--charcoal-soft);
    border-color: var(--charcoal-soft);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
/* ========================================= */

.figure-caption2{
    font-size:12px;
    text-align:center;
}
/* ========================================= */
.btn-light{
    background: #f5efe4 !important;
    color: var(--charcoal);
    border: 1.5px solid #d4c8b0;
    padding: 8px 22px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    transition: all .3s ease;
}

.btn-light:hover{
    background: #e8dcc8;
    border-color: #e8a33d;
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 163, 61, 0.3);
}
/* ========================================= */
/* ==============================
CUSTOM ACCORDION_P THEME
============================== */

.accordion_p{
    --bs-accordion-color: var(--charcoal);
    --bs-accordion-bg: var(--white);

    --bs-accordion-border-color: var(--paper-line);
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 8px;
    --bs-accordion-inner-border-radius: 7px;

    --bs-accordion-btn-padding-x: 1.25rem;
    --bs-accordion-btn-padding-y: 1rem;

    --bs-accordion-btn-color: var(--charcoal);
    --bs-accordion-btn-bg: var(--paper);

    --bs-accordion-btn-icon-width: 1.1rem;
    --bs-accordion-btn-icon-transform: rotate(-180deg);
    --bs-accordion-btn-icon-transition: transform .3s ease;

    --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23c27514' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");

    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");

    --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(194,117,20,.25);

    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;

    --bs-accordion-active-color: var(--white);
    --bs-accordion-active-bg: var(--amber);
}

.accordion_p .accordion-item{
    border:1px solid var(--paper-line);
    border-radius:8px !important;
    overflow:hidden;
    margin-bottom:15px;
    background:var(--white);
    box-shadow:0 4px 12px rgba(0,0,0,.05);
    transition:all .3s ease;
}

.accordion_p .accordion-item:hover{
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.accordion_p .accordion-button{
    position:relative;
    display:flex;
    align-items:center;
    width:100%;
    padding:1rem 1.25rem;
    font-size:1rem;
    font-weight:600;
    color:var(--charcoal);
    background:var(--paper);
    border:0;
    transition:all .3s ease;
}

.accordion_p .accordion-button:hover{
    background:var(--amber-light);
    color:var(--charcoal);
}

.accordion_p .accordion-button:not(.collapsed){
    background:var(--amber);
    color:var(--white);
    box-shadow:none;
}

.accordion_p .accordion-button:focus{
    box-shadow:0 0 0 .2rem rgba(194,117,20,.25);
    border:none;
}

.accordion_p .accordion-button::after{
    transition:transform .3s ease;
}

.accordion_p .accordion-body{
    background:var(--white);
    color:var(--steel);
    font-size:15px;
    line-height:1.8;
    padding:1.25rem;
}

.accordion_p .accordion-body p:last-child{
    margin-bottom:0;
}
/* ========================================= */
/* ===== TABLE STYLES ===== */
.table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--paper-line);
    background: var(--white);
}

/* Table Header */
.table thead {
    background: var(--amber);
    color: var(--white);
}

.table thead th {
    padding: 14px 16px;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-bottom: none;
    border-color: var(--amber);
    text-transform: uppercase;
}

/* Table Body */
.table tbody td {
    padding: 12px 16px;
    border-color: var(--paper-line);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
}

.table tbody tr {
    background: var(--white);
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: #f5efe4;
}

/* First column styling (Size) */
.table tbody td:first-child {
    font-weight: 600;
    color: var(--amber);
}

/* Border radius for corners */
.table thead th:first-child {
    border-top-left-radius: 8px;
}

.table thead th:last-child {
    border-top-right-radius: 8px;
}

.table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}
/* ===== TABLE STYLES ===== */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--charcoal);
    border-collapse: collapse;
}

.table thead th {
    background: var(--amber);
    color: var(--white);
    padding: 14px 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid var(--amber);
}

.table tbody td {
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border: 1px solid var(--paper-line);
    background: var(--white);
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: #f5efe4 !important;
}

.table tbody td:first-child {
    font-weight: 700;
    color: var(--amber);
}

/* Zebra stripes - optional */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #faf8f5;
}

/* Remove extra border-radius issues */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .table thead th,
    .table tbody td {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}
/* ========================================= */
/* ===== STATS SECTION ===== */
.stats .stat-item .lbl {
    color: #333333 !important;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

.stats .stat-item .num {
    color: var(--amber);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}
/* ========================================= */

/* ===== MOBILE MENU ===== */
@media (max-width: 991.98px) {
    .navlinks {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
        flex-direction: column;
        gap: 5px;
    }

    .navlinks.active {
        display: flex !important;
    }

    .navlinks a {
        padding: 10px 15px;
        border-bottom: 1px solid var(--paper-line);
        color: var(--charcoal);
    }

    .navlinks a:last-child {
        border-bottom: none;
    }

    .navtoggle {
        display: block !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        order: 3;
    }

    .navtoggle span {
        display: block;
        width: 25px;
        height: 2.5px;
        background: var(--charcoal);
        margin: 5px 0;
        transition: 0.3s ease;
        border-radius: 2px;
    }

    .navtoggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navtoggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .navtoggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-cta {
        display: none !important;
    }

    /* Mega menu mobile */
    .has-mega {
        position: relative;
        width: 100%;
    }

    .has-mega .mega-trigger {
        width: 100%;
        text-align: left;
        padding: 10px 15px;
        background: none;
        border: none;
        border-bottom: 1px solid var(--paper-line);
        color: var(--charcoal);
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .has-mega .mega-trigger .chev {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .has-mega .mega-trigger[aria-expanded="true"] .chev {
        transform: rotate(180deg);
    }

    .has-mega .mega-panel {
        display: none;
        position: static !important;
        box-shadow: none !important;
        padding: 0 15px !important;
        margin: 0 !important;
        width: 100% !important;
        background: #f8f6f2 !important;
        border-radius: 8px !important;
    }

    .has-mega .mega-panel.open {
        display: block !important;
    }

    .has-mega .mega-grid {
        grid-template-columns: 1fr !important;
        gap: 5px !important;
        padding: 10px 0 !important;
    }

    .has-mega .mega-item {
        padding: 8px 12px !important;
        border-bottom: 1px solid var(--paper-line);
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .has-mega .mega-item:last-child {
        border-bottom: none;
    }

    .has-mega .mega-thumb {
        width: 30px !important;
        height: 30px !important;
        flex-shrink: 0;
    }

    .has-mega .mega-thumb img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .has-mega .mega-item h5 {
        font-size: 0.85rem !important;
        margin: 0 !important;
    }

    .has-mega .mega-item p {
        display: none !important;
    }

    .has-mega .mega-footer {
        padding: 10px 0 !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .has-mega .mega-footer span {
        font-size: 0.8rem !important;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .navtoggle {
        display: none !important;
    }

    .has-mega .mega-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 2rem;
        z-index: 999;
    }

    .has-mega:hover .mega-panel {
        display: block;
    }
}

/* ===== NAVBAR ACTIVE PAGE UNDERLINE ===== */
.navlinks a.active,
.navlinks .active {
    color: var(--amber) !important;
    position: relative;
}

.navlinks a.active::after,
.navlinks .active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--amber);
    width: 100%;
}

@media (max-width: 991.98px) {
    .navlinks a.active::after,
    .navlinks .active::after {
        bottom: 0;
        height: 3px;
    }
}

/* ===== GET IN TOUCH CONTACT LIST ===== */
.foot-grid .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foot-grid .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 1px 0;  /* Reduced from 6px to 3px */
    color: #cfc7ba;
    font-size: 0.85rem;
    line-height: 1.3;
}

.foot-grid .contact-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.foot-grid .contact-list li a {
    color: #cfc7ba;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
    flex: 1;
}

.foot-grid .contact-list li a:hover {
    color: #e8a33d;
}

.foot-grid .contact-list li span {
    color: #cfc7ba;
    word-break: break-word;
    flex: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .foot-grid .contact-list li {
        padding: 2px 0;  /* Even tighter on mobile */
        font-size: 0.78rem;
        gap: 8px;
    }

    .foot-grid .contact-list li i {
        font-size: 0.9rem;
        width: 18px;
        margin-top: 1px;
    }
}
/* ================================================================================= */

/* ===== DISCLAIMER STYLES ===== */
.disclaimer {
    padding: 12px 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-link {
    color: #e8a33d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.disclaimer-link:hover {
    color: #f5b84d;
    text-decoration: underline;
}

/* ===== FOOT BOTTOM STYLES ===== */
.foot-bottom {
    padding: 20px;
}

.copyright-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-credits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.website-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.separator {
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
}

.footer-credit-link {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-credit-link:hover {
    color: #e8a33d;
}

.footer-logo {
    max-height: 22px;
    vertical-align: middle;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .disclaimer {
        padding: 10px 12px;
    }

    .disclaimer-text {
        font-size: 0.65rem;
        line-height: 1.6;
    }

    .foot-bottom {
        padding: 10px 0 6px 0;
    }

    .copyright-text {
        font-size: 0.7rem;
    }

    .footer-credits {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .website-text {
        font-size: 0.7rem;
    }

    .footer-credit-link {
        font-size: 0.65rem;
    }

    .separator {
        font-size: 0.6rem;
    }

    .footer-logo {
        max-height: 18px;
    }
}

@media (max-width: 480px) {
    .disclaimer-text {
        font-size: 0.6rem;
    }

    .copyright-text {
        font-size: 0.65rem;
        display: block;
        margin-bottom: 4px;
    }

    .footer-credits {
        gap: 3px;
    }

    .footer-credit-link {
        font-size: 0.6rem;
    }

    .separator {
        font-size: 0.5rem;
    }

    .footer-logo {
        max-height: 16px;
    }
}

/* ================================================================================= */