:root {
    --black: #0e0e0e;
    --gold: #d49a1e;
    --gold2: #f5c94f;
    --text: #111;
    --muted: #6b6b6b;
    --line: #e8e8e8;
    --bg: #f7f5ef;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Inter, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
}
.container {
    width: min(1120px, calc(100% - 40px));
    margin: auto;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px max(20px, calc((100vw - 1120px) / 2));
    box-shadow: 0 2px 20px #00000008;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.35rem;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 100px;
    height: 100px;
    background: transparent;
    font-weight: 900;
    color: #111;
}
.menu-toggle {
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 1.7rem;
    padding: 8px 14px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.main-nav a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
}
.main-nav .nav-cta {
    background: linear-gradient(135deg, var(--gold2), var(--gold));
    padding: 13px 18px;
}
.section-dark {
    background: #101010;
    color: #fff;
}
.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, #b77b1233, transparent 35%),
    linear-gradient(90deg, #090909 30%, #111111dd),
    url("https://images.unsplash.com/photo-1612883088463-bc64e9a5818c?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    filter: saturate(0.75);
}
.hero-content {
    position: relative;
    padding: 90px 0;
}
.eyebrow {
    color: var(--gold);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    margin: 0 0 20px;
}
.hero h1,
.custom-cta h2,
.about-hero h2 {
    font-size: clamp(3rem, 8vw, 5.9rem);
    line-height: 0.96;
    margin: 0 0 28px;
    max-width: 850px;
    letter-spacing: -0.07em;
}
.hero h1 span,
.custom-cta h2 span,
.gold-text {
    color: var(--gold);
}
.lead {
    font-size: clamp(1.15rem, 2.4vw, 1.55rem);
    color: #d7d7d7;
    max-width: 760px;
}
.button-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 38px;
}
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 0;
    font-weight: 900;
    font-size: 1rem;
    padding: 18px 28px;
    min-height: 58px;
    cursor: pointer;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold2), var(--gold));
    color: #111;
}
.btn-outline {
    border: 1px solid #ffffff66;
    color: #fff;
    background: #00000033;
}
.trust-row {
    margin-top: 44px;
    color: var(--gold);
    font-weight: 900;
}
.trust-row span {
    color: #d7d7d7;
    font-weight: 600;
    margin-left: 10px;
}
.quick-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 5;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px #00000010;
}
.quick-points div {
    padding: 34px;
    border-right: 1px solid var(--line);
}
.quick-points div:last-child {
    border-right: 0;
}
.quick-points strong {
    display: block;
    font-size: 1.15rem;
}
.quick-points span {
    display: block;
    color: var(--muted);
    margin-top: 8px;
}
.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    padding: 110px 0;
}
h2 {
    font-size: clamp(2.35rem, 5vw, 4.4rem);
    line-height: 1.04;
    margin: 0 0 24px;
    letter-spacing: -0.055em;
}
.muted {
    color: var(--muted);
    font-size: 1.24rem;
}
.service-list article {
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.service-list .icon {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    background: #111;
    color: var(--gold);
    font-size: 1.55rem;
    margin-bottom: 26px;
}
.service-list small {
    position: absolute;
    right: 0;
    top: 48px;
    font-weight: 900;
    color: #777;
    font-size: 1.1rem;
}
.service-list h3,
.card h3 {
    font-size: 1.55rem;
    line-height: 1.15;
    margin: 0 0 12px;
}
.service-list p {
    color: var(--muted);
    font-size: 1.08rem;
    margin: 0;
}
.promise {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.promise-list p {
    font-size: 1.2rem;
    padding-left: 72px;
    position: relative;
    margin: 0 0 30px;
}
.promise-list p:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold2), var(--gold));
    font-weight: 900;
}
.promise-list span {
    color: var(--muted);
}
.products {
    padding: 110px 0;
    overflow: hidden;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 44px;
}
.card {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 10px #00000012;
}
.image {
    height: 340px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.image span {
    position: absolute;
    left: 20px;
    top: 20px;
    background: #111;
    color: var(--gold);
    padding: 9px 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 900;
}
.placeholder:after {
    content: "";
    width: 130px;
    height: 130px;
    border: 16px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 50px #d49a1e66;
}
.spiral {
    background: #0b0b0b;
}
.reel {
    background: linear-gradient(135deg, #f7f7f7, #fff);
}
.reel:after {
    border-color: #111;
}
.sponge {
    background: linear-gradient(135deg, #fff, #f4f4f4);
}
.sponge:after {
    border-radius: 10px;
    border-width: 8px;
    border-color: #111;
    width: 150px;
    height: 90px;
}
.dragon {
    background: #0b0b0b;
}
.dragon:after {
    border-radius: 18px;
    transform: rotate(25deg);
}
.card-body {
    padding: 26px;
    position: relative;
}
.card-body strong {
    position: absolute;
    right: 24px;
    top: 25px;
    font-size: 1.35rem;
}
.card-body small {
    display: block;
    text-transform: uppercase;
    color: #777;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}
.card.card-img{

    object-fit: fill;
    border-radius: 10px;
    margin-top: 30px;
}
.card-body p {
    color: var(--muted);
    margin: 0;
    padding-right: 45px;
}
.custom-cta {
    padding: 110px 0;
}
.custom-cta h2 {
    max-width: 850px;
}
.quote-form {
    margin-top: 42px;
    background: #fff;
    color: #111;
    padding: 28px;
    display: grid;
    gap: 18px;
    max-width: 720px;
}
.quote-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}
.quote-form input,
.quote-form textarea {
    font: inherit;
    border: 1px solid #ddd;
    padding: 14px;
    background: #fafafa;
}
.hidden {
    display: none;
}
.about-hero {
    padding: 90px 0;
    background-image: linear-gradient(#101010ee, #101010ee),
    linear-gradient(90deg, #ffffff0a 1px, transparent 1px),
    linear-gradient(#ffffff0a 1px, transparent 1px);
    background-size: auto, 70px 70px, 70px 70px;
}
.about-copy {
    padding: 80px 0;
    font-size: 1.35rem;
}
.about-copy p {
    max-width: 900px;
    color: #555;
}
.about-copy strong {
    color: #111;
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}
.stats div {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
}
.stats strong {
    display: block;
    font-size: 3rem;
    line-height: 1;
}
.stats span {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 900;
    font-size: 0.9rem;
}
.gallery {
    padding: 90px 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    object-fit: fill;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-grid div {
    height: 360px;
    background: #111;
    color: var(--gold);
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 900;
    border: 1px solid #333;
    object-fit: fill;
}
.site-footer {
    background: #0c0c0c;
    color: #aaa;
    padding: 70px 0 35px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}
.footer-grid a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin: 12px 0;
}
.footer-grid h3 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.footer-brand {
    color: #fff !important;
}
.email {
    color: var(--gold) !important;
    font-weight: 800;
}
.socials {
    display: flex;
    gap: 12px;
}
.socials a {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid #333;
    margin: 0;
    font-weight: 900;
}
.copyright {
    border-top: 1px solid #222;
    margin-top: 50px;
    padding-top: 25px;
    color: #777;
}
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 81px;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 36px;
        border-bottom: 1px solid var(--line);
    }
    .main-nav.open {
        display: flex;
    }
    .main-nav a {
        font-size: 1.35rem;
    }
    .main-nav .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        font-size: 1rem;
    }
    .hero {
        min-height: 650px;
    }
    .quick-points {
        grid-template-columns: repeat(2, 1fr);
    }
    .quick-points div {
        border-bottom: 1px solid var(--line);
    }
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .product-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .site-header {
        padding: 16px 20px;
    }
    .container {
        width: calc(100% - 36px);
    }
}
@media (max-width: 560px) {
    .brand {
        font-size: 1.25rem;
    }
    .brand-mark {
        width: 40px;
        height: 40px;
    }
    .hero h1,
    .custom-cta h2,
    .about-hero h2 {
        font-size: 3rem;
    }
    .hero-content {
        padding: 70px 0;
    }
    .button-row .btn {
        width: 100%;
    }
    .quick-points {
        grid-template-columns: 1fr;
        margin-top: 0;
    }
    .quick-points div {
        border-right: 0;
    }
    .split,
    .products,
    .custom-cta {
        padding: 72px 0;
    }
    .product-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .image {
        height: 330px;
    }
    .card-body strong {
        position: static;
        display: block;
        margin: 8px 0;
    }
    .card-body p {
        padding-right: 0;
    }
    .quote-form {
        padding: 20px;
    }
    .about-copy {
        font-size: 1.12rem;
    }
    .trust-row span {
        display: block;
        margin: 8px 0 0;
    }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 44px;
}



.card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5ded1;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
    border-color: #d49a1e55;
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: static;
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.card-top h3 {
    margin: 0;
    max-width: 70%;
}

.price {
    flex: 0 0 auto;
    min-width: 72px;
    text-align: right;
    line-height: 1;
}

.price strong {
    position: static;
    display: block;
    font-size: 1.7rem;
    letter-spacing: -0.04em;
}

.price small {
    display: block;
    margin-bottom: 7px;
    text-transform: uppercase;
    color: #777;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}

.card-body p {
    padding-right: 0;
    margin: 0 0 22px;
    flex: 1;
}

.card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid #e3c56f;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff8dc, #fff);
}

.card-link:hover {
    background: linear-gradient(135deg, var(--gold2), var(--gold));
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .card {
        border-radius: 18px;
    }

    .card-top h3 {
        max-width: 68%;
    }

    .price strong {
        font-size: 1.55rem;
    }
}
.quote-section {
    background: #f7f5ef;
    padding: 10px;
}

.quote-card {
    background: #fff;
    border: 1px solid #e8dfce;
    border-radius: 28px;
    padding: clamp(28px, 5vw, 56px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
    margin: 10px;
}

.quote-intro h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -0.06em;
}

.quote-intro p {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.7;
}

.quote-form {
    display: grid;
    gap: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.quote-form label {
    display: grid;
    gap: 9px;
    font-weight: 900;
    color: #111;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid #ded6c8;
    border-radius: 14px;
    padding: 15px 16px;
    font: inherit;
    background: #fbfaf7;
    color: #111;
}

.quote-form textarea {
    resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 154, 30, 0.18);
}

.form-note {
    margin: 0;
    color: #777;
    font-size: 0.95rem;
}

.hidden {
    display: none;
}

@media (max-width: 850px) {
    .quote-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}
#selectedProduct {
    background: #fff8dc;
    border-color: #e3c56f;
    font-weight: 900;
} /* GLOBAL BUTTON HOVER EFFECTS */

.btn,
.card-link,
button,
input[type="submit"] {
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease,
    color 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
}

/* Hover */

.btn:hover,
.card-link:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

/* Active click */

.btn:active,
.card-link:active,
button:active,
input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Gold buttons */

.btn-gold:hover,
.card-link:hover {
    background: linear-gradient(135deg, #f6d57a, #d49a1e);
    color: #111;
    border-color: #d49a1e;
}

/* Dark buttons */

.btn-dark:hover {
    background: #1c1c1c;
    color: #fff;
}

/* Focus accessibility */

.btn:focus-visible,
.card-link:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 154, 30, 0.25),
    0 14px 35px rgba(0, 0, 0, 0.18);
}
.file-upload input[type="file"] {
    display: none;
}

.custom-file-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 14px 16px;
    border: 1px solid #ded6c8;
    border-radius: 14px;
    background: #fbfaf7;

    transition: border-color 0.22s ease, box-shadow 0.22s ease,
    transform 0.22s ease;
}

.custom-file-upload:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

#fileName {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #666;
    font-weight: 600;
}

.upload-btn {
    flex: 0 0 auto;

    padding: 10px 18px;
    border-radius: 999px;

    background: linear-gradient(135deg, #fff8dc, #f6d57a);

    border: 1px solid #e3c56f;

    font-weight: 900;
    color: #111;

    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.custom-file-upload:hover .upload-btn {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);

    background: linear-gradient(135deg, #f6d57a, #d49a1e);
}
/* iPhone SE / very small screen fixes */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

@media (max-width: 380px) {
    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding: 54px 0;
    }

    .hero {
        padding-top: 92px;
    }

    .hero h1,
    .quote-intro h2,
    .section-title h2 {
        font-size: clamp(2.1rem, 13vw, 3rem);
        line-height: 0.95;
        letter-spacing: -0.06em;
    }

    .hero p,
    .quote-intro p,
    .section-title p {
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-actions,
    .cta-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .btn,
    .card-link,
    button,
    input[type="submit"] {
        width: 100%;
        justify-content: center;
    }

    .product-grid,
    .service-grid,
    .stats-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .card,
    .service-card,
    .stat-card,
    .quote-card {
        width: 100%;
        min-width: 0;
    }

    .card-top {
        flex-direction: column;
        gap: 10px;
    }

    .card-top h3 {
        max-width: 100%;
    }

    .price {
        text-align: left;
        min-width: 0;
    }

    .quote-card {
        padding: 24px 16px;
        border-radius: 22px;
    }

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

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        max-width: 100%;
        font-size: 16px;
    }

    .custom-file-upload {
        flex-direction: column;
        align-items: stretch;
    }

    .upload-btn {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 850px) {
    .quote-card {
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
        text-align: left;

        width: 100%;
        max-width: 100%;

        margin: 0 auto;
    }

    .quote-form,
    .quote-intro {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 560px) {
    .card {
        flex: 0 0 86%;
    }
}
.product-grid-wrap {
    background: transparent !important;
    margin: 40px;
}

.product-grid {
    background: transparent !important;
    box-shadow: none !important;
}

.products {
    background: var(--bg);
}
@media (max-width: 768px) {
    .product-grid {
        display: flex;
        gap: 20px;

        overflow-x: auto;
        overflow-y: visible;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;

        padding-bottom: 18px;

    }

    .product-grid::-webkit-scrollbar {
        height: 6px;
    }

    .product-grid::-webkit-scrollbar-thumb {
        background: rgba(212,154,30,.45);
        border-radius: 999px;
    }

    .card {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }
}
.footer-grid a {
    position: relative;
    transition:
            color .22s ease,
            transform .22s ease;
}

.footer-grid a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-grid a::after {
    content: "";
    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width .22s ease;
}

.footer-grid a:hover::after {
    width: 100%;
}
.main-nav .nav-cta::after {
    display: none;
}

.main-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
}
.main-nav a {
    position: relative;

    transition:
            color .22s ease,
            transform .22s ease;
}

.main-nav a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width .22s ease;
}

.main-nav a:hover::after {
    width: 100%;
}