/* =====================
	 Base / Theme
====================== */
:root {
    --bg: #0f0b07;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-2: rgba(255, 255, 255, 0.08);
    --text: #f6f1eb;
    --muted: rgba(246, 241, 235, 0.75);
    --muted-2: rgba(246, 241, 235, 0.6);
    --border: rgba(246, 241, 235, 0.14);

    --accent: #f59e0b;
    /* warm amber */
    --accent-2: #fb7185;
    /* warm rose */
    --accent-3: #22c55e;
    /* subtle green */

    --shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.35);

    --radius: 18px;
    --radius-sm: 12px;
    --container: 1160px;
    --scroll-offset: 86px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-offset);
}

.page-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(1100px 700px at 10% 10%, rgba(245, 158, 11, 0.18), transparent 60%),
        radial-gradient(900px 600px at 90% 10%, rgba(251, 113, 133, 0.16), transparent 58%),
        radial-gradient(800px 600px at 30% 95%, rgba(34, 197, 94, 0.10), transparent 58%),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

/* =====================
	 Topbar
====================== */
.topbar {
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    font-size: 13px;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.topbar__link {
    color: var(--muted);
}

.topbar__link:hover {
    color: var(--text);
}

.topbar__dot {
    color: rgba(246, 241, 235, 0.28);
}

.topbar__badge {
    color: rgba(246, 241, 235, 0.85);
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

/* Mobile adjustments for topbar badge to prevent overflow and center on small screens */
@media (max-width: 560px) {
    .topbar__inner {
        padding: 8px 0;
        justify-content: space-between;
        text-align: center;
    }

    /* Keep phone links visible on mobile; allow horizontal scrolling if they overflow */
    .topbar__left {
        display: flex;
        gap: 8px;
        align-items: center;
        flex: 0 0 auto;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-inline-start: 6px;
    }

    .topbar__right {
        display: block;
        flex: 1 1 auto;
        text-align: center;
    }

    .topbar__badge {
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* =====================
	 Header / Nav
====================== */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #1a120b;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.22);
}

.brand__text {
    display: grid;
    line-height: 1.05;
}

.brand__name {
    font-weight: 800;
    letter-spacing: 0.2px;
}

.brand__tagline {
    font-size: 12px;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* Hamburger button (hidden on desktop) */
.hamburger {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
}

.hamburger__box {
    display: inline-block;
    width: 26px;
    height: 18px;
    position: relative;
}

.hamburger__inner {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text);
    display: block;
    transform: translateY(-50%);
}

.hamburger__inner::before,
.hamburger__inner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text);
}

.hamburger__inner::before {
    top: -7px;
}

.hamburger__inner::after {
    top: 7px;
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
}

.mobile-nav__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
}

.mobile-nav__panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(340px, 86%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.92));
    padding: 22px;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(.2, .9, .3, 1);
    z-index: 99999;
    overflow-y: auto;
}

.mobile-nav__panel .nav__link {
    display: block;
    padding: 14px 12px;
    font-size: 16px;
    border-radius: 8px;
    margin-bottom: 6px;
}

.mobile-nav__panel .nav__link--cta {
    margin-top: 8px;
}

.mobile-nav__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 20px;
    padding: 8px;
    cursor: pointer;
}

/* Open state */
.mobile-nav.mobile-nav--open {
    display: block;
}

.mobile-nav.mobile-nav--open .mobile-nav__backdrop {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav.mobile-nav--open .mobile-nav__panel {
    transform: translateX(0);
}

/* Responsive control: hide desktop nav and show hamburger */
@media (max-width: 720px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: inline-flex;
    }
}

.nav__link {
    font-size: 14px;
    color: rgba(246, 241, 235, 0.86);
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav__link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(246, 241, 235, 0.12);
    transform: translateY(-1px);
}

.nav__link--cta {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    color: #141211;
    font-weight: 700;
}

.nav__link--cta:hover {
    border-color: transparent;
    color: #fbbf24;
    filter: brightness(1.03);
}

/* =====================
	 Hero
====================== */
.hero {
    padding: 64px 0 34px;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(246, 241, 235, 0.9);
    font-size: 13px;
    margin: 0 0 14px;
}

.hero__content {
    max-width: 820px;
    text-align: center;
    padding: 8px 12px;
}

.hero__title {
    font-size: clamp(30px, 3.3vw, 52px);
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -0.6px;
}

.hero__title {
    /* slightly stronger presence when centered */
    font-weight: 700;
    color: var(--text);
    text-wrap: balance;
}

.hero__subtitle {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.hero__subtitle {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, filter 160ms ease, background 160ms ease, border-color 160ms ease;
    user-select: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent), #fbbf24);
    color: #1a120b;
    box-shadow: 0 18px 40px rgba(245, 158, 11, 0.18);
}

.btn--primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(246, 241, 235, 0.18);
    color: rgba(246, 241, 235, 0.92);
}

.btn--ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(246, 241, 235, 0.26);
}

.btn--block {
    width: 100%;
}

.hero__trust {
    margin-top: 8px;
}

.trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.trust__item {
    padding: 12px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(246, 241, 235, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.trust__value {
    display: block;
    font-weight: 800;
}

.trust__label {
    display: block;
    font-size: 12px;
    color: var(--muted);
}

.hero__media {
    position: relative;
}

/* =====================
	 Media placeholders
====================== */
.media {
    border-radius: var(--radius);
    border: 1px solid rgba(246, 241, 235, 0.14);
    background:
        radial-gradient(600px 220px at 30% 10%, rgba(245, 158, 11, 0.22), transparent 60%),
        radial-gradient(500px 200px at 80% 20%, rgba(251, 113, 133, 0.18), transparent 55%),
        rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    position: relative;
}

/* Images placed inside .media containers fill the area while preserving aspect ratio */
.media>img,
.media .media__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* preserve aspect ratio and cover the container */
    object-position: center center;
}

/* For map placeholders we prefer contain so map pins aren't cropped when used */
.media--map>img,
.media--map .media__img {
    object-fit: contain;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.media__label {
    position: absolute;
    inset: auto 14px 14px 14px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(246, 241, 235, 0.14);
    background: rgba(0, 0, 0, 0.45);
    color: rgba(246, 241, 235, 0.85);
    font-size: 12px;
    letter-spacing: 0.6px;
}

/* Hide the visible 'IMAGE' overlay text on all media placeholders. */
.media__label {
    display: none;
}

.media--hero {
    min-height: 420px;
}

.media--square {
    aspect-ratio: 1 / 1;
}

.media--gallery {
    aspect-ratio: 4 / 3;
}

/* Gallery visuals: ensure uniform tiles, rounded corners and subtle elevation */
.grid--gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.media--gallery {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    transition: transform 220ms cubic-bezier(.2, .9, .3, 1), box-shadow 220ms ease;
}

.media--gallery .media__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.media--gallery:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

@media (max-width: 980px) {
    .grid--gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .grid--gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.media--portrait {
    min-height: 420px;
}

.media--map {
    /* keep spacing consistent with other .media blocks */
    padding: 8px;
}

/* Compact map height so it visually matches the adjacent info-card */
.media--map .media__iframe,
.media--map iframe {
    width: 100%;
    height: 220px;
    /* match the approximate height of .info-card */
    border: 0;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    background: #0b0b0b;
}

@media (min-width: 981px) {

    .media--map .media__iframe,
    .media--map iframe {
        height: 145px;
    }
}

@media (max-width: 560px) {

    .media--map .media__iframe,
    .media--map iframe {
        height: 180px;
    }
}

/* Caption / info below the map */
.media__map-info {
    margin-top: 10px;
    padding: 10px 12px 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.media__map-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.media__map-sub {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 560px) {
    .media__map-info {
        align-items: center;
        text-align: center;
        padding-left: 6px;
        padding-right: 6px;
    }

    .media__map-title {
        font-size: 15px;
    }
}

@media (min-width: 981px) {
    .media__map-info {
        align-items: flex-start;
        text-align: left;
    }
}

.hero__card {
    position: absolute;
    right: 16px;
    bottom: -18px;
    width: min(340px, 92%);
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(246, 241, 235, 0.14);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.hero__card-title {
    margin: 0 0 6px;
    font-weight: 800;
}

.hero__card-text {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

/* =====================
	 Sections
====================== */
.section {
    padding: 72px 0;
}

.section--alt {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(246, 241, 235, 0.08);
    border-bottom: 1px solid rgba(246, 241, 235, 0.08);
}

.section__head {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.section__title {
    font-size: clamp(24px, 2.3vw, 34px);
    margin: 0;
    letter-spacing: -0.4px;
}

.section__subtitle {
    margin: 0;
    color: var(--muted);
    max-width: 70ch;
}

/* =====================
	 Products
====================== */
.category {
    margin-top: 26px;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(246, 241, 235, 0.10);
    background: rgba(255, 255, 255, 0.03);
}

.category__head {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
}

.category__title {
    margin: 0;
    font-size: 20px;
}

.category__desc {
    margin: 0;
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 14px;
}

.grid--products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
    border-radius: var(--radius);
    border: 1px solid rgba(246, 241, 235, 0.10);
    background: rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.30);
    background: rgba(0, 0, 0, 0.26);
}

.product-card .media {
    border: 0;
    border-bottom: 1px solid rgba(246, 241, 235, 0.10);
    border-radius: 0;
    box-shadow: none;
    transition: filter 180ms ease, transform 180ms ease;
}

.product-card:hover .media {
    transform: scale(1.01);
    filter: saturate(1.05) brightness(1.02);
}

.product-card__title {
    margin: 12px 12px 6px;
    font-size: 16px;
}

.product-card__text {
    margin: 0 12px 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.cta-strip {
    margin-top: 22px;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(245, 158, 11, 0.22);
    background:
        radial-gradient(700px 260px at 15% 0%, rgba(245, 158, 11, 0.22), transparent 60%),
        rgba(0, 0, 0, 0.20);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cta-strip__title {
    margin: 0 0 4px;
}

.cta-strip__text {
    margin: 0;
    color: var(--muted);
}

/* =====================
	 Gallery
====================== */
.grid--gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media--gallery {
    transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.media--gallery:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 113, 133, 0.30);
    filter: saturate(1.05) brightness(1.03);
}

/* =====================
	 About
====================== */
.about {
    display: block;
    padding: 28px 0 36px;
}

.about__content {
    max-width: 920px;
    margin-inline: auto;
    text-align: center;
    padding: 8px 14px;
}

.about__text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 14px;
}

.about__highlights {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 16px 0 18px;
    flex-wrap: wrap;
}

.highlight {
    text-align: center;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.02);
    flex: 1 1 200px;
    min-width: 0;
    max-width: 320px;
}

.highlight__title {
    display: block;
    font-weight: 800;
    margin-bottom: 6px;
}

.highlight__text {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.about__note {
    margin-top: 18px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(0, 0, 0, 0.16);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.about__note-title {
    margin: 0 0 6px;
    font-weight: 700;
}

.about__note-text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* =====================
	 Contact
====================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.contact__form {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(246, 241, 235, 0.10);
    background: rgba(0, 0, 0, 0.18);
}

.contact__cta-title {
    margin: 0 0 8px;
    font-size: 18px;
    letter-spacing: -0.2px;
}

.contact__cta-text {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 13.5px;
}

.contact__actions {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.contact__tips {
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid rgba(246, 241, 235, 0.10);
    background: rgba(255, 255, 255, 0.03);
}

.contact__tips-title {
    margin: 0 0 10px;
    font-weight: 800;
    font-size: 13px;
}

.contact__checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.contact__checklist li {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    padding-left: 26px;
    position: relative;
}

.contact__checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #1a120b;
    background: linear-gradient(135deg, var(--accent), #fbbf24);
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.field__label {
    font-size: 13px;
    color: rgba(246, 241, 235, 0.9);
}

.field__input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(246, 241, 235, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    outline: none;
    transition: border-color 160ms ease, background 160ms ease;
}

.field__input:focus {
    border-color: rgba(245, 158, 11, 0.55);
    background: rgba(255, 255, 255, 0.05);
}

.field__textarea {
    resize: vertical;
}

.contact__hint {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.contact__hint a {
    color: rgba(246, 241, 235, 0.95);
    text-decoration: underline;
    text-decoration-color: rgba(245, 158, 11, 0.55);
    text-underline-offset: 3px;
}

.contact__info {
    display: grid;
    gap: 12px;
}

.info-card {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid rgba(246, 241, 235, 0.10);
    background: rgba(0, 0, 0, 0.18);
}

.info-card__title {
    margin: 0 0 8px;
}

.info-card__text {
    margin: 0 0 6px;
    color: var(--muted);
}

.info-card__links {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(246, 241, 235, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(246, 241, 235, 0.92);
    font-size: 13px;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.pill:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 158, 11, 0.32);
}

/* =====================
	 Footer
====================== */
.footer {
    padding: 34px 0 18px;
    border-top: 1px solid rgba(246, 241, 235, 0.10);
    background: rgba(0, 0, 0, 0.30);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.brand--footer .brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
}

.footer__text {
    margin: 10px 0 0;
    color: var(--muted);
    max-width: 55ch;
}

.footer__links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__link {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(246, 241, 235, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(246, 241, 235, 0.9);
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer__link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(251, 113, 133, 0.30);
}

.footer__bottom {
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid rgba(246, 241, 235, 0.08);
    color: rgba(246, 241, 235, 0.72);
    font-size: 13px;
}

/* =====================
	 Responsive
====================== */
@media (max-width: 980px) {
    :root {
        --scroll-offset: 94px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
    }

    .hero__card {
        position: static;
        margin-top: 12px;
        width: 100%;
    }

    .grid--products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid--gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about__highlights {
        grid-template-columns: 1fr;
    }

    .contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    :root {
        --scroll-offset: 104px;
    }

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .trust {
        grid-template-columns: 1fr;
    }

    .grid--products {
        grid-template-columns: 1fr;
    }

    .grid--gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =====================
   Lightbox
====================== */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(3, 3, 3, 0.78);
    z-index: 9999;
    padding: 24px;
}

.lightbox--open {
    display: flex;
}

.lightbox__wrap {
    max-width: min(1100px, 96%);
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
}

.lightbox__img {
    width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    background: #0b0b0b;
}

.lightbox__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.lightbox__nav {
    display: flex;
    gap: 10px;
}

.lightbox__btn {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-weight: 700;
}

.lightbox__btn:hover {
    transform: translateY(-3px);
}

.lightbox__close {
    position: absolute;
    right: 18px;
    top: 18px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
}

@media (max-width: 720px) {
    .lightbox__wrap {
        grid-template-columns: 1fr;
    }

    .lightbox__meta {
        align-items: center;
    }
}