/* =========================================================
   PRESTIGE BOOK BINDING
   MAIN WEBSITE STYLESHEET
========================================================= */

:root {
    --navy: #071525;
    --navy-dark: #040d18;
    --navy-light: #0d2035;

    --gold: #c9a45c;
    --gold-light: #e0c27c;

    --white: #ffffff;
    --text: #d9dee5;
    --muted: #9ca8b5;

    --border: rgba(201, 164, 92, 0.25);
}


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar {
    width: 100%;
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 8%;

    background: rgba(4, 13, 24, 0.96);

    border-bottom: 1px solid rgba(201, 164, 92, 0.15);

    position: relative;
    z-index: 100;
}

.logo img {
    width: 145px;
    display: block;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.navbar nav a {
    color: #d9dee5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.navbar nav a:hover {
    color: var(--gold);
}

.quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 20px;

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

    color: var(--gold);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition: all 0.25s ease;
}

.quote-button:hover {
    background: var(--gold);
    color: var(--navy-dark);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: calc(100vh - 82px);

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    padding: 70px 8%;

    background: var(--navy-dark);

    gap: 60px;
}

.hero-content {
    max-width: 650px;
}

.eyebrow {
    margin-bottom: 18px;

    color: var(--gold);

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

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(48px, 5.5vw, 82px);

    line-height: 1.02;

    font-weight: 700;

    letter-spacing: -0.04em;

    margin-bottom: 28px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-text {
    max-width: 580px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.gold-button,
.outline-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 13px 22px;

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

    letter-spacing: 0.08em;

    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.25s ease;
}

.gold-button {
    background: var(--gold);
    color: var(--navy-dark);

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

.gold-button:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.outline-button {
    background: transparent;

    color: var(--gold);

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

.outline-button:hover {
    background: var(--gold);
    color: var(--navy-dark);
}


/* HERO IMAGE + NAVY FADE */

.hero-image {
    position: relative;

    width: 100%;

    overflow: hidden;
}

.hero-image::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 22%;

    z-index: 2;

    background: linear-gradient(
        to right,
        var(--navy-dark),
        rgba(4, 13, 24, 0)
    );

    pointer-events: none;
}

.hero-image img {
    width: 100%;

    display: block;

    border: 1px solid rgba(201, 164, 92, 0.25);
}

.branch-label {
    position: absolute;

    bottom: 18px;
    left: 18px;

    padding: 12px 15px;

    background: rgba(4, 13, 24, 0.88);

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

    z-index: 3;
}

.branch-label span {
    display: block;

    color: var(--gold);

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

    letter-spacing: 0.12em;
}

.branch-label small {
    color: #c5ccd5;

    font-size: 9px;

    letter-spacing: 0.1em;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    width: 100%;

    padding: 100px 8%;

    background: var(--navy);
}

.section-heading {
    max-width: 760px;

    margin-bottom: 55px;
}

.section h2,
.facilities-heading h2,
.quote-section h2 {
    font-size: clamp(38px, 4vw, 60px);

    line-height: 1.05;

    letter-spacing: -0.035em;

    margin-bottom: 25px;
}

.section h2 span,
.facilities-heading h2 span,
.quote-section h2 span {
    color: var(--gold);
}

.section-text {
    max-width: 700px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   FACILITIES
   ORIGINAL PHOTOS — NO CROPPING
========================================================= */

.facilities-section {
    width: 100%;

    padding: 80px 8% 90px;

    background: var(--navy);
}

.facilities-heading {
    width: 100%;

    max-width: 700px;

    margin: 0 0 42px 0;
}

.facilities-heading > p:last-child {
    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.facilities-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;

    align-items: start;
}

.facility-card {
    background: var(--navy-dark);

    border: 1px solid rgba(201, 164, 92, 0.18);

    overflow: hidden;
}

.facility-image {
    width: 100%;

    overflow: hidden;

    background: var(--navy-dark);
}

.facility-image img {
    width: 100%;

    height: auto;

    display: block;
}

.facility-info {
    padding: 22px 24px 25px;
}

.facility-info span {
    color: var(--gold);

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

    letter-spacing: 0.14em;
}

.facility-info h3 {
    margin: 7px 0 4px;

    font-size: 21px;
}

.facility-info p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   SERVICES
========================================================= */

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.service-card {
    background: var(--navy-dark);

    border: 1px solid rgba(201, 164, 92, 0.15);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(201, 164, 92, 0.45);
}

.service-image {
    width: 100%;
    height: 190px;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.03);
}

.service-card-content {
    padding: 23px 24px 28px;
}

.service-number {
    color: var(--gold);

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

    letter-spacing: 0.15em;

    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 19px;

    line-height: 1.3;

    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   PREMIUM PRODUCTS
========================================================= */

.premium-section {
    background: var(--navy-dark);
}

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.product-card {
    background: var(--navy);

    border: 1px solid rgba(201, 164, 92, 0.16);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: rgba(201, 164, 92, 0.45);
}

.product-image {
    width: 100%;
    height: 260px;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-card-content {
    padding: 24px 24px 30px;
}

.product-label {
    display: block;

    color: var(--gold);

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

    letter-spacing: 0.13em;

    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 20px;

    line-height: 1.3;

    margin-bottom: 12px;
}

.product-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   WHY PRESTIGE
========================================================= */

.dark-section {
    background: var(--navy-dark);
}

.reasons {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 24px;

    margin-top: 60px;
}

.reasons > div {
    padding: 25px 0;

    border-top: 1px solid rgba(201, 164, 92, 0.25);
}

.reason-number {
    display: block;

    color: var(--gold);

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

    letter-spacing: 0.14em;

    margin-bottom: 18px;
}

.reasons strong {
    display: block;

    font-size: 18px;

    margin-bottom: 12px;
}

.reasons p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   REQUEST A QUOTE
========================================================= */

.quote-section {
    width: 100%;

    padding: 110px 8%;

    background: var(--navy);

    text-align: center;
}

.quote-section > p:not(.eyebrow) {
    max-width: 650px;

    margin: 0 auto 45px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}

.quote-form {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding: 38px;

    background: var(--navy-dark);

    border: 1px solid rgba(201, 164, 92, 0.2);

    text-align: left;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.form-group {
    display: flex;

    flex-direction: column;

    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 8px;

    color: #e6e9ed;

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

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    background: #081827;

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.12);

    outline: none;

    border-radius: 0;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6f7b87;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    background: #0a1b2c;
}

.form-group select {
    appearance: auto;

    cursor: pointer;
}

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.quote-submit {
    width: 100%;

    margin-top: 5px;

    font-family: inherit;
}

.quote-message {
    max-width: 900px;

    margin: 0 auto 25px;

    padding: 17px 20px;

    border: 1px solid;

    font-size: 14px;

    text-align: left;
}

.success-message {
    color: #d8e8dc;

    background: rgba(68, 130, 86, 0.12);

    border-color: rgba(101, 169, 119, 0.4);
}

.error-message {
    color: #efd9d9;

    background: rgba(150, 60, 60, 0.12);

    border-color: rgba(190, 90, 90, 0.4);
}

.quote-alternatives {
    margin-top: 38px;
}

.quote-alternatives > span {
    display: block;

    margin-bottom: 17px;

    color: var(--muted);

    font-size: 13px;
}

.quote-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 40px;

    margin-top: 55px;
}

.contact-item {
    padding-top: 22px;

    border-top: 1px solid rgba(201, 164, 92, 0.25);
}

.contact-item > span {
    color: var(--gold);

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

    letter-spacing: 0.14em;
}

.contact-item h3 {
    margin: 10px 0 7px;

    font-size: 19px;
}

.contact-item h3 a:hover {
    color: var(--gold);
}

.contact-item p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 55px 8% 25px;

    background: #030a12;

    border-top: 1px solid rgba(201, 164, 92, 0.15);
}

.footer-brand strong {
    display: block;

    color: var(--gold);

    font-size: 25px;

    letter-spacing: 0.12em;
}

.footer-brand p {
    margin-top: 6px;

    color: var(--muted);

    font-size: 13px;
}

.footer-contact {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 25px;
}

.footer-contact a {
    color: #d6dce3;

    font-size: 13px;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: #6f7b87;

    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .navbar nav {
        gap: 20px;
    }

    .hero {
        gap: 35px;
    }

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

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

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

}


/* =========================================================
   MOBILE / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .navbar {
        padding: 16px 6%;

        flex-wrap: wrap;

        gap: 15px;
    }

    .navbar nav {
        order: 3;

        width: 100%;

        justify-content: center;

        gap: 20px;
    }

    .navbar nav a {
        font-size: 10px;
    }

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

        padding: 70px 6%;

        min-height: auto;
    }

    .hero-image {
        order: 2;
    }

    .facilities-section {
        padding-left: 6%;
        padding-right: 6%;
    }

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

    .section {
        padding-left: 6%;
        padding-right: 6%;
    }

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

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

    .quote-section {
        padding-left: 6%;
        padding-right: 6%;
    }

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

    .footer-bottom {
        flex-direction: column;
    }

}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 600px) {

    .navbar {
        padding: 15px 5%;
    }

    .logo img {
        width: 125px;
    }

    .quote-button {
        padding: 10px 13px;

        font-size: 9px;
    }

    .navbar nav {
        gap: 13px;
    }

    .navbar nav a {
        font-size: 9px;
    }

    .hero {
        padding: 55px 5%;
    }

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

    .hero-text {
        font-size: 15px;
    }

    .section {
        padding: 75px 5%;
    }

    .section h2,
    .facilities-heading h2,
    .quote-section h2 {
        font-size: 40px;
    }

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

    .service-image {
        height: 220px;
    }

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

    .product-image {
        height: 270px;
    }

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

    .quote-section {
        padding: 75px 5%;
    }

    .quote-form {
        padding: 24px 20px;
    }

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

        gap: 0;
    }

    .quote-actions {
        flex-direction: column;
    }

    .quote-actions .outline-button {
        width: 100%;
    }

    .contact-grid {
        gap: 28px;
    }

    footer {
        padding-left: 5%;
        padding-right: 5%;
    }

}