:root {
    --navy: #07152f;
    --blue: #163f78;
    --gold: #e7ad34;
    --gold-dark: #c98d18;
    --ink: #172033;
    --muted: #64748b;
    --soft: #f5f7fb;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 18px 50px rgba(7, 21, 47, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* TOP BAR */

.topbar {
    background: var(--navy);
    color: #dbe5f3;
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    padding: 9px 0;
}


/* NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(7, 21, 47, 0.07);
}

.inner-nav {
    position: relative;
}

.nav-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--navy);
}

.brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-weight: 900;
    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--blue) 55%,
            var(--gold)
        );
    border: 3px solid #eef3f9;
    box-shadow: 0 6px 16px rgba(7, 21, 47, 0.15);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 23px;
    line-height: 1.15;
}

.brand small {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
}

.nav-links a:not(.quote-btn):hover {
    color: var(--gold-dark);
}


/* BUTTONS */

.quote-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: none;
    border-radius: 5px;
    background: var(--gold);
    color: var(--navy) !important;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.quote-btn:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201, 141, 24, 0.24);
    background: #f0b941;
}

.btn-outline {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: #ffffff;
    color: var(--navy) !important;
    box-shadow: none;
}

.btn-dark {
    background: var(--navy);
    color: #ffffff !important;
}

.btn-light {
    background: #edf2f7;
    color: var(--navy) !important;
}

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    font-size: 29px;
    color: var(--navy);
    cursor: pointer;
}


/* HERO */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgba(7, 21, 47, 0.94),
            rgba(7, 21, 47, 0.62) 58%,
            rgba(7, 21, 47, 0.28)
        ),
        url("images/hero.svg") center / cover no-repeat;
}

.hero-content {
    padding: 90px 0;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--gold-dark);
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin: 14px 0 24px;
}

.hero p {
    max-width: 720px;
    font-size: 20px;
    color: #eef4fb;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}


/* STATS */

.trust-strip {
    background: var(--navy);
    color: #ffffff;
}

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

.stat {
    padding: 34px 30px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

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

.stat strong {
    display: block;
    color: var(--gold);
    font-size: 39px;
    line-height: 1.1;
}

.stat span {
    display: block;
    margin-top: 8px;
    color: #cad6e6;
    font-size: 14px;
}


/* SECTIONS */

.section {
    padding: 88px 0;
}

.section-soft {
    background: var(--soft);
}

.section h2,
.page-hero h1,
.admin-heading h1 {
    color: var(--navy);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 12px 0 22px;
}

.section p {
    color: #475569;
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    width: 100%;
    min-height: 460px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: #dbe5ef;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 32px 0;
}

.feature-list div {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
}

.feature-list b,
.feature-list span {
    display: block;
}

.feature-list b {
    color: var(--navy);
    margin-bottom: 4px;
}

.feature-list span {
    font-size: 14px;
    color: var(--muted);
}


/* HEADINGS */

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.section-heading h2 {
    margin-bottom: 12px;
}

.section-heading p {
    margin: 0;
}


/* PRODUCTS */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(7, 21, 47, 0.07);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-image-link {
    display: block;
    background: #e9eef5;
}

.product-card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    display: block;
}

.product-card-body {
    padding: 25px;
}

.product-card h3 {
    font-size: 21px;
    color: var(--navy);
    margin: 0 0 9px;
}

.product-card p {
    font-size: 14px;
    margin: 0 0 20px;
}

.text-link {
    font-weight: 800;
    color: var(--blue);
    text-decoration: none;
}


/* PROJECT BANNER */

.project-banner {
    padding: 76px 0;
    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgba(7, 21, 47, 0.95),
            rgba(22, 63, 120, 0.82)
        ),
        url("images/razor.svg") center / cover;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.banner-content h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 10px 0 14px;
}

.banner-content p {
    max-width: 760px;
    color: #e6edf6;
    margin: 0;
}


/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 9px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(7, 21, 47, 0.08);
    background: #eef2f7;
}


/* CTA */

.cta-section {
    padding: 0 0 88px;
}

.cta-card {
    background:
        linear-gradient(
            135deg,
            var(--gold),
            #f2c45f
        );

    border-radius: 14px;
    padding: 38px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-card h2 {
    color: var(--navy);
    font-size: 34px;
    margin: 0 0 4px;
}

.cta-card p {
    margin: 0;
    color: #473511;
}


/* FOOTER */

.footer {
    background: var(--navy);
    color: #c9d4e4;
    padding-top: 62px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 56px;
}

.footer-brand {
    color: #ffffff;
}

.footer p {
    color: #c9d4e4;
}

.footer h3 {
    color: #ffffff;
    margin-top: 0;
}

.footer-grid > div:nth-child(2) a {
    display: block;
    text-decoration: none;
    margin: 8px 0;
}

.footer-grid > div:nth-child(2) a:hover {
    color: var(--gold);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    margin-top: 42px;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.compact-footer {
    padding-top: 0;
}

.compact-footer .copyright {
    margin-top: 0;
}


/* PAGE HERO */

.page-hero {
    padding: 82px 0;
    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgba(7, 21, 47, 0.95),
            rgba(22, 63, 120, 0.80)
        ),
        url("images/hero.svg") center / cover;
}

.page-hero h1 {
    color: #ffffff;
    max-width: 760px;
    margin-bottom: 14px;
}

.page-hero p {
    max-width: 670px;
    color: #dce6f2;
    font-size: 18px;
}


/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: start;
}

.contact-info-card,
.form-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 12px 36px rgba(7, 21, 47, 0.07);
}

.contact-info-card h2,
.form-card h2 {
    font-size: 30px;
    margin: 8px 0 14px;
}

.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item b,
.contact-item span {
    display: block;
}

.contact-item b {
    color: var(--navy);
}

.contact-item span {
    color: var(--muted);
    margin-top: 3px;
}

.contact-note {
    margin-top: 26px;
    padding: 18px;
    background: #fff7df;
    border-left: 4px solid var(--gold);
    color: #62460c;
}

.muted {
    color: var(--muted) !important;
}


/* FORMS */

.form-card label,
.admin-login-card label {
    display: block;
    font-weight: 800;
    color: var(--navy);
    margin: 17px 0 7px;
}

.form-card input,
.form-card textarea,
.admin-login-card input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    padding: 13px 14px;
    font: inherit;
    outline: none;
}

.form-card input:focus,
.form-card textarea:focus,
.admin-login-card input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(22, 63, 120, 0.12);
}

.form-card textarea {
    min-height: 145px;
    resize: vertical;
}

.submit-btn {
    margin-top: 20px;
    width: 100%;
}

.alert {
    border-radius: 8px;
    padding: 14px 16px;
    margin: 18px 0;
    font-size: 14px;
}

.alert.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}


/* PRODUCT DETAILS */

.product-page-hero {
    padding: 60px 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.product-detail-image {
    background: var(--soft);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.product-detail-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.product-detail-content h2 {
    margin-bottom: 18px;
}

.lead {
    font-size: 18px;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 26px 0;
}

.detail-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid var(--border);
}

.detail-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 900;
}

.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.empty-state {
    padding: 48px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
}


/* ADMIN */

.admin-body {
    background: var(--soft);
}

.admin-login-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
}

.admin-login-card {
    width: min(460px, 100%);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
    box-shadow: var(--shadow);
}

.admin-brand {
    margin-bottom: 28px;
}

.admin-login-card h1 {
    color: var(--navy);
    margin: 0;
}

.admin-warning {
    font-size: 12px;
    color: var(--muted);
    margin-top: 18px;
}

.admin-topbar {
    background: var(--navy);
    color: #ffffff;
}

.admin-topbar-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-topbar-inner > div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.admin-topbar span {
    color: #aebdd1;
    font-size: 13px;
}

.admin-topbar a {
    color: #ffffff;
    text-decoration: none;
}

.admin-logout {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 13px;
    border-radius: 4px;
    font-weight: 800;
}

.admin-section {
    padding-top: 52px;
}

.admin-heading {
    margin-bottom: 28px;
}

.table-wrap {
    overflow: auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(7, 21, 47, 0.06);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}

.admin-table th,
.admin-table td {
    text-align: left;
    vertical-align: top;
    padding: 17px 18px;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background: #f8fafc;
    color: var(--navy);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.admin-table td {
    font-size: 14px;
}

.admin-table a {
    color: var(--blue);
}


/* TABLET */

@media (max-width: 900px) {

    .topbar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 20px;
    }

    .menu-btn {
        display: block;
    }

    .nav-links:not(.static-links) {
        display: none;
        position: absolute;
        top: 86px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-top: 1px solid var(--border);
        padding: 22px 4%;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 14px 28px rgba(7, 21, 47, 0.10);
    }

    .menu-open .nav-links {
        display: flex;
    }

    .nav-links:not(.static-links) a {
        text-align: center;
        padding: 9px;
    }

    .static-links {
        gap: 12px;
    }

    .static-links a:not(.quote-btn) {
        display: none;
    }

    .hero {
        min-height: 580px;
    }

    .about-grid,
    .contact-grid,
    .product-detail {
        grid-template-columns: 1fr;
    }

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

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

    .banner-content,
    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .about-image {
        min-height: 340px;
    }

    .product-detail-image img {
        height: 420px;
    }

}


/* PHONE */

@media (max-width: 600px) {

    .container {
        width: min(92%, 1180px);
    }

    .brand strong {
        font-size: 19px;
    }

    .brand-mark {
        width: 50px;
        height: 50px;
    }

    .brand small {
        font-size: 9px;
    }

    .nav-inner {
        min-height: 76px;
    }

    .nav-links:not(.static-links) {
        top: 76px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding: 70px 0;
    }

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

    .hero p {
        font-size: 17px;
    }

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

    .stat {
        border-right: 0;
        border-bottom:
            1px solid rgba(255, 255, 255, 0.10);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 65px 0;
    }

    .feature-list,
    .product-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-card img,
    .gallery-grid img {
        height: 235px;
    }

    .cta-section {
        padding-bottom: 65px;
    }

    .cta-card {
        padding: 30px 25px;
    }

    .page-hero {
        padding: 62px 0;
    }

    .contact-info-card,
    .form-card,
    .admin-login-card {
        padding: 25px;
    }

    .product-detail-image img {
        height: 330px;
    }

    .admin-topbar-inner,
    .admin-topbar-inner > div {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-topbar-inner {
        padding: 18px 0;
    }

    .static-links .quote-btn {
        padding: 0 13px;
        min-height: 42px;
    }

}
/* ABOUT PAGE */

.about-page-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 65px;
    align-items: center;
}

.about-page-content h2 {
    color: var(--navy);
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin: 12px 0 26px;
}

.about-page-content p {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 20px;
}

.about-page-image {
    position: relative;
}

.about-page-image::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -24px;
    top: -24px;
    background: var(--gold);
    border-radius: 12px;
    z-index: 0;
}

.about-page-image::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    left: -24px;
    bottom: -24px;
    border: 6px solid var(--blue);
    border-radius: 12px;
    z-index: 0;
}

.about-page-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    background: #e2e8f0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-value-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 25px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(7, 21, 47, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.value-number {
    display: block;
    color: var(--gold);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
}

.about-value-card h3 {
    color: var(--navy);
    font-size: 21px;
    margin: 0 0 12px;
}

.about-value-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.about-cta-section {
    padding-top: 88px;
}


@media (max-width: 900px) {

    .about-page-grid {
        grid-template-columns: 1fr;
    }

    .about-page-image img {
        height: 440px;
    }

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

}


@media (max-width: 600px) {

    .about-page-grid {
        gap: 45px;
    }

    .about-page-content p {
        font-size: 15px;
    }

    .about-page-image img {
        height: 330px;
    }

    .about-page-image::before {
        right: -10px;
        top: -10px;
    }

    .about-page-image::after {
        left: -10px;
        bottom: -10px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

}
/* SEPARATE PAGE STYLES */

.product-page-cta,
.reviews-cta {
    padding-top: 88px;
}

.product-view-btn {
    width: 100%;
    margin-top: 5px;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(7, 21, 47, 0.08);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(7, 21, 47, 0.92);
    color: #ffffff;
    padding: 14px 18px;
    border-left: 4px solid var(--gold);
    font-size: 16px;
    font-weight: 800;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 34px;
    box-shadow: 0 12px 32px rgba(7, 21, 47, 0.07);
}

.review-stars {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: 18px;
}

.review-quote {
    color: var(--gold);
    font-size: 80px;
    font-family: Georgia, serif;
    line-height: 0.8;
    margin-top: 25px;
}

.review-card p {
    color: #475569;
    font-size: 17px;
    line-height: 1.8;
}

.review-customer {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 25px;
}

.review-customer strong,
.review-customer span {
    display: block;
}

.review-customer strong {
    color: var(--navy);
}

.review-customer span {
    color: var(--muted);
    font-size: 13px;
    margin-top: 3px;
}

.review-disclaimer {
    margin-top: 30px;
    padding: 18px 22px;
    background: #fff7df;
    color: #62460c;
    border-left: 4px solid var(--gold);
}

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

    .gallery-page-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 260px;
    }

}/* NEW GENERATED IMAGE GALLERY */

.home-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: var(--navy);
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(7, 21, 47, 0.10);
}

.home-gallery-item img {
    display: block;
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}

.home-gallery-item span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;

    padding: 13px 16px;

    background: rgba(7, 21, 47, 0.92);

    border-left: 4px solid var(--gold);

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;
}

.home-gallery-item:hover img {
    transform: scale(1.06);
    opacity: 0.88;
}

.gallery-button-wrap {
    text-align: center;
    margin-top: 38px;
}


/* FULL GALLERY */

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.gallery-item {
    position: relative;

    margin: 0;

    overflow: hidden;

    border-radius: 12px;

    background: #ffffff;

    border: 1px solid var(--border);

    box-shadow:
        0 14px 35px
        rgba(7, 21, 47, 0.10);
}

.gallery-item img {
    display: block;

    width: 100%;

    height: 420px;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.045);
    opacity: 0.92;
}

.gallery-item figcaption {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 22px;

    padding: 16px 19px;

    background:
        rgba(7, 21, 47, 0.94);

    border-left:
        4px solid var(--gold);

    color: #ffffff;
}

.gallery-item figcaption strong,
.gallery-item figcaption span {
    display: block;
}

.gallery-item figcaption strong {
    font-size: 18px;
}

.gallery-item figcaption span {
    color: #cbd7e7;

    font-size: 13px;

    margin-top: 3px;
}


@media (max-width: 900px) {

    .gallery-page-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item img {
        height: 330px;
    }

}


@media (max-width: 600px) {

    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 300px;
    }

    .home-gallery-item img {
        height: 250px;
    }

}/* MOBILE NAVIGATION FIX */

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    padding: 8px 12px;
}


@media (max-width: 900px) {

    .nav-inner {
        position: relative;
        flex-wrap: wrap;
    }


    .menu-btn {
        display: block;
        order: 2;
    }


    .nav-links {
        display: none;
        width: 100%;
        order: 4;

        background: #ffffff;

        padding: 15px 0 22px;

        border-top: 1px solid #e2e8f0;

        box-shadow:
            0 14px 30px
            rgba(7, 21, 47, 0.08);
    }


    .navbar.menu-open .nav-links {
        display: flex;
        flex-direction: column;
    }


    .nav-links a {
        display: block;

        width: 100%;

        padding: 15px 22px;

        color: var(--navy);

        font-size: 17px;
        font-weight: 700;

        border-bottom:
            1px solid #eef2f7;
    }


    .nav-links a:last-child {
        border-bottom: 0;
    }


    .nav-links .quote-btn {
        width: calc(100% - 44px);

        margin: 15px 22px 0;

        text-align: center;

        padding: 15px 20px;
    }

}/* FINAL MOBILE NAVIGATION FIX */

.menu-btn {
    display: none;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    padding: 10px 12px;
}


@media (max-width: 900px) {

    .nav-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
    }


    .menu-btn {
        display: block !important;
        margin-left: auto;
    }


    .nav-links,
    .nav-links.static-links {
        display: none !important;
        width: 100% !important;
        flex-direction: column !important;
        align-items: stretch !important;
        order: 10;

        background: #ffffff;

        margin-top: 15px;
        padding: 10px 0 20px;

        border-top: 1px solid #e2e8f0;

        box-shadow:
            0 15px 30px
            rgba(7, 21, 47, 0.08);
    }


    .navbar.menu-open .nav-links,
    .navbar.menu-open .nav-links.static-links {
        display: flex !important;
    }


    .navbar.menu-open .nav-links a,
    .navbar.menu-open .nav-links.static-links a {
        display: block !important;
        width: 100% !important;

        padding: 15px 22px !important;

        color: var(--navy);

        text-align: left;

        font-size: 17px;
        font-weight: 700;

        border-bottom:
            1px solid #eef2f7;
    }


    .navbar.menu-open .nav-links .quote-btn {
        display: block !important;

        width: calc(100% - 44px) !important;

        margin: 15px 22px 0 !important;

        padding: 15px 20px !important;

        text-align: center !important;

        border-bottom: 0;
    }

/* MOBILE MENU FINAL FIX */

@media (max-width: 900px) {

    .menu-btn {
        display: block !important;
        margin-left: auto;
    }

    #mobileMenu {
        display: none !important;
        width: 100% !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 10px 0 15px !important;
        margin: 15px 0 0 !important;
        background: #ffffff !important;
    }

    #mobileMenu.show {
        display: grid !important;
    }

    #mobileMenu a {
        width: auto !important;
        margin: 0 !important;
        padding: 15px 10px !important;
        text-align: center !important;
        color: #07152f !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 6px !important;
    }

    #mobileMenu .quote-btn {
        width: auto !important;
        margin: 0 !important;
        background: #e2b34c !important;
    }

}