/* ===================================================
   GKP Interiors – STYLE.CSS (Clean & Unified)
   =================================================== */

/* 1. GLOBAL */
html, body {
    overflow-x: hidden;          /* kill any horizontal overflow */
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--obsidian);
    background: var(--warm-ivory);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--obsidian);
    margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p { margin-bottom: var(--space-sm); color: var(--stone-grey); }

a {
    color: var(--champagne-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--obsidian); }

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--champagne-gold);
    margin-bottom: var(--space-sm);
}

/* 2. LAYOUT */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section {
    padding: var(--space-xl) 0;
}

.bg-light { background: var(--warm-ivory); }
.bg-dark { background: var(--obsidian); }
.text-light, .text-light p, .text-light h1, .text-light h2, .text-light h3 { color: var(--white); }

.text-center { text-align: center; }

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

@media (max-width: 992px) {
    .split-layout { grid-template-columns: 1fr; }
}

/* 3. BUTTONS */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--champagne-gold);
    color: var(--obsidian);
    border-color: var(--champagne-gold);
}
.btn-primary:hover {
    background: transparent;
    color: var(--champagne-gold);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border-color: var(--obsidian);
    color: var(--obsidian);
}
.btn-outline:hover {
    background: var(--obsidian);
    color: var(--white);
    transform: translateY(-3px);
}

.dark-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}
.dark-section .btn-outline:hover {
    background: var(--white);
    color: var(--obsidian);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('../images/hero/interior.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-tag {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--champagne-gold);
    margin-bottom: 1rem;
}

.hero-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 6vw, 3.6rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.75rem 1.8rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.hero .btn-outline {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    background: transparent;
}
.hero .btn-outline:hover {
    background: var(--champagne-gold);
    border-color: var(--champagne-gold);
    color: #fff;
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }
    .hero-content h2 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-buttons .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* 5. ABOUT PREVIEW IMAGE (and generic image frames) */
.about-image .image-frame,
.service-detail .image-frame {
    width: 100%;
    height: 520px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-image .image-frame img,
.service-detail .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .about-image .image-frame,
    .service-detail .image-frame {
        height: 350px;
    }
}

/* 6. SERVICE CARDS (centered, light background) */
.service-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(184,154,106,0.08);
    border: 1px solid rgba(184,154,106,0.25);
    color: var(--champagne-gold);
    font-size: 26px;
    transition: 0.35s;
}

.service-card:hover .service-card__icon {
    background: var(--champagne-gold);
    color: #fff;
    border-color: var(--champagne-gold);
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: var(--obsidian);
}

.service-card p {
    max-width: 280px;
    margin: 0 auto;
    color: var(--stone-grey);
}

/* 7. FEATURED & PORTFOLIO PROJECTS (3 cards row, clean layout) */
.project-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.project-card__image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.05);
}

.project-card__body {
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.project-card__type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--champagne-gold);
    font-weight: 600;
}

.project-card__title {
    font-size: 1.35rem;
    font-family: var(--font-display);
    color: var(--obsidian);
    margin: 0.25rem 0 0.4rem;
    line-height: 1.3;
}

.project-card__desc {
    font-size: 0.95rem;
    color: var(--stone-grey);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.project-card__meta {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    font-size: 0.85rem;
    color: var(--stone-grey);
}

.project-card__meta i {
    color: var(--champagne-gold);
    margin-right: 4px;
}

@media (max-width: 992px) {
    .project-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-row {
        grid-template-columns: 1fr;
    }
    .project-card__image {
        height: 260px;
    }
    .project-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }
}

/* 8. WHY US + PROCESS – Glass Cards (shared) */
.why-us,
.process-section {
    position: relative;
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.why-us {
    background-image: linear-gradient(rgba(23,23,23,0.72), rgba(23,23,23,0.72)), url('../images/backgrounds/why-us.jpg');
}
.process-section {
    background-image: linear-gradient(rgba(23,23,23,0.72), rgba(23,23,23,0.72)), url('../images/backgrounds/process-bg.jpg');
}

.why-us__overlay,
.process-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.45));
}

.why-us .container,
.process-section .container {
    position: relative;
    z-index: 2;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 80px;
}

.why-us h2, .why-us p,
.process-section h2, .process-section p {
    color: #ffffff;
}

.why-us .eyebrow,
.process-section .eyebrow {
    color: #B89A6A;
}

.process__grid {
    display: grid;
    gap: 30px;
}
.why-us .process__grid {
    grid-template-columns: repeat(4, 1fr);
}
.process-section .process__grid {
    grid-template-columns: repeat(3, 1fr);
}

.process-card {
    padding: 45px 35px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    transition: 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    text-align: center;
}

.process-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
    border-color: rgba(184,154,106,0.45);
}

.process-card h3 {
    color: #ffffff;
    margin: 25px 0 18px;
    font-size: 1.45rem;
}

.process-card p {
    color: rgba(255,255,255,0.82);
    margin: 0;
}

.process-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(184,154,106,0.12);
    border: 1px solid rgba(184,154,106,0.35);
    color: #B89A6A;
    font-size: 28px;
    transition: 0.35s;
}

.process-card:hover .process-card__icon {
    background: #B89A6A;
    color: #ffffff;
}

@media (max-width: 992px) {
    .process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .why-us,
    .process-section {
        padding: 90px 0;
        background-attachment: scroll;
    }
    .process__grid {
        grid-template-columns: 1fr;
    }
}

/* 9. STATISTICS */
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--space-md);
    text-align: center;
}
.stat-item { font-size: 1.8rem; }
.stat-number {
    font-size: 2.8rem;
    font-family: var(--font-display);
    color: var(--champagne-gold);
    display: inline;
}

/* 10. CTA SECTION */
.cta-section {
    background: var(--obsidian);
    color: var(--white);
    padding: var(--space-xl) 0;
    text-align: center;
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: var(--space-md); }

/* 11. TESTIMONIALS */
.testimonial-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
}
.testimonial-card p { font-style: italic; margin-bottom: var(--space-md); }
.client-info { display: flex; align-items: center; gap: var(--space-sm); }
.client-info img { width: 48px; height: 48px; border-radius: 50%; }

/* 12. CONTACT FORM */
.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: var(--space-sm);
    border: 1px solid #ddd;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--radius-sm);
}
.full-width { grid-column: span 2; }

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
}

/* 13. FOOTER (4 columns, brand + contact merged) */
.site-footer {
    background: #111;
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-grid h4 {
    color: var(--champagne-gold);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid ul li {
    margin-bottom: 0.6rem;
}

.footer-grid a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.2s;
}
.footer-grid a:hover {
    color: var(--champagne-gold);
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.8rem;
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: 0.3s;
}
.footer-social a:hover {
    background: var(--champagne-gold);
    border-color: var(--champagne-gold);
    color: #fff;
}

.footer-contact-info ul li {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-newsletter p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
}
.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}
.newsletter-form button {
    padding: 0 1.2rem;
    background: var(--champagne-gold);
    border: none;
    color: #111;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: 0.3s;
}
.newsletter-form button:hover {
    background: #a98553;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-md);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom p {
    color: inherit;
    margin: 0;
}
.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: var(--champagne-gold);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* 14. HEADER v2.0 – Modern Luxury */
.gkp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 96px;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: height 0.45s ease, background-color 0.45s ease, border-color 0.45s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.gkp-header.scrolled {
    height: 78px;
    background: rgba(247,245,240,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.gkp-header.header-light {
    background: #f7f5f0;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.gkp-header__container {
    width: min(92%, 1320px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.gkp-header__logo {
    text-decoration: none;
    line-height: 1;
    transition: opacity 0.35s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.gkp-header__logo--primary {
    font-family: var(--font-display);
    font-size: 2.25rem;
    letter-spacing: 0.08em;
    color: #fff;
    transition: color 0.35s;
}
.gkp-header__logo--secondary {
    font-size: 0.68rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
    margin-top: 6px;
    transition: color 0.35s;
}
.gkp-header.scrolled .gkp-header__logo--primary,
.gkp-header.header-light .gkp-header__logo--primary {
    color: #171717;
}
.gkp-header.scrolled .gkp-header__logo--secondary,
.gkp-header.header-light .gkp-header__logo--secondary {
    color: #8c8c86;
}

/* Navigation */
.gkp-nav__list {
    display: flex;
    gap: 48px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.gkp-nav__link {
    position: relative;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.35s;
}
.gkp-header.scrolled .gkp-nav__link,
.gkp-header.header-light .gkp-nav__link {
    color: #171717;
}
.gkp-nav__link:hover {
    color: #b89a6a;
}
.gkp-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: #b89a6a;
    transition: width 0.35s;
}
.gkp-nav__link:hover::after,
.gkp-nav__link.active::after {
    width: 100%;
}

/* CTA button */
.gkp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border: 1px solid rgba(255,255,255,0.45);
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.35s;
    white-space: nowrap;
}
.gkp-cta:hover {
    background: #b89a6a;
    border-color: #b89a6a;
    color: #fff;
}
.gkp-header.scrolled .gkp-cta,
.gkp-header.header-light .gkp-cta {
    color: #171717;
    border-color: #171717;
}
.gkp-header.scrolled .gkp-cta:hover,
.gkp-header.header-light .gkp-cta:hover {
    background: #b89a6a;
    color: #fff;
    border-color: #b89a6a;
}

/* Mobile toggle */
.gkp-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.35s;
}
.gkp-header.scrolled .gkp-mobile-toggle,
.gkp-header.header-light .gkp-mobile-toggle {
    color: #171717;
}

/* Mobile overlay (ivory) */
.gkp-mobile-overlay {
    position: fixed;
    inset: 0;
    background: #f7f5f0;
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0s 0.4s;
}
.gkp-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0s;
}
.gkp-mobile-overlay__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}
.gkp-mobile-overlay__content a {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: #171717;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.gkp-mobile-overlay__content a:hover {
    color: #b89a6a;
}
.gkp-mobile-divider {
    width: 60px;
    height: 1px;
    background: rgba(0,0,0,0.15);
    margin: 1rem 0;
}
.gkp-mobile-cta {
    font-size: 1.8rem !important;
    font-weight: 500 !important;
    color: #b89a6a !important;
    border-bottom: 2px solid #b89a6a;
    padding-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive header */
@media (max-width: 1024px) {
    .gkp-nav,
    .gkp-cta {
        display: none;
    }
    .gkp-mobile-toggle {
        display: block;
    }
}

/* 15. INNER PAGE HERO */
.page-hero {
    position: relative;
    width: 100vw;
    height: 60vh;
    min-height: 400px;
    background-color: #171717;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}
.page-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-hero h1 {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
}
.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}
.page-hero .eyebrow {
    color: var(--champagne-gold);
}

/* 16. MISSION/VISION TWO-COLUMN GRID */
.process__grid--two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .process__grid--two {
        grid-template-columns: 1fr;
    }
}

/* 17. CORE VALUES GRID (2 columns) */
.core-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .core-values__grid {
        grid-template-columns: 1fr;
    }
}

/* 18. PROCESS PAGE WHITE CARDS (3 columns) */
.process__grid--three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .process__grid--three {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process__grid--three {
        grid-template-columns: 1fr;
    }
}

/* 19. MOBILE CARD SLIDER */
@media (max-width: 768px) {
    .card-grid,
    .project-row,
    .process__grid,
    .core-values__grid,
    .process__grid--two,
    .process__grid--three {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.2rem;
        padding-bottom: 1rem;
    }

    .card-grid .service-card,
    .project-row .project-card,
    .process__grid .process-card,
    .core-values__grid .service-card,
    .process__grid--two .process-card,
    .process__grid--three .service-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin-right: 0;
    }

    .card-grid::-webkit-scrollbar,
    .project-row::-webkit-scrollbar,
    .process__grid::-webkit-scrollbar,
    .core-values__grid::-webkit-scrollbar {
        display: none;
    }
    .card-grid,
    .project-row,
    .process__grid,
    .core-values__grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* 20. SLIDER ARROWS */
.slider-wrapper {
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--white);
    border: 1px solid var(--champagne-gold);
    color: var(--champagne-gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    display: none;
}

.slider-arrow:hover {
    background: var(--champagne-gold);
    color: #fff;
}

.slider-arrow--left {
    left: -10px;
}

.slider-arrow--right {
    right: -10px;
}

@media (max-width: 768px) {
    .slider-wrapper {
        margin: 0 10px;
    }
}
/* ===== MOBILE FIXES (place at the very end of style.css) ===== */

/* 1. Hide the "Start Project" CTA on mobile, show only the hamburger */
@media (max-width: 1024px) {
    .gkp-cta {
        display: none !important;
    }
    .gkp-mobile-toggle {
        display: block;
    }
}

/* 2. Mobile card slider (scroll‑snap) */
@media (max-width: 768px) {
    /* Turn all card grids into horizontal sliders */
    .card-grid,
    .project-row,
    .process__grid,
    .core-values__grid,
    .process__grid--two,
    .process__grid--three {
        display: flex !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.2rem;
        padding-bottom: 1rem;
    }

    /* Each card snaps into place */
    .card-grid .service-card,
    .project-row .project-card,
    .process__grid .process-card,
    .core-values__grid .service-card,
    .process__grid--two .process-card,
    .process__grid--three .service-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin-right: 0;
    }

    /* Hide scrollbar for a clean look */
    .card-grid::-webkit-scrollbar,
    .project-row::-webkit-scrollbar,
    .process__grid::-webkit-scrollbar,
    .core-values__grid::-webkit-scrollbar {
        display: none;
    }
    .card-grid,
    .project-row,
    .process__grid,
    .core-values__grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}
/* ===== MOBILE HEADER FIX – hide all CTAs, show only MENU ===== */
@media (max-width: 1024px) {
    /* Hide both the circular and the standard outline CTA */
    .gkp-cta-circle,
    .gkp-cta {
        display: none !important;
    }

    /* Ensure the hamburger menu is visible */
    .gkp-mobile-toggle {
        display: block !important;
    }
}
/* ===== Smaller mobile menu links ===== */
@media (max-width: 1024px) {
    .gkp-mobile-overlay__content a {
        font-size: 2rem;        /* down from 2.8rem */
    }
}