/* =========================================
   ROYAL PRINTING PRESS
   Main Stylesheet
========================================= */

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #ffffff;
    color: #171717;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.narrow-container {
    max-width: 850px;
}

.section {
    padding: 110px 0;
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3 {
    line-height: 1.15;
    letter-spacing: -0.03em;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    color: #666666;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #a47b32;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1 span,
h2 span {
    display: block;
    color: #a47b32;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

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

.btn-primary {
    background: #171717;
    color: #ffffff;
}

.btn-primary:hover {
    background: #a47b32;
}

.btn-outline {
    border-color: #d6d6d6;
    background: transparent;
    color: #171717;
}

.btn-outline:hover {
    border-color: #171717;
    background: #171717;
    color: #ffffff;
}

.btn-whatsapp {
    background: #198754;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #146c43;
}

.btn-light {
    background: #ffffff;
    color: #171717;
}

.btn-large {
    min-height: 56px;
    padding-inline: 30px;
}

.btn-full {
    width: 100%;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #eeeeee;
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 165px;
    height: auto;
    object-fit: contain;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-navigation a {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #a47b32;
    transition: width 0.25s ease;
}

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

.header-actions {
    display: flex;
    gap: 10px;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #171717;
}


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

.hero {
    position: relative;
    padding: 80px 0 100px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #faf9f6 100%
        );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 70px;
}

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

.hero-content h1 {
    margin-bottom: 28px;
}

.hero-content > p {
    max-width: 590px;
    margin-bottom: 35px;
    font-size: 1.08rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 1.2rem;
}

.trust-item span {
    color: #777777;
    font-size: 0.75rem;
}

.trust-divider {
    width: 1px;
    height: 35px;
    background: #d9d9d9;
}

.hero-image {
    position: relative;
}

.hero-image > img {
    height: 650px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
}

.hero-floating-card {
    position: absolute;
    right: -25px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 22px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.floating-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    background: #171717;
    color: #ffffff;
}

.hero-floating-card strong,
.hero-floating-card small {
    display: block;
}

.hero-floating-card small {
    color: #777777;
}


/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-heading p {
    max-width: 650px;
    margin-top: 22px;
    font-size: 1rem;
}

.section-heading-row {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}


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

.services {
    background: #ffffff;
}

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

.service-card {
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #eeeeee;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.service-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    position: relative;
    padding: 30px;
}

.service-number {
    display: block;
    margin-bottom: 12px;
    color: #a47b32;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.service-content h3 {
    margin-bottom: 12px;
}

.service-content p {
    margin-bottom: 22px;
    font-size: 0.92rem;
}

.service-content a {
    color: #171717;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-content a:hover {
    color: #a47b32;
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: #f6f4ef;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-images img {
    height: 600px;
    object-fit: cover;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.text-link {
    display: inline-block;
    margin-top: 12px;
    font-weight: 700;
    border-bottom: 1px solid #a47b32;
    padding-bottom: 4px;
}


/* =========================================
   WHY US
========================================= */

.why-us {
    background: #171717;
    color: #ffffff;
}

.why-us p {
    color: #aaaaaa;
}

.why-us .section-heading h2 {
    color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #333333;
}

.why-card {
    min-height: 250px;
    padding: 35px;
    background: #171717;
}

.why-icon {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-bottom: 28px;
    border: 1px solid #a47b32;
    color: #a47b32;
}

.why-card h3 {
    margin-bottom: 15px;
    color: #ffffff;
}


/* =========================================
   PORTFOLIO
========================================= */

.portfolio {
    background: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.2;
}

.portfolio-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}


/* =========================================
   REVIEWS
========================================= */

.reviews {
    background: #f6f4ef;
}

.review-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
}

.review-summary strong {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    line-height: 1;
}

.review-stars {
    color: #a47b32;
    letter-spacing: 3px;
}

.review-summary span {
    color: #666666;
    font-size: 0.9rem;
}

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

.review-card {
    padding: 35px;
    background: #ffffff;
    border: 1px solid #e9e9e9;
}

.review-card p {
    margin: 20px 0;
}


/* =========================================
   LOCAL SEO
========================================= */

.local-seo {
    background: #ffffff;
}

.local-seo h2 {
    margin-bottom: 30px;
}

.local-seo p {
    margin-bottom: 18px;
    font-size: 1rem;
}


/* =========================================
   FAQ
========================================= */

.faq {
    background: #f6f4ef;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.faq-list {
    border-top: 1px solid #d7d7d7;
}

.faq-item {
    border-bottom: 1px solid #d7d7d7;
}

.faq-item summary {
    position: relative;
    padding: 24px 45px 24px 0;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 1.5rem;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    padding: 0 0 25px;
}


/* =========================================
   CTA
========================================= */

.cta {
    padding: 90px 0;
    background: #a47b32;
    color: #ffffff;
}

.cta .eyebrow {
    color: #ffffff;
    opacity: 0.85;
}

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

.cta h2 {
    max-width: 650px;
}

.cta h2 span {
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


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

.contact {
    background: #ffffff;
}

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

.contact-content h2 {
    margin-bottom: 25px;
}

.contact-content > p {
    max-width: 560px;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 25px;
}

.contact-detail {
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.contact-detail strong {
    display: block;
    margin-bottom: 5px;
}

.contact-detail p {
    margin: 0;
}

.contact-detail a {
    font-weight: 600;
}

.contact-detail a:hover {
    color: #a47b32;
}

.contact-form-wrapper {
    padding: 40px;
    background: #f6f4ef;
}

.contact-form h3 {
    margin-bottom: 30px;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    outline: none;
    background: #ffffff;
    color: #171717;
    transition: border-color 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #a47b32;
}


/* =========================================
   MAP
========================================= */

.map-section {
    width: 100%;
}

.map-section iframe {
    display: block;
}


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

.site-footer {
    background: #111111;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 80px 0;
}

.footer-brand img {
    width: 170px;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 300px;
    color: #999999;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
}

.footer-column ul {
    display: grid;
    gap: 11px;
}

.footer-column li,
.footer-column p {
    color: #999999;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column address {
    font-style: normal;
}

.footer-bottom {
    border-top: 1px solid #292929;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
}

.footer-bottom p {
    color: #777777;
    font-size: 0.78rem;
}


/* =========================================
   ACCESSIBILITY
========================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid #a47b32;
    outline-offset: 3px;
}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1050px) {

    .main-navigation ul {
        gap: 18px;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-image > img {
        height: 560px;
    }

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

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

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

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


/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 768px) {

    .container {
        width: min(100% - 30px, 600px);
    }

    .section {
        padding: 75px 0;
    }

    .header-inner {
        min-height: 72px;
    }

    .logo img {
        width: 145px;
    }

    .main-navigation {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        padding: 20px 15px 25px;
        background: #ffffff;
        border-bottom: 1px solid #eeeeee;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-navigation li {
        border-bottom: 1px solid #eeeeee;
    }

    .main-navigation li:last-child {
        border-bottom: 0;
    }

    .main-navigation a {
        display: block;
        padding: 14px 5px;
    }

    .main-navigation a::after {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 55px 0 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 12px;
        justify-content: space-between;
    }

    .trust-item strong {
        font-size: 1rem;
    }

    .trust-item span {
        font-size: 0.68rem;
    }

    .hero-image > img {
        height: 470px;
    }

    .hero-floating-card {
        right: 15px;
        bottom: 15px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-grid,
    .reviews-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-images img {
        height: 450px;
    }

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

    .why-card {
        min-height: auto;
    }

    .cta {
        padding: 70px 0;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-buttons .btn {
        flex: 1;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }

    .footer-bottom .container {
        align-items: flex-start;
        flex-direction: column;
    }
}


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

@media (max-width: 480px) {

    .hero-image > img {
        height: 400px;
    }

    .hero-floating-card {
        right: 10px;
        left: 10px;
        bottom: 10px;
    }

    .hero-trust {
        align-items: flex-start;
    }

    .trust-divider {
        height: 45px;
    }

    .service-content {
        padding: 25px;
    }

    .review-card {
        padding: 25px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
/* =========================================
   ROYAL PRINTING PRESS LOGO FIX
========================================= */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100px;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 150px;
    height: 100px;
    object-fit: contain;
    object-position: center;
}

.footer-brand img {
    display: block;
    width: 150px;
    height: 100px;
    object-fit: contain;
    object-position: center;
}


/* MOBILE */
@media (max-width: 768px) {

    .logo {
        width: 110px;
        height: 80px;
    }

    .logo img {
        width: 110px;
        height: 80px;
    }

    .footer-brand img {
        width: 120px;
        height: 85px;
    }

}