/* =========================================================
  GAMA ROOFING — Global Luxury System (Premium)
  Project: GAMA ROOFING INC
  Notes:
  - Premium palette: Charcoal + Gold + Ivory
  - Smooth reveal: 250px from bottom (sr-item)
  - Gutenberg / Blocksy friendly
========================================================= */

:root {
    /* Brand */
    --gama-charcoal: #0F141A;
    --gama-ink: #0B0F14;
    --gama-gold: #D4AF37;
    --gama-ivory: #F5F2EA;

    /* Text */
    --gama-text: #111827;
    --gama-muted: rgba(17, 24, 39, .70);
    --gama-light: #E5E7EB;
    --gama-light-muted: rgba(229, 231, 235, .78);

    /* UI */
    --gama-radius: 22px;
    --gama-shadow: 0 18px 50px rgba(11, 15, 20, .18);
    --gama-container: 1200px;
}

[data-vertical-spacing*=top] {
    padding-top: 0 !important;
}

[data-vertical-spacing*=bottom] {
    padding-bottom: 0 !important;
}

[data-header*="type-1"] #offcanvas .ct-panel-inner {
    background:
        radial-gradient(1200px 600px at 20% 10%, rgba(212, 175, 55, .14), transparent 55%),
        radial-gradient(900px 500px at 85% 20%, rgba(212, 175, 55, .08), transparent 60%),
        linear-gradient(180deg, var(--gama-charcoal), var(--gama-ink)) !important;
}

nav[class*=menu] li[class*=current-menu-]>.ct-menu-link,
nav[class*=menu] li[class*=current-menu-]>.ct-sub-menu-parent,
nav[class*=menu] li:hover>.ct-menu-link,
nav[class*=menu] li:hover>.ct-sub-menu-parent {
    color: #fee87f !important;
}

/* Sticky shadow only */
#header[data-sticky*="yes"] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

section {
    margin-bottom: 0 !important;
}

/* =========================================================
  Container helper
========================================================= */
.gama-container {
    max-width: var(--gama-container);
    margin: 0 auto;
    padding: 0 24px !important;
}

/* =========================================================
  Buttons
========================================================= */
.gama-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    will-change: transform;
}

.gama-btn-gold {
    background: linear-gradient(180deg, #fee87f 0%, #bc8e1e 100%) !important;
    color: var(--gama-ink);
    box-shadow: 0 16px 40px rgba(212, 175, 55, .22);
}

.gama-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(212, 175, 55, .28);
}

.gama-btn-outline {
    background: transparent;
    border: 1px solid rgba(11, 15, 20, .22);
    color: var(--gama-ink);
}

.gama-btn-outline:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 55, .14);
    box-shadow: 0 18px 46px rgba(212, 175, 55, .18), 0 0 0 6px rgba(212, 175, 55, .08);
    transform: translateY(-3px);
    color: #0b0f14;
}

/* =========================================================
  Ultra Smooth Reveal (250px)
  Usage:
  - Add class: sr-item
  - Optional stagger: data-sr="0..n"
========================================================= */
/* ===== Scroll Reveal (Global) ===== */
.sr-item {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(3px);
    transition:
        opacity .45s cubic-bezier(.2, .8, .2, 1),
        transform .45s cubic-bezier(.2, .8, .2, 1),
        filter .45s cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform, filter;
}

.sr-item.is-inview {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .sr-item {
        transition: none;
        transform: none;
        opacity: 1;
        filter: none;
    }
}

/* =========================================================
  Section spacing baseline
========================================================= */
.gama-section {
    padding: 96px 0 !important;
}

@media (max-width: 920px) {
    .gama-section {
        padding: 72px 24px !important;
    }
}

@media (max-width: 560px) {
    .gama-section {
        padding: 60px 24px !important;
    }

    .gama-floating {
        padding: 70px 20px !important;
    }
}

/* =========================================================
  HERO — DARK LUXURY (Gutenberg)
  Works with HTML:
  - .gama-hero-dark
  - .gama-hero-dark__grid
  - .gama-badge
  - .gama-title / .gama-title-accent
  - .gama-subtitle
  - .gama-hero-buttons
  - .gama-hero-dark__image
========================================================= */

.gama-hero-dark {
    background:
        radial-gradient(1200px 600px at 20% 10%, rgba(212, 175, 55, .14), transparent 55%),
        radial-gradient(900px 500px at 85% 20%, rgba(212, 175, 55, .08), transparent 60%),
        linear-gradient(180deg, var(--gama-charcoal), var(--gama-ink));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.gama-hero-dark::after {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(212, 175, 55, .14), transparent);
    opacity: .15;
    transform: translateY(-40%);
}

.gama-hero-dark__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 60px;
}

.gama-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .10);
    border: 1px solid rgba(212, 175, 55, .35);
    color: var(--gama-gold);
    font-weight: 800;
    letter-spacing: .2px;
    font-size: 14px;
}

.gama-title {
    margin: 18px 0 12px;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    color: var(--gama-light);
}

.gama-title-accent {
    display: block;
    margin-top: 10px;
    font-size: 20px;
    color: var(--gama-gold);
    font-weight: 500;
    letter-spacing: .2px;
}

.gama-subtitle {
    margin: 0;
    font-size: 18px;
    color: var(--gama-light-muted);
    max-width: 56ch;
    line-height: 1.7;
}

.gama-hero-buttons {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Make outline button readable on dark hero */
.gama-hero-dark .gama-btn-outline {
    border-color: rgba(212, 175, 55, .60);
    color: var(--gama-gold);
}

.gama-hero-dark .gama-btn-outline:hover {
    background: var(--gama-gold);
    color: var(--gama-ink);
    box-shadow: 0 18px 50px rgba(212, 175, 55, .18);
}

/* Image */
.gama-hero-dark__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, .18);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
    transform: scale(1.01);
}

/* Responsive */
@media (max-width: 992px) {
    .gama-hero-dark {
        min-height: auto;
        padding: 70px 0 90px 0;
    }

    .gama-hero-dark__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .gama-hero-dark__image img {
        height: 450px;
    }
}

@media (max-width: 560px) {
    .gama-hero-dark {
        padding: 40px 0 110px 0;
    }

    .gama-badge {
        position: absolute;
        bottom: -60px;
        right: 23px;
    }
}




/* =========================================================
  GLOBAL IMAGE HOVER ZOOM (Premium Effect)
  Applies to all images inside framed containers
========================================================= */

/* Make sure parent hides overflow */
.gama-hero-dark__image {
    overflow: hidden;
    border-radius: 20px;
}

/* Smooth zoom setup */
.gama-hero-dark__image img {
    transition: transform 1.2s cubic-bezier(.2, .8, .2, 1);
}

/* Hover effect */
.gama-hero-dark__image:hover img {
    transform: scale(1.13);
}

/* Universal premium image zoom */
.gama-frame {
    overflow: hidden;
    border-radius: var(--gama-radius);
}

.gama-frame img {
    transition: transform 1.2s cubic-bezier(.2, .8, .2, 1);
}

.gama-frame:hover img {
    transform: scale(1.13);
}



/* =========================================================
  Prevent layout jump on load
========================================================= */

/* Reserve hero space */
.gama-hero-dark {
    /* stable first paint */
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* Ensure grid fills hero */
.gama-hero-dark__grid {
    width: 100%;
}

/* Reserve image space (prevents shift while image loads) */
.gama-hero-dark__image {
    overflow: hidden;
    border-radius: 20px;
}

.gama-hero-dark__image img {
    width: 100%;
    height: 500px;
    /* already in your CSS, keep it */
    object-fit: cover;
    display: block;
}

/* =========================================================
  HERO FULL HEIGHT (Premium Viewport Version)
========================================================= */

/* Make hero full screen minus header */
.gama-hero-dark {
    min-height: calc(100vh - 80px);
    /* 80px = примерная высота header */
    display: flex;
    align-items: center;
}

/* Ensure grid fills full height */
.gama-hero-dark__grid {
    width: 100%;
}

/* Improve vertical balance */
.gama-hero-dark__content {
    padding-top: 20px;
    padding-bottom: 20px;
}






/* =========================================================
  FIX: Blocksy / theme link styles overriding buttons
========================================================= */

.gama-hero-buttons a.gama-btn {
    display: inline-flex !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 5 !important;
}

.gama-hero-buttons {
    position: relative;
    z-index: 5;
}



/* =========================================================
  FIX: Hero overlay should never cover content
========================================================= */
.gama-hero-dark::after {
    z-index: 0;
}

.gama-hero-dark__grid {
    position: relative;
    z-index: 1;
}




/* =========================================================
  Mobile CTA layout
========================================================= */
@media (max-width: 560px) {
    .gama-hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .gama-hero-buttons .gama-btn {
        width: 100%;
        justify-content: center;
    }
}




/* =========================================================
  Premium button micro-interactions
========================================================= */
.gama-btn {
    transform: translateZ(0);
}

.gama-btn:active {
    transform: translateY(0px) scale(.98);
}

.gama-btn-gold:hover {
    box-shadow:
        0 22px 60px rgba(212, 175, 55, .28),
        0 0 0 6px rgba(212, 175, 55, .10);
}



/* =========================================================
  HERO CTA — Make buttons more visible (Premium)
========================================================= */

/* Gold button: stronger contrast + glow */
.gama-btn-gold {
    box-shadow:
        0 18px 46px rgba(212, 175, 55, .28),
        0 0 0 6px rgba(212, 175, 55, .10);
}

/* Outline hover: premium glow */
.gama-hero-dark .gama-btn-outline:hover,
.gama-about-area__ctas .gama-btn-outline:hover {
    background: rgba(212, 175, 55, .14);
    box-shadow:
        0 18px 46px rgba(212, 175, 55, .18),
        0 0 0 6px rgba(212, 175, 55, .08);
    transform: translateY(-3px);
    color: #cba243;
}

/* Outline button: brighter border + subtle background */
.gama-process__ctas .gama-btn-outline {
    border-width: 2px;
    background: rgba(212, 175, 55, .06);
    border: 2px solid #c0942d;
    color: #c0942d;
}

/* Outline hover: premium glow */
.gama-process__ctas .gama-btn-outline:hover {
    background: rgba(212, 175, 55, .14);
    box-shadow:
        0 18px 46px rgba(212, 175, 55, .18),
        0 0 0 6px rgba(212, 175, 55, .08);
    transform: translateY(-3px);
    color: #cba243;
}






/* =========================================================
  PREMIUM GOLD BUTTON — STRONG VISUAL EFFECT
========================================================= */

.gama-btn-gold {
    position: relative;
    overflow: hidden;
    transition: all .35s ease;

    box-shadow:
        0 22px 60px rgba(212, 175, 55, .35),
        0 0 0 4px rgba(212, 175, 55, .15);
}

/* Hover glow */
.gama-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow:
        0 30px 80px rgba(212, 175, 55, .55),
        0 0 0 8px rgba(212, 175, 55, .20);
    color: #0c1015;
}

/* Click press effect */
.gama-btn-gold:active {
    transform: translateY(0px) scale(.97);
}

/* =========================================================
  Gold shimmer effect
========================================================= */

.gama-btn-gold::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, .4) 50%,
            transparent 100%);
    transform: rotate(25deg);
    transition: all .7s ease;
}

.gama-btn-gold:hover::after {
    left: 130%;
}



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

.gama-services {
    background: #F6F4EF;
}

.gama-kicker {
    text-align: center;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.gama-section-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    margin: 0 0 14px;
    color: #0B0F14;
}

.gama-section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: rgba(11, 15, 20, .70);
    line-height: 1.7;
}

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

.gama-service-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gama-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .10);
}

.gama-service-image {
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 18px;
}

.gama-service-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .6s ease;
}

.gama-service-card:hover img {
    transform: scale(1.13);
}

.gama-service-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
}

.gama-service-card p {
    color: rgba(11, 15, 20, .70);
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 992px) {
    .gama-services-grid {
        grid-template-columns: 1fr;
    }
}







/* =========================================================
  WHY CHOOSE US — Luxury Trust Block
========================================================= */

.gama-why {
    background:
        radial-gradient(1000px 600px at 20% 10%, rgba(212, 175, 55, .12), transparent 60%),
        linear-gradient(180deg, #0F141A, #0B0F14);
    color: #ffffff;
}

.gama-why__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: center;
}

.gama-why__copy {
    max-width: 640px;
}

.gama-why__title {
    margin: 10px 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 3.6vw, 48px);
    line-height: 1.12;
    color: #0B0F14;
}

.gama-why__lead {
    margin: 0 0 18px;
    color: rgba(11, 15, 20, .72);
    line-height: 1.7;
    font-size: 18px;
}

.gama-why__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.gama-why__list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(11, 15, 20, .78);
    line-height: 1.6;
}

.gama-why__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--gama-gold);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .14);
    margin-top: 8px;
    flex: 0 0 auto;
}

.gama-why__cta {
    margin-top: 22px;
}








/* =========================================================
  SECTION: GAMA Signature Advantage (Luxury Split Gallery)
  Project: GAMA ROOFING INC
  Notes:
  - Completely new block design
  - Premium dark background + gold accents
  - Gallery frames + luxury cards
========================================================= */

.gama-advantage {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(1200px 700px at 18% 12%, rgba(212, 175, 55, .16), transparent 58%),
        radial-gradient(900px 520px at 85% 18%, rgba(212, 175, 55, .10), transparent 60%),
        linear-gradient(180deg, #0F141A, #0B0F14);
    color: #fff;
}

.gama-advantage::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .12), transparent);
    opacity: .12;
    transform: translateY(-45%);
}

.gama-advantage__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

/* =========================
  LEFT: Gallery
========================= */

.gama-advantage__gallery {
    position: relative;
    display: grid;
    gap: 16px;
    align-content: start;
}

.gama-advantage__frame {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, .22);
    background: rgba(255, 255, 255, .03);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
}

.gama-advantage__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}

/* Hover zoom for all images in this block */
.gama-advantage__frame:hover img {
    transform: scale(1.12);
}

/* Luxury glow overlay */
.gama-advantage__frameGlow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 420px at 25% 18%, rgba(212, 175, 55, .24), transparent 55%),
        radial-gradient(900px 520px at 85% 80%, rgba(212, 175, 55, .10), transparent 60%);
    opacity: .85;
}

.gama-advantage__frame--main {
    height: 420px;
}

.gama-advantage__mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.gama-advantage__frame--mini {
    height: 170px;
    border-radius: 22px;
}

/* Badge */
.gama-advantage__badge {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .10);
    border: 1px solid rgba(212, 175, 55, .30);
    color: var(--gama-gold);
    font-weight: 800;
    letter-spacing: .3px;
    font-size: 13px;
}

.gama-advantage__badgeDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--gama-gold);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .18);
}

/* =========================
  RIGHT: Content
========================= */

.gama-advantage__kicker {
    margin: 0 0 10px;
    color: var(--gama-gold);
    font-weight: 800;
    letter-spacing: .6px;
}

.gama-advantage__title {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 3.6vw, 54px);
    line-height: 1.10;
    color: #fff;
}

.gama-advantage__titleAccent {
    display: block;
    margin-top: 10px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    color: #fee87f;
    letter-spacing: .2px;
}

.gama-advantage__lead {
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .86);
    max-width: 66ch;
}

/* Cards grid */
.gama-advantage__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.gama-advantage__card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 18px 16px;
    border-radius: 18px;
    background:
        radial-gradient(800px 380px at 20% 15%, rgba(212, 175, 55, .14), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border: 1px solid rgba(212, 175, 55, .18);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .40);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.gama-advantage__card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, .34);
    box-shadow: 0 32px 85px rgba(0, 0, 0, .52);
}

.gama-advantage__icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, .16);
    border: 1px solid rgba(212, 175, 55, .40);
    color: var(--gama-gold);
    font-weight: 900;
    flex: 0 0 auto;
    margin-top: 2px;
}

.gama-advantage__cardTitle {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .2px;
}

.gama-advantage__cardText {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .82);
}

.gama-advantage__cta {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.gama-advantage__micro {
    margin-top: 14px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .68);
}

/* Make outline button readable on dark section */
.gama-advantage .gama-btn-outline {
    border-color: rgba(212, 175, 55, .55);
    color: var(--gama-gold);
}

.gama-advantage .gama-btn-outline:hover {
    background: rgba(212, 175, 55, .14);
    box-shadow: 0 18px 46px rgba(212, 175, 55, .18), 0 0 0 6px rgba(212, 175, 55, .08);
    transform: translateY(-3px);
    color: #cba243;
}

/* =========================
  Responsive
========================= */

@media (max-width: 992px) {
    .gama-advantage {
        padding: 90px 0;
    }

    .gama-advantage__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .gama-advantage__frame--main {
        height: 360px;
    }
}

@media (max-width: 560px) {
    .gama-advantage {
        padding: 78px 0;
    }

    .gama-advantage__frame--main {
        height: 300px;
    }

    .gama-advantage__frame--mini {
        height: 140px;
    }

    .gama-advantage__cards {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FIX: Ensure CTA reveal works properly
========================================================= */

.gama-advantage__cta.sr-item {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .7s cubic-bezier(.2, .8, .2, 1),
        transform .7s cubic-bezier(.2, .8, .2, 1);
}

.gama-advantage__cta.sr-item.is-inview {
    opacity: 1;
    transform: translateY(0);
}




/* =========================================================
  GLOBAL Scroll Reveal (sr-item) — universal + safe
  Works for: cards, text, buttons, etc.
========================================================= */



/* Safety: if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    .sr-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}






/* =========================================================
  GAMA — Luxury Assurance (Light)
========================================================= */

.gama-assure {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(900px 520px at 18% 12%, rgba(212, 175, 55, .14), transparent 60%),
        radial-gradient(780px 480px at 86% 18%, rgba(15, 42, 68, .08), transparent 60%),
        linear-gradient(180deg, #F7F4EE, #F3EFE7);
    color: #0B0F14;
}

/* soft luxury grain */
.gama-assure::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .45), transparent 55%);
    opacity: .75;
}

.gama-assure__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: start;
}

.gama-assure__kicker {
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: .7px;
    color: var(--gama-gold, #D4AF37);
}

.gama-assure__title {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 3.6vw, 46px);
    line-height: 1.08;
    color: #0B0F14;
}

.gama-assure__accent {
    color: #0F2A44;
    position: relative;
}

.gama-assure__accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .08em;
    height: .22em;
    background: linear-gradient(90deg, rgba(212, 175, 55, .55), rgba(212, 175, 55, 0));
    border-radius: 999px;
    z-index: -1;
}

.gama-assure__lead {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(11, 15, 20, .78);
    max-width: 64ch;
}

.gama-assure__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}

.gama-assure__pill {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 42, 68, .10);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
    color: rgba(11, 15, 20, .82);
    font-size: 13px;
    letter-spacing: .2px;
}

.gama-assure__mini {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 18px;
}

.gama-assure__miniCard {
    border-radius: 22px;
    padding: 16px 16px 14px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(212, 175, 55, .18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .08);
}

.gama-assure__miniTop {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.gama-assure__miniNum {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--gama-gold, #D4AF37);
}

.gama-assure__miniLabel {
    font-weight: 800;
    letter-spacing: .25px;
    color: #0F2A44;
    font-size: 13px;
}

.gama-assure__miniText {
    margin: 0;
    color: rgba(11, 15, 20, .72);
    line-height: 1.55;
    font-size: 13px;
}

.gama-assure__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 6px;
}

.gama-assure__note {
    margin: 12px 0 0;
    font-size: 13px;
    color: rgba(11, 15, 20, .62);
}

/* ===== Right cards ===== */

.gama-assure__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.gama-assureCard {
    position: relative;
    border-radius: 26px;
    padding: 18px 18px 16px;
    background:
        radial-gradient(500px 240px at 20% 10%, rgba(212, 175, 55, .18), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .62));
    border: 1px solid rgba(15, 42, 68, .10);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .10);
    overflow: hidden;
}

.gama-assureCard::after {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background: radial-gradient(circle at 85% 20%, rgba(15, 42, 68, .12), transparent 55%);
    opacity: .6;
}

.gama-assureCard__icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(212, 175, 55, .14);
    border: 1px solid rgba(212, 175, 55, .28);
    color: #7A5F14;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.gama-assureCard__title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: #0B0F14;
    position: relative;
    z-index: 1;
}

.gama-assureCard__text {
    margin: 0;
    line-height: 1.65;
    font-size: 13.5px;
    color: rgba(11, 15, 20, .72);
    position: relative;
    z-index: 1;
}

/* hover (desktop) */
@media (hover:hover) and (pointer:fine) {
    .gama-assureCard {
        transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .gama-assureCard:hover {
        transform: translateY(-6px);
        border-color: rgba(212, 175, 55, .30);
        box-shadow: 0 40px 120px rgba(0, 0, 0, .14);
    }
}

/* ===== Responsive ===== */

@media (max-width: 992px) {
    .gama-assure {
        padding: 92px 0;
    }

    .gama-assure__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 560px) {
    .gama-assure {
        padding: 78px 0;
    }

    .gama-assure__mini {
        grid-template-columns: 1fr;
    }

    .gama-assure__cards {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
  GAMA ASSURE — Stronger Luxury Reveal (section-only)
  Notes:
  - More noticeable (slower + bigger rise + soft blur)
  - Does NOT affect other sections
========================================================= */

.gama-assure .sr-item {
    opacity: 0;
    transform: translateY(70px);
    filter: blur(8px);
    transition:
        opacity .95s cubic-bezier(.2, .8, .2, 1),
        transform .95s cubic-bezier(.2, .8, .2, 1),
        filter .95s cubic-bezier(.2, .8, .2, 1);
    will-change: opacity, transform, filter;
}

.gama-assure .sr-item.is-inview {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}







/* =========================================================
  SECTION: GAMA Proof (Dark Luxury)
  Project: GAMA ROOFING INC
========================================================= */

.gama-proof {
    position: relative;
    overflow: hidden;
    padding: 110px 0 70px;
    color: #fff;
    background:
        radial-gradient(1200px 700px at 18% 12%, rgba(212, 175, 55, .15), transparent 58%),
        radial-gradient(900px 520px at 85% 18%, rgba(212, 175, 55, .10), transparent 60%),
        linear-gradient(180deg, #0F141A, #0B0F14);
}

.gama-proof::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .12), transparent);
    opacity: .12;
    transform: translateY(-45%);
}

.gama-proof__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: start;
}

.gama-proof__kicker {
    margin: 0 0 10px;
    color: var(--gama-gold, #D4AF37);
    font-weight: 800;
    letter-spacing: .7px;
}

.gama-proof__title {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 3.6vw, 56px);
    line-height: 1.08;
    color: #fff;
}

.gama-proof__accent {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fee87f;
    letter-spacing: .2px;
}

.gama-proof__lead {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .86);
    max-width: 62ch;
}

.gama-proof__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.gama-proof__signature {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(255, 255, 255, .80);
    font-size: 13px;
    letter-spacing: .2px;
}

.gama-proof__sigItem {
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(212, 175, 55, .16);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.gama-proof__sigDot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .85);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .12);
}

/* ===== Cards ===== */

.gama-proof__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gama-proofCard {
    position: relative;
    border-radius: 26px;
    padding: 18px 18px 16px;
    background:
        radial-gradient(700px 320px at 20% 10%, rgba(212, 175, 55, .16), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border: 1px solid rgba(212, 175, 55, .14);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
    overflow: hidden;
}

.gama-proofCard::after {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background: radial-gradient(circle at 85% 18%, rgba(212, 175, 55, .18), transparent 55%);
    opacity: .7;
}

.gama-proofCard__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.gama-proofCard__badge {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #0B0F14;
    font-weight: 900;
    letter-spacing: .8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 1), rgba(184, 138, 42, 1));
    box-shadow: 0 18px 40px rgba(212, 175, 55, .20);
}

.gama-proofCard__value {
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: 28px;
    color: rgba(255, 255, 255, .95);
    letter-spacing: .2px;
}

.gama-proofCard__title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    position: relative;
    z-index: 1;
}

.gama-proofCard__text {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .82);
    position: relative;
    z-index: 1;
}

/* hover lift */
@media (hover:hover) and (pointer:fine) {
    .gama-proofCard {
        transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .gama-proofCard:hover {
        transform: translateY(-6px);
        border-color: rgba(212, 175, 55, .26);
        box-shadow: 0 36px 120px rgba(0, 0, 0, .60);
    }
}

/* ===== Bottom bar ===== */

.gama-proofBar {
    margin-top: 28px;
    border-radius: 22px;
    padding: 16px 16px;
    background:
        radial-gradient(900px 420px at 20% 15%, rgba(212, 175, 55, .14), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    border: 1px solid rgba(212, 175, 55, .14);
    box-shadow: 0 26px 90px rgba(0, 0, 0, .45);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gama-proofBar__item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .86);
    line-height: 1.55;
    font-size: 13.5px;
}

.gama-proofBar__icon {
    width: 28px;
    height: 28px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(212, 175, 55, .14);
    border: 1px solid rgba(212, 175, 55, .28);
    color: var(--gama-gold, #D4AF37);
    font-weight: 900;
    flex: 0 0 auto;
    margin-top: 1px;
}

/* Make outline button readable */
.gama-proof .gama-btn-outline {
    border-color: rgba(212, 175, 55, .55);
    color: var(--gama-gold, #D4AF37);
}

.gama-proof .gama-btn-outline:hover {
    background: var(--gama-gold, #D4AF37);
    color: var(--gama-ink, #0B0F14);
}

/* Responsive */
@media (max-width: 992px) {
    .gama-proof {
        padding: 92px 0 64px;
    }

    .gama-proof__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 560px) {
    .gama-proof {
        padding: 78px 0 58px;
    }

    .gama-proof__cards {
        grid-template-columns: 1fr;
    }

    .gama-proofBar {
        grid-template-columns: 1fr;
    }
}







/* =========================================================
  SECTION: Signature Craft (Light / Unique Shapes)
  Project: GAMA ROOFING INC
  Notes:
  - No rectangles, no circles (faceted / sculpted shapes)
========================================================= */

.gama-signature {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background:
        radial-gradient(1200px 700px at 20% 18%, rgba(212, 175, 55, .18), transparent 58%),
        radial-gradient(900px 600px at 85% 35%, rgba(15, 42, 68, .10), transparent 60%),
        linear-gradient(180deg, #F7F4EE, #F2EFE8);
    color: #0B0F14;
}

/* soft luxury haze */
.gama-signature::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background:
        radial-gradient(900px 520px at 30% 15%, rgba(255, 255, 255, .85), transparent 62%),
        radial-gradient(800px 520px at 70% 80%, rgba(255, 255, 255, .65), transparent 60%);
    opacity: .8;
}

/* tiny grain */
.gama-signature::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(0, 0, 0, .06) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .04;
}

.gama-signature__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: start;
}

/* ---------------- LEFT ---------------- */
.gama-signature__kicker {
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: .6px;
    color: var(--gama-gold);
}

.gama-signature__title {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 3.8vw, 56px);
    line-height: 1.08;
}

.gama-signature__title span {
    position: relative;
    display: inline-block;
    padding: 0 .08em;
}

.gama-signature__title span::after {
    content: "";
    position: absolute;
    left: -.06em;
    right: -.06em;
    bottom: .18em;
    height: .34em;
    background: rgba(212, 175, 55, .22);
    border-radius: 999px;
    z-index: -1;
    transform: skewX(-10deg);
}

.gama-signature__lead {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(11, 15, 20, .78);
    max-width: 62ch;
}

.gama-signature__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.gama-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid #161c18;
    color: #161c18;
    text-decoration: none;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.gama-btn-ghost:hover {
    background: rgba(212, 175, 55, .14);
    box-shadow: 0 18px 46px rgba(212, 175, 55, .18), 0 0 0 6px rgba(212, 175, 55, .08);
    transform: translateY(-3px);
    color: #cba243;
}

.gama-signature__note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: rgba(11, 15, 20, .64);
    font-size: 13px;
}

.gama-signature__noteMark {
    width: 22px;
    height: 10px;
    border-radius: 999px 16px 999px 16px;
    background: linear-gradient(90deg, rgba(212, 175, 55, .6), rgba(212, 175, 55, .15));
    border: 1px solid rgba(212, 175, 55, .35);
}

/* ---------------- RIGHT ---------------- */
.gama-signature__showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

/* Faceted tile: unique shape via clip-path (not rectangle / not circle) */
.gama-facet {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, .22);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .14);
    background: rgba(15, 42, 68, .08);
    clip-path: polygon(6% 0%, 94% 0%, 100% 12%, 100% 88%, 94% 100%, 6% 100%, 0% 88%, 0% 12%);
    border-radius: 28px;
    /* helps smoothing edges */
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.gama-facet--tall {
    grid-row: span 2;
    min-height: 436px;
}

.gama-facet__bg {
    position: absolute;
    inset: 0;
    background-image: url("/wp-content/uploads/ss-01.jpg");
    background-size: cover;
    background-position: center;
    filter: saturate(.95) contrast(1.05);
    transition: transform .35s ease, filter .35s ease;
    transform: scale(1.15);
    /* base already */
}

.gama-facet__bg--install {
    background-image: url("/wp-content/uploads/ss-03.jpg");
}

.gama-facet__bg--clean {
    background-image: url("/wp-content/uploads/ss-02.jpg");
}

.gama-facet::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 420px at 30% 15%, rgba(212, 175, 55, .22), transparent 60%),
        linear-gradient(180deg, rgba(11, 15, 20, .25), rgba(11, 15, 20, .72));
}

.gama-facet__content {
    position: relative;
    z-index: 1;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: inherit;
}

.gama-facet__eyebrow {
    margin: 0 0 10px;
    font-weight: 900;
    letter-spacing: .6px;
    color: #fee87f;
}

.gama-facet__title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 900;
    color: #f7f3e8;
}

.gama-facet__text {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.55;
    font-size: 13px;
    max-width: 40ch;
}

/* Seal (not circle): faceted badge */
.gama-facet__seal {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 10px 12px;
    background: rgba(246, 244, 239, .92);
    color: #0B0F14;
    border: 1px solid rgba(212, 175, 55, .35);
    clip-path: polygon(8% 0%, 92% 0%, 100% 20%, 92% 100%, 8% 100%, 0% 20%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    text-align: center;
    min-width: 82px;
}

.gama-facet__sealTop {
    display: block;
    font-weight: 900;
    letter-spacing: .2px;
}

.gama-facet__sealBot {
    display: block;
    font-size: 12px;
    color: rgba(11, 15, 20, .70);
}

/* Ribbon: organic, not rectangle */
.gama-ribbon {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(15, 42, 68, .10);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .08);
    clip-path: polygon(3% 0%, 97% 0%, 100% 50%, 97% 100%, 3% 100%, 0% 50%);
}

.gama-ribbon__spark {
    width: 12px;
    height: 12px;
    background: var(--gama-gold);
    clip-path: polygon(50% 0%, 70% 30%, 100% 50%, 70% 70%, 50% 100%, 30% 70%, 0% 50%, 30% 30%);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .18);
    flex: 0 0 auto;
}

.gama-ribbon__text {
    color: rgba(11, 15, 20, .72);
    line-height: 1.55;
    font-size: 13px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
    .gama-signature {
        padding: 92px 0;
    }

    .gama-signature__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 560px) {
    .gama-signature {
        padding: 78px 0;
    }

    .gama-signature__showcase {
        grid-template-columns: 1fr;
    }

    .gama-facet--tall {
        grid-row: auto;
        min-height: 360px;
    }

    .gama-signature__tag {
        font-size: 12px;
    }

    .gama-signature__lead {
        line-height: 1.35;
    }
}





/* =========================================================
  Signature Tags — CUT corners + VISIBLE diamonds between
========================================================= */


.gama-signature__tag:hover {
    transform: translateY(-2px);
    background: rgba(20, 24, 28, .72);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .14);
}


/* Zoom image on hover */
@media (hover:hover) and (pointer:fine) {
    .gama-facet:hover .gama-facet__bg {
        transform: scale(1.15);
        filter: saturate(1.02) contrast(1.06);
    }
}


/* =========================================================
  Image hover zoom — works for BG layer and <img>
========================================================= */

/* If you use a BG layer like .gama-facet__bg */
.gama-facet__bg {
    transition: transform .45s ease, filter .45s ease;
    transform: scale(1.01);
    will-change: transform;
}

/* If you use an <img> inside something like .gama-facet__media */
.gama-facet img,
.gama-facet__media img,
.gama-signature__facet img {
    transition: transform .45s ease, filter .45s ease;
    transform: scale(1.01);
    will-change: transform;
}

/* Hover zoom (desktop) */
@media (hover:hover) and (pointer:fine) {
    .gama-facet:hover .gama-facet__bg {
        transform: scale(1.15);
        filter: saturate(1.05) contrast(1.06);
    }

    .gama-facet:hover img,
    .gama-facet__media:hover img,
    .gama-signature__facet:hover img {
        transform: scale(1.15);
        filter: saturate(1.05) contrast(1.06);
    }
}

/* IMPORTANT: parent must hide overflow so zoom looks clean */
.gama-facet,
.gama-facet__media,
.gama-signature__facet {
    overflow: hidden;
}



/* =========================================================
  Diamond separator (REAL element)
========================================================= */

.gama-signature__tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0 20px;
}

/* Diamond */
.gama-signature__diamond {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);

    background: #D4AF37;
    border: 1px solid rgba(212, 175, 55, .65);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, .18);

    flex: 0 0 auto;
}

/* Clean tag styling (keep your clipped corners) */
.gama-signature__tag {
    padding: 10px 14px;
    background: rgba(20, 24, 28, .62);
    border: 1px solid rgba(212, 175, 55, .28);
    color: rgba(255, 255, 255, .86);

    clip-path: polygon(12px 0%,
            calc(100% - 12px) 0%,
            100% 12px,
            100% calc(100% - 12px),
            calc(100% - 12px) 100%,
            12px 100%,
            0% calc(100% - 12px),
            0% 12px);
}



/* =========================================================
  GAMA — Signature Showcase: Image overlay + zoom
  Targets your real classes:
  .gama-facet, .gama-facet__bg, .gama-facet__content, .gama-ribbon
========================================================= */

/* Safety: make sure tiles can clip zoom */
.gama-facet {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    /* prevents flicker */
}

/* Background "image layer" (it's a DIV with background-image) */
.gama-facet__bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Color correction base */
    filter: saturate(1.08) contrast(1.06) brightness(.92);

    transition:
        transform .70s cubic-bezier(.2, .8, .2, 1),
        filter .35s ease;
    will-change: transform, filter;
}

/* Readability overlay (dark + luxury gold film) */
.gama-facet::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(180deg,
            rgba(11, 15, 20, .18) 0%,
            rgba(11, 15, 20, .58) 55%,
            rgba(11, 15, 20, .74) 100%),
        radial-gradient(900px 520px at 25% 18%,
            rgba(212, 175, 55, .18),
            transparent 60%);
    opacity: 1;
    transition: opacity .35s ease;
}

/* Extra subtle "luxury film streak" */
.gama-facet::after {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 1;
    pointer-events: none;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .10), transparent);
    opacity: .10;
    transform: translateY(-40%);
}

/* Content above overlay */
.gama-facet__content {
    position: relative;
    z-index: 2;
}

/* Hover zoom (desktop) */
@media (hover:hover) and (pointer:fine) {
    .gama-facet:hover .gama-facet__bg {
        filter: saturate(1.12) contrast(1.08) brightness(.90);
    }

    /* optional: a bit more clarity on hover */
    .gama-facet:hover::before {
        opacity: .96;
    }
}

/* =========================================================
  Ribbon: keep readable on light background too
========================================================= */
.gama-ribbon {
    position: relative;
    overflow: hidden;
}

.gama-ribbon::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(212, 175, 55, .14),
            rgba(255, 255, 255, .10),
            rgba(212, 175, 55, .10));
    opacity: .55;
}


/* =========================================================
   Luxury Reveal Effect
   On hover / tap → hide overlay + text
========================================================= */

/* Smooth transition for text */
.gama-facet__content,
.gama-facet::before,
.gama-facet::after {
    transition: opacity .35s ease, transform .35s ease;
}

/* Desktop hover */
@media (hover:hover) and (pointer:fine) {

    /* Hide overlay */
    .gama-facet:hover::before,
    .gama-facet:hover::after {
        opacity: 0;
    }

    /* Hide text */
    .gama-facet:hover .gama-facet__content {
        opacity: 0;
        transform: translateY(10px);
    }

    /* Keep only image (strong zoom) */
    .gama-facet:hover .gama-facet__bg {
        filter: none;
    }
}

/* Mobile tap effect */
@media (hover:none) and (pointer:coarse) {

    .gama-facet:active::before,
    .gama-facet:active::after {
        opacity: 0;
    }

    .gama-facet:active .gama-facet__content {
        opacity: 0;
    }

    .gama-facet:active .gama-facet__bg {
        filter: none;
    }
}




/* =========================================================
  GAMA — Signature Craft (Light / Unique Shapes)
  Desktop: Showcase LEFT, Copy RIGHT
  Mobile: Copy first, then Showcase (default)
========================================================= */

.gama-signature {
    position: relative;
    padding: 92px 0;
}

/* container grid */
.gama-signature__grid {
    display: grid;
    grid-template-columns: 1fr;
    /* mobile default */
    gap: 34px;
    align-items: start;
}

/* make sure columns don't shrink weirdly */
.gama-signature__copy,
.gama-signature__showcase {
    min-width: 0;
}

/* keep copy readable */
.gama-signature__copy {
    max-width: 680px;
}

/* showcase should be able to fill its column */
.gama-signature__showcase {
    width: 100%;
}

/* =========================
   DESKTOP LAYOUT SWAP
   (Showcase left, Copy right)
========================= */
@media (min-width: 992px) {
    .gama-signature {
        padding: 110px 0;
    }

    .gama-signature__grid {
        grid-template-columns: 1.05fr 0.95fr;
        /* left bigger (images), right smaller (text) */
        gap: 56px;
        align-items: center;
    }

    /* swap positions */
    .gama-signature__showcase {
        order: 1;
    }

    .gama-signature__copy {
        order: 2;
        justify-self: end;
    }

    /* ensure the text column sits nicely, not too narrow */
    .gama-signature__copy {
        width: 100%;
        max-width: 640px;
    }
}

/* =========================
   OPTIONAL: if anything outside forces flex
   (safety reset)
========================= */
.gama-signature__grid {
    float: none;
}









/* =========================================================
  SECTION: Dark WOW (Fixed BG + Luxury Panels)
  Project: GAMA ROOFING INC
========================================================= */

.gama-wow-dark {
    position: relative;
    overflow: hidden;
    padding: 110px 0;

    /* Fixed background (desktop), with luxury lighting */
    background:
        radial-gradient(1100px 680px at 18% 18%, rgba(212, 175, 55, .16), transparent 60%),
        radial-gradient(900px 560px at 85% 22%, rgba(212, 175, 55, .10), transparent 60%),
        linear-gradient(180deg, #0A0F14, #070B10);
    color: #fff;
}

/* Optional: attach a photo behind, still dark & premium */
.gama-wow-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 11, 16, .78), rgba(7, 11, 16, .52)),
        url("/wp-content/uploads/bg-fix.jpg");
    background-size: cover;
    background-position: center;
    opacity: .55;
    pointer-events: none;
    z-index: 0;
}

/* Fixed background effect on desktop only */
@media (hover:hover) and (pointer:fine) {
    .gama-wow-dark::before {
        background-attachment: fixed;
    }
}

.gama-wow-dark__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

/* LEFT */
.gama-wow-dark__kicker {
    color: var(--gama-gold);
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-size: 13px;
}

.gama-wow-dark__title {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    color: #8d8d8d;
}

.gama-wow-dark__lead {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .84);
    max-width: 60ch;
}

.gama-wow-dark__ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin: 18px 0 14px;
}

.gama-wow-dark__link {
    color: var(--gama-gold);
    font-weight: 800;
    text-decoration: none;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(212, 175, 55, .35);
    transition: transform .2s ease, border-color .2s ease, opacity .2s ease;
}

.gama-wow-dark__link:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, .75);
    color: var(--gama-gold);
}

.gama-wow-dark__sig {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.gama-wow-dark__sigDot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--gama-gold);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .16);
}

/* RIGHT: Panels */
.gama-wow-dark__panels {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

/* Luxury “panel” look: chamfer corners + subtle skew */
.gama-panel {
    position: relative;
    padding: 22px 22px 18px;
    color: #fff;

    background:
        radial-gradient(800px 420px at 18% 18%, rgba(212, 175, 55, .16), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
    border: 1px solid rgba(212, 175, 55, .18);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .55);

    /* Chamfer shape (not a rectangle) */
    clip-path: polygon(10% 0%, 90% 0%,
            100% 12%, 100% 88%,
            90% 100%, 10% 100%,
            0% 88%, 0% 12%);

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

/* Different “float” offsets (so it looks custom, not standard grid) */
.gama-panel:nth-child(1) {
    transform: translateY(10px) skewX(-1deg);
}

.gama-panel:nth-child(2) {
    transform: translateY(-6px) skewX(1deg);
}

.gama-panel:nth-child(3) {
    transform: translateY(6px) skewX(1deg);
}

.gama-panel:nth-child(4) {
    transform: translateY(-10px) skewX(-1deg);
}

.gama-panel::after {
    /* Gold seam highlight */
    content: "";
    position: absolute;
    inset: 10px;
    pointer-events: none;
    clip-path: inherit;
    border: 1px solid rgba(212, 175, 55, .14);
    opacity: .9;
}

/* Hover */
@media (hover:hover) and (pointer:fine) {
    .gama-panel:hover {
        transform: translateY(-10px) skewX(0deg);
        border-color: rgba(212, 175, 55, .34);
        box-shadow: 0 36px 90px rgba(0, 0, 0, .65);
    }
}

.gama-panel__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.gama-panel__idx {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-weight: 900;
    color: #0B0F14;
    background: var(--gama-gold);
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.gama-panel__cap {
    font-size: 12px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.gama-panel__title {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .2px;
    color: #9d9d9d;
}

.gama-panel__text {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.65;
    font-size: 14px;
}

/* Bottom rail (non-rectangle accent) */
.gama-wow-dark__rail {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    opacity: .9;
}

.gama-wow-dark__railLine {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .55), transparent);
}

.gama-wow-dark__railDiamond {
    width: 10px;
    height: 10px;
    background: var(--gama-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .12);
}

/* =========================================================
  Responsive
========================================================= */
@media (max-width: 992px) {
    .gama-wow-dark {
        padding: 92px 0;
    }

    .gama-wow-dark__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .gama-wow-dark__panels {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .gama-panel {
        clip-path: polygon(8% 0%, 92% 0%, 100% 14%, 100% 86%, 92% 100%, 8% 100%, 0% 86%, 0% 14%);
    }

    .gama-panel:nth-child(1),
    .gama-panel:nth-child(2),
    .gama-panel:nth-child(3),
    .gama-panel:nth-child(4) {
        transform: none;
    }
}







/* =========================================================
  SECTION: Atelier Blueprint (Light WOW)
  Project: GAMA ROOFING INC
========================================================= */

.gama-atelier {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    color: #0B0F14;

    background:
        radial-gradient(900px 520px at 18% 18%, rgba(212, 175, 55, .14), transparent 60%),
        radial-gradient(900px 520px at 82% 14%, rgba(15, 42, 68, .10), transparent 62%),
        linear-gradient(180deg, #F7F3EA, #F3EFE6);
}

/* subtle blueprint grid (luxury) */
.gama-atelier::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to right, rgba(15, 42, 68, .06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 42, 68, .06) 1px, transparent 1px);
    background-size: 74px 74px;
    opacity: .35;
    mix-blend-mode: multiply;
}

/* soft vignette */
.gama-atelier::after {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    background: radial-gradient(1200px 800px at 50% 40%, transparent 55%, rgba(0, 0, 0, .08));
}

.gama-atelier__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
}

.gama-atelier__kicker {
    color: var(--gama-gold);
    font-weight: 900;
    letter-spacing: .9px;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-size: 13px;
}

.gama-atelier__title {
    margin: 0 0 14px;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
    color: #0F2A44;
}

.gama-atelier__title span {
    background: linear-gradient(90deg, rgba(212, 175, 55, .22), rgba(212, 175, 55, .08));
    padding: 0 .18em;
    border-radius: 999px;
}

.gama-atelier__lead {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(11, 15, 20, .74);
    max-width: 62ch;
}

/* Origami ribbons (non-rect, non-circle) */
.gama-atelier__ribbons {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    max-width: 640px;
}

.gama-rib {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;

    background:
        linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(255, 255, 255, .50));
    border: 1px solid rgba(15, 42, 68, .10);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);

    /* folded ribbon shape */
    clip-path: polygon(0% 50%, 4% 0%, 96% 0%, 100% 50%, 96% 100%, 4% 100%);
}

.gama-rib__cap {
    font-weight: 900;
    color: #0F2A44;
    letter-spacing: .6px;
    font-size: 12px;
    width: 34px;
    text-align: center;

    background: rgba(212, 175, 55, .22);
    padding: 8px 0;
    clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
}

.gama-rib__text {
    font-weight: 700;
    color: rgba(15, 42, 68, .92);
    line-height: 1.35;
}

.gama-rib__fold {
    margin-left: auto;
    width: 16px;
    height: 16px;
    background: var(--gama-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .12);
}

/* CTA + micro */
.gama-atelier__ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin: 20px 0 10px;
}

.gama-atelier__micro {
    margin: 10px 0 0;
    color: rgba(15, 42, 68, .62);
    font-weight: 700;
    letter-spacing: .2px;
}

/* =========================================================
  Right “Cutout Window” (interactive WOW)
========================================================= */

.gama-window {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

/* frame is a carved “window”, not a rectangle */
.gama-window__frame {
    position: relative;
    height: 520px;

    /* carved cutout shape */
    clip-path: polygon(12% 0%, 88% 0%,
            100% 12%, 100% 88%,
            88% 100%, 12% 100%,
            0% 88%, 0% 12%);

    border: 1px solid rgba(212, 175, 55, .22);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .18);
    overflow: hidden;

    background:
        radial-gradient(900px 520px at 18% 14%, rgba(212, 175, 55, .20), transparent 60%),
        linear-gradient(180deg, rgba(15, 42, 68, .10), rgba(15, 42, 68, .02));
}

/* Photo layer */
.gama-window__photo {
    position: absolute;
    inset: -14px;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}

/* Overlay to keep text readable when needed */
.gama-window__veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 420px at 30% 20%, rgba(212, 175, 55, .18), transparent 62%),
        linear-gradient(180deg, rgba(11, 15, 20, .28), rgba(11, 15, 20, .46));
    opacity: .55;
    transition: opacity .55s ease;
}

/* Micro labels */
.gama-window__labels {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    letter-spacing: .9px;
    color: rgba(255, 255, 255, .82);
    text-transform: uppercase;
    opacity: .9;
}

/* Folded note */
.gama-note {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 150px;
    padding: 14px 14px 12px;

    background: rgba(247, 243, 234, .92);
    border: 1px solid rgba(15, 42, 68, .12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);

    /* folded corner */
    clip-path: polygon(0% 0%, 82% 0%, 100% 18%, 100% 100%, 0% 100%);
}

.gama-note__top {
    display: block;
    font-weight: 900;
    color: #0F2A44;
    letter-spacing: .6px;
    font-size: 12px;
}

.gama-note__big {
    display: block;
    margin-top: 6px;
    font-family: "Playfair Display", serif;
    font-size: 44px;
    color: var(--gama-gold);
    line-height: 1;
}

.gama-note__bot {
    display: block;
    margin-top: 6px;
    color: rgba(11, 15, 20, .62);
    font-weight: 700;
    font-size: 12px;
}

/* Hover WOW: “window opens” + photo zoom */
@media (hover:hover) and (pointer:fine) {
    .gama-window:hover .gama-window__frame {
        clip-path: polygon(8% 0%, 92% 0%,
                100% 8%, 100% 92%,
                92% 100%, 8% 100%,
                0% 92%, 0% 8%);
        transition: clip-path .55s cubic-bezier(.2, .8, .2, 1);
    }

    .gama-window:hover .gama-window__photo {
        transform: scale(1.12);
    }

    .gama-window:hover .gama-window__veil {
        opacity: .35;
    }
}

/* Signature strip (non-rect) */
.gama-strip {
    margin: 18px 0 0 auto;
    max-width: 520px;
    position: relative;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;

    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 42, 68, .10);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .10);

    clip-path: polygon(0% 50%, 3.5% 0%, 96.5% 0%, 100% 50%, 96.5% 100%, 3.5% 100%);
}

.gama-strip__dot {
    width: 12px;
    height: 12px;
    background: var(--gama-gold);
    transform: rotate(45deg);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .12);
}

.gama-strip__text {
    font-weight: 800;
    color: rgba(15, 42, 68, .86);
    line-height: 1.35;
}

.gama-strip__cut {
    margin-left: auto;
    width: 18px;
    height: 18px;
    background: rgba(15, 42, 68, .10);
    transform: rotate(45deg);
}

/* =========================================================
  Responsive
========================================================= */
@media (max-width: 992px) {
    .gama-atelier {
        padding: 92px 0;
    }

    .gama-atelier__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .gama-window {
        margin-left: 0;
    }

    .gama-window__frame {
        height: 420px;
    }
}

@media (max-width: 560px) {
    .gama-window__frame {
        height: 360px;
    }

    .gama-window__labels {
        display: none;
    }
}








/* =========================================================
  ATELIER Blueprint — Image URLs + Luxury Overlay + WOW Shimmer
  Works ONLY for: .gama-atelier block
========================================================= */

/* 1) Put your MAIN image here (right big window) */
.gama-atelier .gama-window__photo {
    position: absolute;
    inset: 0;

    background-image: url("/wp-content/uploads/atel-01.jpg");
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;

    transform: scale(1);
    transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .8s ease;
}

/* 2) Color correction + readability overlay */
.gama-atelier .gama-window__veil {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(800px 500px at 20% 20%, rgba(212, 175, 55, .18), transparent 65%),
        linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .65));

    transition: opacity .5s ease;
}

/* 3) WOW prism shimmer sweep (desktop hover) */
.gama-atelier .gama-window__frame {
    position: relative;
    overflow: hidden;
}

.gama-atelier .gama-window__frame::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    opacity: 0;

    background:
        linear-gradient(115deg,
            transparent 0%,
            rgba(212, 175, 55, 0) 35%,
            rgba(212, 175, 55, .22) 50%,
            rgba(255, 255, 255, .18) 56%,
            rgba(212, 175, 55, 0) 72%,
            transparent 100%);
    transform: translateX(-45%);
    transition: opacity .35s ease;
}

.gama-atelier .gama-window__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(600px 300px at 70% 20%, rgba(255, 215, 120, .18), transparent 60%);
}


@media (hover:hover) and (pointer:fine) {

    .gama-atelier .gama-window:hover .gama-window__photo {
        transform: scale(1.1);
        filter: contrast(1.05) saturate(1.08);
    }

    .gama-atelier .gama-window:hover .gama-window__veil {
        opacity: .85;
    }
}


@keyframes gamaAtelierPrism {
    0% {
        transform: translateX(-55%);
    }

    100% {
        transform: translateX(55%);
    }
}

/* Optional: subtle grain only for this section */
.gama-atelier {
    position: relative;
}

.gama-atelier::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .06;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}







/* =========================================================
  SECTION: Kintsugi Gallery (Light WOW / Unique)
========================================================= */

.gama-kintsugi {
    position: relative;
    padding: clamp(56px, 6vw, 96px) 0;
}

.gama-kintsugi__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    /* TEXT | MOSAIC */
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

/* --- COPY --- */
.gama-kintsugi__kicker {
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #C5A021;
    margin: 0 0 10px;
}

.gama-kintsugi__title {
    margin: 0 0 14px;
    font-size: clamp(34px, 3.6vw, 46px);
    line-height: 1.02;
    color: #0F1F2E;
}

.gama-kintsugi__title span {
    position: relative;
}

.gama-kintsugi__title span::after {
    content: "";
    position: absolute;
    left: -6px;
    right: -6px;
    bottom: .08em;
    height: .34em;
    background: rgba(212, 175, 55, .22);
    border-radius: 999px;
    z-index: -1;
}

.gama-kintsugi__lead {
    margin: 0 0 18px;
    color: rgba(10, 18, 28, .74);
    font-size: 18px;
    line-height: 1.6;
    max-width: 56ch;
}

.gama-kintsugi__points {
    display: grid;
    gap: 7px;
    margin: 18px 0 18px;
}

.gama-kintsugi__point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(10, 18, 28, .82);
    font-weight: 650;
}

.gama-kintsugi__bullet {
    width: 10px;
    height: 10px;
    background: #D4AF37;
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 6px 18px rgba(212, 175, 55, .25);
}

.gama-kintsugi__ctas {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 18px 0 12px;
}

.gama-kintsugi__micro {
    margin: 10px 0 0;
    color: rgba(10, 18, 28, .55);
    font-weight: 650;
}

/* --- MOSAIC --- */
.gama-kintsugi__mosaic {
    position: relative;
    width: min(520px, 100%);
    aspect-ratio: 1 / 1;
    margin-left: auto;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .10);
    border: 1px solid rgba(0, 0, 0, .06);
}

/* gold seams layer */
.gama-kintsugi__seams {
    position: absolute;
    inset: -10%;
    pointer-events: none;
    opacity: .72;
    background:
        linear-gradient(35deg, transparent 0 46%, rgba(212, 175, 55, .55) 47% 49%, transparent 50% 100%),
        linear-gradient(-20deg, transparent 0 57%, rgba(212, 175, 55, .38) 58% 60%, transparent 61% 100%),
        linear-gradient(75deg, transparent 0 36%, rgba(212, 175, 55, .30) 37% 39%, transparent 40% 100%);
    mix-blend-mode: multiply;
}

/* shard base */
.gama-shard {
    position: absolute;
    inset: auto;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: saturate(1.02) contrast(1.02);
    transform: scale(1);
    transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .55s ease;
}

/* ===== KINTSUGI: IMAGE URLS (PASTE YOUR MEDIA LINKS) ===== */
.gama-shard--a {
    background-image: url("/wp-content/uploads/sig-01.jpg");
}

.gama-shard--b {
    background-image: url("/wp-content/uploads/sig-02.jpg");
}

.gama-shard--c {
    background-image: url("/wp-content/uploads/sig-03.jpg");
}

.gama-shard--d {
    background-image: url("/wp-content/uploads/sig-05.jpg");
}

/* shapes (no rectangles, no circles) */
.gama-shard--a {
    left: 6%;
    top: 6%;
    width: 58%;
    height: 44%;
    clip-path: polygon(0 0, 92% 0, 100% 22%, 86% 100%, 10% 100%, 0 76%);
}

.gama-shard--b {
    right: 6%;
    top: 10%;
    width: 36%;
    height: 44%;
    clip-path: polygon(12% 0, 100% 0, 100% 82%, 72% 100%, 0 100%, 0 20%);
}

.gama-shard--c {
    left: 10%;
    bottom: 8%;
    width: 50%;
    height: 38%;
    clip-path: polygon(0 0, 96% 0, 100% 30%, 78% 100%, 0 100%, 0 26%);
}

.gama-shard--d {
    right: 8%;
    bottom: 10%;
    width: 34%;
    height: 36%;
    clip-path: polygon(10% 0, 100% 0, 100% 72%, 76% 100%, 0 100%, 0 22%);
}

/* readability veil (optional) */
.gama-shard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .22));
    opacity: .55;
    transition: opacity .35s ease;
    pointer-events: none;
}

/* hover wow */
@media (hover:hover) and (pointer:fine) {
    .gama-shard:hover {
        transform: scale(1.10);
        filter: saturate(1.08) contrast(1.06);
    }

    .gama-shard:hover::after {
        opacity: .25;
    }
}

/* tiny signature tag */
.gama-kintsugi__tag {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    clip-path: polygon(0 0, 86% 0, 100% 22%, 100% 100%, 0 100%);
}

.gama-kintsugi__tagTop {
    display: block;
    font-weight: 800;
    letter-spacing: .08em;
    color: #0F1F2E;
}

.gama-kintsugi__tagBot {
    display: block;
    margin-top: 4px;
    color: rgba(10, 18, 28, .62);
    font-weight: 650;
    font-size: 13px;
}

/* responsive: on mobile show TEXT first then mosaic */
@media (max-width: 920px) {
    .gama-kintsugi__grid {
        grid-template-columns: 1fr;
    }

    .gama-kintsugi__mosaic {
        margin: 18px 0 0;
    }
}


@media (max-width: 920px) {
    .gama-kintsugi__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .gama-kintsugi__copy {
        order: 1;
    }

    .gama-kintsugi__mosaic {
        order: 2;
    }
}





/* =========================================================
  SECTION: Night Spec Panels (Dark WOW / Unique)
========================================================= */

.gama-night {
    position: relative;
    padding: clamp(70px, 7vw, 110px) 0;
    background:
        radial-gradient(900px 520px at 18% 22%, rgba(212, 175, 55, .16), transparent 60%),
        radial-gradient(800px 460px at 78% 30%, rgba(255, 255, 255, .06), transparent 62%),
        linear-gradient(180deg, #071018 0%, #050C12 55%, #050B11 100%);
    overflow: hidden;
}

/* subtle grain */
.gama-night::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .08;
    mix-blend-mode: overlay;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.gama-night__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: center;
}

/* copy */
.gama-night__kicker {
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
    color: #fee87f;
    margin: 0 0 12px;
}

.gama-night__title {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .96);
    font-size: clamp(34px, 3.6vw, 48px);
    line-height: 1.02;
}

.gama-night__title span {
    position: relative;
}

.gama-night__title span::after {
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    bottom: .10em;
    height: .34em;
    background: rgba(212, 175, 55, .18);
    border-radius: 999px;
    z-index: -1;
}

.gama-night__lead {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.65;
    max-width: 60ch;
}

.gama-night__ctas {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 18px 0 12px;
}

.gama-night__micro {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .55);
    font-weight: 650;
}

/* stage */
.gama-night__stage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-content: start;
    padding: 18px;
}

/* panels */
.gama-panel {
    position: relative;
    padding: 18px 18px 16px;
    min-height: 210px;
    background:
        radial-gradient(520px 260px at 18% 22%, rgba(212, 175, 55, .14), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
    border: 1px solid rgba(212, 175, 55, .18);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, .55),
        inset 0 1px 0 rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* no rectangle shape */
    clip-path: polygon(0 8%, 7% 0, 100% 0, 100% 92%, 93% 100%, 0 100%);
    overflow: hidden;
    transform: translateZ(0);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), border-color .45s ease;
}

/* arrange like a “gallery” */
.gama-panel--a {
    grid-column: 1 / 2;
}

.gama-panel--b {
    grid-column: 2 / 3;
    margin-top: 26px;
}

.gama-panel--c {
    grid-column: 1 / 3;
    min-height: 190px;
}

/* top row */
.gama-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.gama-panel__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    font-weight: 900;
    letter-spacing: .06em;
    color: #06121B;
    background: #fee87f;
    clip-path: polygon(0 25%, 25% 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}

.gama-panel__cap {
    color: rgba(255, 255, 255, .58);
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px;
}

.gama-panel__title {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, .95);
    font-size: 20px;
    letter-spacing: .01em;
}

.gama-panel__text {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.55;
}

.gama-panel__line {
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, .0), rgba(212, 175, 55, .55), rgba(255, 255, 255, .10), rgba(212, 175, 55, .0));
    opacity: .9;
    margin: 8px 0 10px;
}

.gama-panel__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, .55);
    font-weight: 650;
    font-size: 13px;
}

/* wow sweep */
.gama-panel::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(115deg,
            transparent 0%,
            rgba(212, 175, 55, .00) 35%,
            rgba(212, 175, 55, .22) 50%,
            rgba(255, 255, 255, .14) 55%,
            rgba(212, 175, 55, .00) 70%,
            transparent 100%);
    transform: translateX(-35%);
    transition: opacity .25s ease;
}

@media (hover:hover) and (pointer:fine) {
    .gama-panel:hover {
        transform: translateY(-6px);
        border-color: rgba(212, 175, 55, .34);
    }

    .gama-panel:hover::before {
        opacity: 1;
        animation: gamaNightSweep 1.25s ease forwards;
    }
}

@keyframes gamaNightSweep {
    0% {
        transform: translateX(-45%);
    }

    100% {
        transform: translateX(60%);
    }
}

/* signature strip */
.gama-night__strip {
    grid-column: 1 / 3;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, .70);
    background: rgba(255, 255, 255, .25);
    border: 1px solid rgba(212, 175, 55, .14);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
    clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%, 2% 50%);
}

.gama-night__spark {
    width: 10px;
    height: 10px;
    background: #fee87f;
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 10px 22px rgba(212, 175, 55, .22);
}

.gama-night__stripText {
    font-weight: 650;
}

.gama-night__cut {
    margin-left: auto;
    width: 44px;
    height: 12px;
    background: rgba(212, 175, 55, .20);
    clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%, 14% 50%);
    opacity: .85;
}

.ct-back-to-top {
    background: #202219 !important;
    border-radius: 999px !important;
    border: 2px solid #fee87f !important;
}

/* responsive */
@media (max-width: 980px) {
    .gama-night__grid {
        grid-template-columns: 1fr;
    }

    /* .gama-night__stage {
        grid-template-columns: 1fr;
    } */

    .gama-panel--b {
        margin-top: 0;
    }

    .gama-panel--c {
        grid-column: auto;
    }

    .gama-night__strip {
        grid-column: auto;
    }
}









/* =========================================================
  GAMA Compare (Dark Luxury)
========================================================= */

.gama-compare {
    position: relative;
    background:
        radial-gradient(1200px 600px at 20% 20%, rgba(212, 175, 55, .18), transparent 55%),
        radial-gradient(900px 520px at 90% 10%, rgba(212, 175, 55, .10), transparent 60%),
        linear-gradient(180deg, #070B10 0%, #0A1018 60%, #070B10 100%);
    color: #E9EEF6;
}

.gama-compare__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: start;
    padding: 10px 0;
}

.gama-compare__kicker {
    color: #fee87f;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
}

.gama-compare__title {
    margin: 12px 0 14px;
    font-size: clamp(34px, 4.2vw, 50px);
    line-height: 1.02;
    color: #F5F7FB;
}

.gama-compare__title span {
    color: #fee87f;
}

.gama-compare__lead {
    max-width: 54ch;
    color: rgba(233, 238, 246, .86);
    font-size: 16.5px;
    line-height: 1.7;
}

.gama-compare__bullets {
    display: grid;
    gap: 10px;
    margin: 22px 0 26px;
}

.gama-compare__bullet {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(233, 238, 246, .88);
}

.gama-compare__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.gama-compare__micro {
    margin-top: 14px;
    color: rgba(233, 238, 246, .55);
    font-size: 13px;
}

/* Right stack */
.gama-compare__stack {
    display: grid;
    gap: 18px;
    margin-top: 45px;
}

/* =========================================================
  Before/After component
========================================================= */

.gama-ba {
    --pos: 50%;
    position: relative;
    height: 330px;
    border-radius: 26px;
    overflow: hidden;
    background: #0B111A;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45),
        inset 0 0 0 1px rgba(212, 175, 55, .16);
}

.gama-ba__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform .55s cubic-bezier(.2, .8, .2, 1), filter .55s ease;
}

/* Dark readability overlay */
.gama-ba__img::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 520px at 20% 20%, rgba(212, 175, 55, .16), transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .55));
    opacity: 1;
}

/* Before layer clips by --pos */
.gama-ba__img--before {
    clip-path: polygon(0 0, var(--pos) 0, var(--pos) 100%, 0 100%);
}

/* Labels */
.gama-ba__labels {
    position: absolute;
    inset: 16px 16px auto 16px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
    z-index: 5;
}

.gama-ba__label {
    font-weight: 800;
    letter-spacing: .16em;
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    color: #0A0F16;
    background: #fee87f;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .35);
}

.gama-ba__label--after {
    background: rgba(245, 247, 251, .92);
}

/* Range input (invisible but interactive) */
.gama-ba__range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

/* Handle + divider */
.gama-ba__handle {
    position: absolute;
    top: 0;
    left: var(--pos);
    height: 100%;
    width: 0;
    z-index: 9;
}

.gama-ba__handle::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 2px;
    height: 100%;
    background: rgba(212, 175, 55, .55);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .25);
}

.gama-ba__handle::after {
    content: "⇆";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #0A0F16;
    background: rgba(212, 175, 55, .96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}

/* Hover WOW (desktop only) */
@media (hover:hover) and (pointer:fine) {
    .gama-ba:hover .gama-ba__img {
        transform: scale(1.08);
        filter: saturate(1.08) contrast(1.06);
    }
}

/* Responsive */
@media (max-width: 980px) {
    .gama-compare__grid {
        grid-template-columns: 1fr;
        padding: 64px 0;
    }

    .gama-ba {
        height: 300px;
    }
}

@media (max-width: 520px) {
    .gama-ba {
        height: 260px;
        border-radius: 22px;
    }

    .gama-ba__label {
        font-size: 11px;
        padding: 9px 10px;
    }

    .gama-compare__stack {
        margin-top: 0px;
    }
}







/* =========================================================
  GAMA Guarantee (Light WOW / Unique Shapes)
========================================================= */

.gama-guaranteeL {
    position: relative;
    background:
        radial-gradient(1200px 560px at 15% 18%, rgba(212, 175, 55, .16), transparent 60%),
        radial-gradient(900px 520px at 85% 12%, rgba(15, 42, 68, .10), transparent 62%),
        linear-gradient(180deg, #F7F2E8 0%, #F4EFE6 55%, #F7F2E8 100%);
    color: #0F2A44;
}

/* subtle luxury grain */
.gama-guaranteeL::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .07;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.gama-guaranteeL__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: start;
    padding: 10px 0;
    z-index: 1;
}

.gama-guaranteeL__kicker {
    color: #fee87f;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 12px;
}

.gama-guaranteeL__title {
    margin: 12px 0 14px;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.02;
    color: #0F2A44;
}

.gama-guaranteeL__title span {
    background: linear-gradient(90deg, rgba(212, 175, 55, .18), rgba(212, 175, 55, .0));
    border-radius: 999px;
    padding: 0 .18em;
}

.gama-guaranteeL__lead {
    max-width: 56ch;
    color: rgba(15, 42, 68, .78);
    font-size: 16.5px;
    line-height: 1.7;
}

.gama-guaranteeL__checks {
    display: grid;
    gap: 12px;
    margin: 22px 0 26px;
}

.gama-guaranteeL__check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(15, 42, 68, .86);
}

.gama-guaranteeL__tick {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    color: #0F2A44;
    background: rgba(212, 175, 55, .88);
    clip-path: polygon(10% 0, 90% 0, 100% 25%, 90% 100%, 10% 100%, 0 75%);
    box-shadow: 0 16px 32px rgba(15, 42, 68, .12);
    font-weight: 900;
}

.gama-guaranteeL__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gama-guaranteeL__micro {
    margin-top: 14px;
    color: rgba(15, 42, 68, .55);
    font-size: 13px;
}

/* =========================================================
  Right visual
========================================================= */

.gama-guaranteeL__visual {
    display: grid;
    gap: 18px;
    align-content: start;
}

/* Cut seal (non-circle) */
.gama-sealL {
    position: relative;
    overflow: hidden;
    padding: 26px;
    clip-path: polygon(0 10%, 10% 0, 92% 0, 100% 12%, 100% 88%, 88% 100%, 12% 100%, 0 90%);
    background:
        radial-gradient(1000px 520px at 25% 20%, rgba(212, 175, 55, .18), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, .30));
    box-shadow:
        0 34px 90px rgba(15, 42, 68, .14),
        inset 0 0 0 1px rgba(212, 175, 55, .22);
    border-radius: 26px;
}

.gama-sealL__inner {
    padding: 22px 18px;
    background:
        radial-gradient(900px 520px at 30% 20%, rgba(212, 175, 55, .16), transparent 62%),
        linear-gradient(180deg, rgba(15, 42, 68, .06), rgba(15, 42, 68, .14));
    border-radius: 18px;
    clip-path: polygon(0 12%, 12% 0, 92% 0, 100% 14%, 100% 88%, 88% 100%, 10% 100%, 0 88%);
}

.gama-sealL__top {
    margin: 0;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 12px;
    color: #c09324;
}

.gama-sealL__big {
    margin: 10px 0 8px;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 900;
    color: #0F2A44;
}

.gama-sealL__sub {
    margin: 0;
    color: rgba(15, 42, 68, .70);
    font-size: 13px;
}

/* WOW 1: prism shine sweep */
.gama-sealL__shine {
    position: absolute;
    inset: -2px;
    pointer-events: none;
    opacity: 0;
    background:
        linear-gradient(115deg,
            transparent 0%,
            rgba(212, 175, 55, .00) 35%,
            rgba(212, 175, 55, .28) 50%,
            rgba(255, 255, 255, .22) 55%,
            rgba(212, 175, 55, .00) 70%,
            transparent 100%);
    transform: translateX(-55%);
}

/* WOW 2: gold dust shimmer (ultra subtle) */
.gama-sealL__dust {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background:
        radial-gradient(2px 2px at 12% 28%, rgba(212, 175, 55, .55), transparent 60%),
        radial-gradient(2px 2px at 20% 68%, rgba(212, 175, 55, .35), transparent 60%),
        radial-gradient(1.6px 1.6px at 54% 22%, rgba(212, 175, 55, .30), transparent 60%),
        radial-gradient(1.8px 1.8px at 74% 58%, rgba(212, 175, 55, .28), transparent 60%),
        radial-gradient(1.6px 1.6px at 86% 34%, rgba(212, 175, 55, .26), transparent 60%);
    filter: blur(.1px);
    animation: gamaGoldDust 6.5s ease-in-out infinite;
}

@keyframes gamaGoldDust {

    0%,
    100% {
        transform: translateY(0);
        opacity: .22;
    }

    50% {
        transform: translateY(-6px);
        opacity: .34;
    }
}

@media (hover:hover) and (pointer:fine) {
    .gama-sealL:hover {
        box-shadow:
            0 44px 110px rgba(15, 42, 68, .18),
            inset 0 0 0 1px rgba(212, 175, 55, .28);
    }

    .gama-sealL:hover .gama-sealL__shine {
        opacity: 1;
        animation: gamaSealSweepL 1.25s ease forwards;
    }
}

@keyframes gamaSealSweepL {
    0% {
        transform: translateX(-60%);
    }

    100% {
        transform: translateX(60%);
    }
}

/* Timeline ribbon */
.gama-ribbonlineL {
    display: grid;
    gap: 12px;
}

.gama-stepL {
    position: relative;
    padding: 18px;
    background: rgba(255, 255, 255, .52);
    box-shadow:
        0 22px 60px rgba(15, 42, 68, .12),
        inset 0 0 0 1px rgba(15, 42, 68, .08);
    clip-path: polygon(0 18%, 18px 0, 92% 0, 100% 18%, 100% 82%, 92% 100%, 18px 100%, 0 82%);
}

.gama-stepL__num {
    display: inline-block;
    font-weight: 900;
    letter-spacing: .08em;
    color: #c09324;
    margin-bottom: 6px;
}

.gama-stepL__title {
    display: block;
    font-weight: 900;
    color: #0F2A44;
    font-size: 16px;
}

.gama-stepL__text {
    display: block;
    margin-top: 6px;
    color: rgba(15, 42, 68, .72);
    font-size: 13.5px;
    line-height: 1.55;
}

.gama-stepL__cut {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 34px;
    height: 34px;
    background: rgba(212, 175, 55, .18);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .24);
    opacity: .95;
}

.gama-guaranteeL__note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: rgba(15, 42, 68, .72);
    background: rgba(255, 255, 255, .40);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .14);
    clip-path: polygon(0 22%, 22px 0, 92% 0, 100% 22%, 100% 78%, 92% 100%, 22px 100%, 0 78%);
}

.gama-guaranteeL__spark {
    width: 10px;
    height: 10px;
    background: rgba(212, 175, 55, .92);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, .12);
}

/* Responsive */
@media (max-width: 980px) {
    .gama-guaranteeL__grid {
        grid-template-columns: 1fr;
        padding: 68px 0;
    }
}







/* =========================================================
  Floating Luxury Showcase — DARK VERSION (WOW)
========================================================= */

.gama-floating {
    position: relative;
    padding: 100px 0 110px;
    background:
        radial-gradient(900px 600px at 50% 0%, rgba(212, 175, 55, .18), transparent 65%),
        radial-gradient(700px 500px at 10% 60%, rgba(212, 175, 55, .08), transparent 70%),
        linear-gradient(180deg, #0d0d0c 0%, #282c23 50%, #070F18 100%);
    text-align: center;
    overflow: hidden;
    color: #F4F7FA;
}

/* subtle luxury grain */
.gama-floating::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* Kicker */

.gama-floating__kicker {
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
    color: #fee87f;
}

/* Title */

.gama-floating__title {
    margin: 20px 0;
    font-size: clamp(40px, 4vw, 68px);
    line-height: 1.05;
    color: #FFFFFF;
}

/* Divider */

.gama-floating__divider {
    width: 140px;
    height: 2px;
    margin: 30px auto;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* Lead */

.gama-floating__lead {
    max-width: 640px;
    margin: 0 auto 100px;
    font-size: 17px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
}

/* =========================================================
  Floating Tiles
========================================================= */

.gama-floating__tiles {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 70px;
    perspective: 1400px;
    flex-wrap: wrap;
}

/* Base tile */

.gama-tile {
    width: 280px;
    padding: 50px 35px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 22px;
    box-shadow:
        0 50px 120px rgba(0, 0, 0, .45),
        inset 0 0 0 1px rgba(212, 175, 55, .08);
    transition: transform .6s cubic-bezier(.2, .8, .2, 1),
        box-shadow .6s ease;
    position: relative;
}

/* Gold glow under tile */

.gama-tile::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, .25), transparent 70%);
    opacity: .4;
    z-index: -1;
}

/* Numbers */

.gama-tile__num {
    font-weight: 900;
    color: #D4AF37;
    font-size: 14px;
    letter-spacing: .18em;
}

/* Headings */

.gama-tile h3 {
    margin: 18px 0 12px;
    font-size: 22px;
    color: #FFFFFF;
}

.gama-tile p {
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

/* Positioning offsets */

.gama-tile--one {
    transform: translateY(0px);
}

.gama-tile--two {
    transform: translateY(-70px);
    /* 🔥 Central tile lifted */
}

.gama-tile--three {
    transform: translateY(0px);
}

/* Hover WOW */

@media (hover:hover) and (pointer:fine) {
    .gama-tile:hover {
        transform: translateY(-30px) rotateX(8deg);
        box-shadow:
            0 70px 160px rgba(0, 0, 0, .55),
            inset 0 0 0 1px rgba(212, 175, 55, .25);
    }
}

/* CTA */

.gama-floating__cta {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.gama-tile--two {
    margin-bottom: 25px;
    margin-top: -25px;
}


/* Mobile adjustments */

@media (max-width: 900px) {
    .gama-floating__tiles {
        gap: 15px;
    }

    .gama-tile--two {
        transform: translateY(0);
    }

    .gama-tile--two {
        margin-bottom: 0;
        margin-top: 0;
    }


}







/* =========================================================
  FAQ (Luxury Gradient / Light -> Dark)
  Project: GAMA ROOFING INC
  Notes:
  - Smooth background transition light -> dark inside one section
  - Elegant accordion with gold seam + soft glow
========================================================= */

.gama-faqLux {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 6vw, 92px) 0;
}

/* Smooth background transition */
.gama-faqLux::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(1100px 600px at 22% 15%, rgb(246 241 231), transparent 60%),
        linear-gradient(180deg, #F4F0E7 0%, #EEE7DA 28%, #292d23 72%, #242822 100%);
}

/* Subtle luxury grain */
.gama-faqLux::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .08;
    mix-blend-mode: multiply;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* Grid */
.gama-faqLux__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(22px, 4vw, 56px);
    align-items: start;
}

/* Left copy */
.gama-faqLux__kicker {
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #c09324;
    margin: 0 0 10px;
}

.gama-faqLux__title {
    margin: 0 0 14px;
    line-height: 1.02;
    font-weight: 800;
    font-size: clamp(34px, 3.7vw, 56px);
    color: #0F2235;
}

.gama-faqLux__title span {
    position: relative;
}

.gama-faqLux__title span::after {
    content: "";
    position: absolute;
    left: -6px;
    right: -6px;
    bottom: .08em;
    height: .42em;
    background: rgba(212, 175, 55, .18);
    border-radius: 999px;
    z-index: -1;
}

/* Lead text: readable on gradient */
.gama-faqLux__lead {
    margin: 0 0 18px;
    max-width: 52ch;
    font-size: 16.5px;
    line-height: 1.7;
    color: rgba(20, 26, 30, .76);
}

.gama-faqLux__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 20px;
    color: rgba(20, 26, 30, .62);
    font-weight: 600;
}

.gama-faqLux__metaDot {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background: linear-gradient(180deg, #D4AF37, #C5A021);
    box-shadow: 0 8px 18px rgba(212, 175, 55, .22);
}

.gama-faqLux__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Right panel */
.gama-faqLux__panel {
    position: relative;
}

/* “Glass” stack on the dark part */
.gama-faqLux__stack {
    border-radius: 22px;
    padding: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .18));
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, .22),
        0 0 0 1px rgba(212, 175, 55, .12) inset;
    backdrop-filter: blur(10px);
}

/* Items */
.gama-faqLux__item {
    position: relative;
    border-radius: 18px;
    margin: 10px 0;
    overflow: hidden;
    background: rgba(10, 14, 18, .55);
    border: 1px solid rgba(212, 175, 55, .18);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .20);
}

/* Gold seam on the left (reveals on open/hover) */
.gama-faqLux__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #D4AF37, #C5A021);
    opacity: .25;
    transition: opacity .25s ease, width .25s ease;
}

/* Summary */
.gama-faqLux__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    user-select: none;
}

.gama-faqLux__q::-webkit-details-marker {
    display: none;
}

.gama-faqLux__num {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(212, 175, 55, .18);
    border: 1px solid rgba(212, 175, 55, .22);
    color: rgba(255, 255, 255, .92);
    font-weight: 800;
    font-size: 13px;
}

.gama-faqLux__qText {
    flex: 1;
    color: rgba(255, 255, 255, .92);
    font-weight: 700;
    line-height: 1.25;
}

/* Plus/Minus icon */
.gama-faqLux__icon {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    position: relative;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

.gama-faqLux__icon::before,
.gama-faqLux__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 14px;
    height: 2px;
    background: #fee87f;
    border-radius: 999px;
}

.gama-faqLux__icon::after {
    width: 2px;
    height: 14px;
}

/* Answer */
.gama-faqLux__a {
    padding: 0 16px 16px 66px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.7;
    font-size: 15.5px;
}

/* Open state */
.gama-faqLux__item[open]::before {
    opacity: 1;
    width: 5px;
}

.gama-faqLux__item[open] .gama-faqLux__icon::after {
    transform: scaleY(0);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease;
}

/* Hover: subtle glow */
@media (hover:hover) and (pointer:fine) {
    .gama-faqLux__item:hover {
        border-color: rgba(212, 175, 55, .32);
        box-shadow: 0 14px 34px rgba(0, 0, 0, .26);
    }

    .gama-faqLux__item:hover::before {
        opacity: .9;
    }
}

/* Bottom note */
.gama-faqLux__foot {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(10, 14, 18, .40);
    border: 1px solid rgba(212, 175, 55, .16);
    color: rgba(255, 255, 255, .70);
}

.gama-faqLux__footMark {
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    background: linear-gradient(180deg, #D4AF37, #C5A021);
}

/* Responsive: stack */
@media (max-width: 980px) {
    .gama-faqLux__grid {
        grid-template-columns: 1fr;
    }

    .gama-faqLux__lead {
        max-width: 65ch;
    }
}







/* =========================================================
  CONTACT — WPForms (ID 75) polish
  Goal:
  - Reduce vertical spacing
  - Make inputs premium + consistent
  - Improve labels + button
========================================================= */

#gama-contact-form #wpforms-75 {
    /* keep the form tighter inside your dark panel */
    margin: 0;
}

#gama-contact-form #wpforms-75 .wpforms-field-container {
    display: grid;
    gap: 12px;
    /* ✅ smaller vertical spacing between fields */
}

#gama-contact-form #wpforms-75 .wpforms-field {
    margin: 0 !important;
    /* ✅ remove default WPForms margins */
    padding: 0 !important;
}

/* Labels */
#gama-contact-form #wpforms-75 .wpforms-field-label {
    margin: 0 0 6px !important;
    font-weight: 900 !important;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .86) !important;
    font-size: 14px !important;
}

/* Inputs + textarea */
#gama-contact-form #wpforms-75 input[type="text"],
#gama-contact-form #wpforms-75 input[type="email"],
#gama-contact-form #wpforms-75 input[type="tel"],
#gama-contact-form #wpforms-75 textarea {
    width: 100% !important;
    height: 46px !important;
    /* ✅ smaller height */
    padding: 10px 14px !important;
    /* ✅ tighter padding */
    border-radius: 14px !important;
    background: rgba(7, 10, 15, .55) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    color: rgba(255, 255, 255, .92) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    outline: none !important;
}

/* Textarea height */
#gama-contact-form #wpforms-75 textarea {
    height: 140px !important;
    /* ✅ nice compact message box */
    padding: 12px 14px !important;
    resize: vertical;
    /* user can resize if needed */
    min-height: 120px;
}

/* Placeholder */
#gama-contact-form #wpforms-75 ::placeholder {
    color: rgba(255, 255, 255, .42) !important;
}

/* Focus */
#gama-contact-form #wpforms-75 input:focus,
#gama-contact-form #wpforms-75 textarea:focus {
    border-color: rgba(212, 175, 55, .55) !important;
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, .14),
        inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* Submit row spacing */
#gama-contact-form #wpforms-75 .wpforms-submit-container {
    margin-top: 14px !important;
    /* ✅ tighter */
    padding-top: 0 !important;
}

/* Button (match your premium system) */
#gama-contact-form #wpforms-75 .wpforms-submit {
    width: 100%;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 14px 18px !important;
    font-weight: 950 !important;
    letter-spacing: .02em;
    cursor: pointer;
    background: linear-gradient(180deg, #fee87f 0%, #bc8e1e 100%) !important;
    color: #0B0F14 !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

@media (hover:hover) and (pointer:fine) {
    #gama-contact-form #wpforms-75 .wpforms-submit:hover {
        transform: translateY(-2px);
        filter: brightness(1.03);
        box-shadow: 0 20px 48px rgba(0, 0, 0, .45);
    }
}

/* Errors (clean) */
#gama-contact-form #wpforms-75 label.wpforms-error {
    margin-top: 6px !important;
    font-weight: 800 !important;
    color: rgba(255, 210, 120, .98) !important;
}

#gama-contact-form #wpforms-75 input.wpforms-error,
#gama-contact-form #wpforms-75 textarea.wpforms-error {
    border-color: rgba(255, 210, 120, .75) !important;
    box-shadow: 0 0 0 4px rgba(255, 210, 120, .12);
}

/* Hide honeypot visuals if WPForms outputs any label spacing */
#gama-contact-form #wpforms-75-field_4-container,
#gama-contact-form #wpforms-75-field_6-container {
    display: none !important;
}

.gama-modal__body #wpforms-75 {
    /* keep the form tighter inside your dark panel */
    margin: 0;
}

.gama-modal__body #wpforms-75 .wpforms-field-container {
    display: grid;
    gap: 12px;
    /* ✅ smaller vertical spacing between fields */
}

.gama-modal__body #wpforms-75 .wpforms-field {
    margin: 0 !important;
    /* ✅ remove default WPForms margins */
    padding: 0 !important;
}

/* Labels */
.gama-modal__body #wpforms-75 .wpforms-field-label {
    margin: 0 0 6px !important;
    font-weight: 900 !important;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .86) !important;
    font-size: 14px !important;
}

/* Inputs + textarea */
.gama-modal__body #wpforms-75 input[type="text"],
.gama-modal__body #wpforms-75 input[type="email"],
.gama-modal__body #wpforms-75 input[type="tel"],
.gama-modal__body #wpforms-75 textarea {
    width: 100% !important;
    height: 46px !important;
    /* ✅ smaller height */
    padding: 10px 14px !important;
    /* ✅ tighter padding */
    border-radius: 14px !important;
    background: rgba(7, 10, 15, .55) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    color: rgba(255, 255, 255, .92) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    outline: none !important;
}

/* Textarea height */
.gama-modal__body #wpforms-75 textarea {
    height: 140px !important;
    /* ✅ nice compact message box */
    padding: 12px 14px !important;
    resize: vertical;
    /* user can resize if needed */
    min-height: 120px;
}

/* Placeholder */
.gama-modal__body #wpforms-75 ::placeholder {
    color: rgba(255, 255, 255, .42) !important;
}

/* Focus */
.gama-modal__body #wpforms-75 input:focus,
.gama-modal__body #wpforms-75 textarea:focus {
    border-color: rgba(212, 175, 55, .55) !important;
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, .14),
        inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* Submit row spacing */
.gama-modal__body #wpforms-75 .wpforms-submit-container {
    margin-top: 14px !important;
    /* ✅ tighter */
    padding-top: 0 !important;
}

/* Button (match your premium system) */
.gama-modal__body #wpforms-75 .wpforms-submit {
    width: 100%;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 14px 18px !important;
    font-weight: 950 !important;
    letter-spacing: .02em;
    cursor: pointer;
    background: linear-gradient(180deg, #D4AF37 0%, #C5A021 100%) !important;
    color: #0B0F14 !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

@media (hover:hover) and (pointer:fine) {
    .gama-modal__body #wpforms-75 .wpforms-submit:hover {
        transform: translateY(-2px);
        filter: brightness(1.03);
        box-shadow: 0 20px 48px rgba(0, 0, 0, .45);
    }
}

/* Errors (clean) */
.gama-modal__body #wpforms-75 label.wpforms-error {
    margin-top: 6px !important;
    font-weight: 800 !important;
    color: rgba(255, 210, 120, .98) !important;
}

.gama-modal__body #wpforms-75 input.wpforms-error,
.gama-modal__body #wpforms-75 textarea.wpforms-error {
    border-color: rgba(255, 210, 120, .75) !important;
    box-shadow: 0 0 0 4px rgba(255, 210, 120, .12);
}

/* Hide honeypot visuals if WPForms outputs any label spacing */
.gama-modal__body #wpforms-75-field_4-container,
.gama-modal__body #wpforms-75-field_6-container {
    display: none !important;
}




/* =========================================================
  CONTACT FORM LAYOUT
  Name full width
  Phone + Email in one row
========================================================= */

/* grid layout for fields */
#gama-contact-form #wpforms-75 .wpforms-field-container,
.gama-modal__body #wpforms-75 .wpforms-field-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Phone */
#gama-contact-form #wpforms-75-field_5-container,
.gama-modal__body #wpforms-75-field_5-container {
    grid-column: 1;
}

/* Email */
#gama-contact-form #wpforms-75-field_2-container,
.gama-modal__body #wpforms-75-field_2-container {
    grid-column: 2;
}

/* Message full width */
#gama-contact-form #wpforms-75-field_3-container,
.gama-modal__body #wpforms-75-field_3-container {
    grid-column: 1 / -1;
}

/* inputs full width */
#gama-contact-form #wpforms-75 input,
#gama-contact-form #wpforms-75 textarea,
.gama-modal__body #wpforms-75 input,
.gama-modal__body #wpforms-75 textarea {
    width: 100% !important;
    max-width: 100% !important;
}

/* mobile layout */
@media (max-width: 700px) {

    #gama-contact-form #wpforms-75 .wpforms-field-container,
    .gama-modal__body #wpforms-75 .wpforms-field-container {
        grid-template-columns: 1fr;
    }

    #gama-contact-form #wpforms-75-field_5-container,
    #gama-contact-form #wpforms-75-field_2-container,
    .gama-modal__body #wpforms-75-field_5-container,
    .gama-modal__body #wpforms-75-field_2-container {
        grid-column: 1;
    }

}


/* =========================================================
   MESSAGE FIELD — full width
========================================================= */

#gama-contact-form #wpforms-75-field_3-container,
.gama-modal__body #wpforms-75-field_3-container {
    grid-column: 1 / -1 !important;
}

#gama-contact-form #wpforms-75-field_3-container textarea,
.gama-modal__body #wpforms-75-field_3-container textarea {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
}



/* =========================================================
  CONTACT FORM (ID 75) — Layout
  Name full width
  Phone + Email one row
  Message full width
========================================================= */

#gama-contact-form #wpforms-75 .wpforms-field-container,
.gama-modal__body #wpforms-75 .wpforms-field-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Full width fields */
#gama-contact-form #wpforms-75-field_1-container,
#gama-contact-form #wpforms-75-field_3-container,
.gama-modal__body #wpforms-75-field_1-container,
.gama-modal__body #wpforms-75-field_3-container {
    grid-column: 1 / -1 !important;
}

/* Phone left / Email right */
#gama-contact-form #wpforms-75-field_5-container,
.gama-modal__body #wpforms-75-field_5-container {
    grid-column: 1 !important;
}

#gama-contact-form #wpforms-75-field_2-container,
.gama-modal__body #wpforms-75-field_2-container {
    grid-column: 2 !important;
}

/* Force inputs/textarea to fill their grid cell */
#gama-contact-form #wpforms-75 input,
#gama-contact-form #wpforms-75 textarea,
.gama-modal__body #wpforms-75 input,
.gama-modal__body #wpforms-75 textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    /* ✅ helps in grid */
    display: block !important;
}

/* Mobile: stack everything */
@media (max-width: 700px) {

    #gama-contact-form #wpforms-75 .wpforms-field-container,
    .gama-modal__body #wpforms-75 .wpforms-field-container {
        grid-template-columns: 1fr;
    }

    #gama-contact-form #wpforms-75-field_5-container,
    #gama-contact-form #wpforms-75-field_2-container,
    .gama-modal__body #wpforms-75-field_5-container,
    .gama-modal__body #wpforms-75-field_2-container {
        grid-column: 1 / -1 !important;
    }
}



/* =========================================================
  WPForms FIX: <strong> wrapper breaks CSS grid
  - Make wrapper transparent for layout
  - Then Message can span full width
========================================================= */

#gama-contact-form #wpforms-75 .wpforms-field-container>strong,
.gama-modal__body .wpforms-field-container>strong {
    display: contents !important;
    /* ✅ key fix: children become grid items */
}




/* =========================================================
  CONTACT FAQ — plus/minus icon
========================================================= */

.gama-faq-item summary {
    position: relative;
    padding: 16px 54px 16px 16px;
    /* extra space on the right for icon */
    cursor: pointer;
    list-style: none;
}

/* Hide default marker */
.gama-faq-item summary::-webkit-details-marker {
    display: none;
}

.gama-faq-item summary::marker {
    content: "";
}

/* Closed state: plus */
.gama-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    color: #0F2235;
    background: rgba(212, 175, 55, .14);
    border: 1px solid rgba(212, 175, 55, .22);
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

/* Open state: minus */
.gama-faq-item[open] summary::after {
    content: "−";
    background: linear-gradient(180deg, #D4AF37 0%, #C5A021 100%);
    color: #0B0F14;
}

/* Optional subtle hover */
@media (hover:hover) and (pointer:fine) {
    .gama-faq-item summary:hover::after {
        transform: translateY(-50%) scale(1.04);
    }
}





/* =========================================================
  FAQ Grid fix:
  Make each card independent (no equal-height stretch)
========================================================= */

/* The grid should not stretch items to the tallest in the row */
.gama-faq-grid {
    align-items: start;
    /* ✅ key fix */
}

/* Ensure each details behaves like a normal block and doesn't stretch */
.gama-faq-item {
    align-self: start;
    /* ✅ keep its own height */
}

/* Optional: make open state look clean and premium */
.gama-faq-item[open] {
    border-color: rgba(212, 175, 55, .28);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .10);
}


/* =========================================================
PRIVACY POLICY PAGE
========================================================= */

.gama-legal-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: #f5f2ea;
}

.gama-legal-eyebrow {
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #caa43b;
    margin-bottom: 16px;
    font-weight: 600;
}

.gama-legal-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.gama-legal-subtitle {
    max-width: 640px;
    margin: 0 auto;
    font-size: 18px;
    color: #666;
}

.gama-legal-content {
    padding: 80px 20px 120px;
    background: white;
}

.gama-legal-wrapper {
    max-width: 760px;
    margin: auto;
}

.gama-legal-wrapper h2 {
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 22px;
}

.gama-legal-wrapper p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.gama-legal-updated {
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}



/* =========================================================
LEGAL PAGES — link styling
========================================================= */
.gama-legal-wrapper a {
    color: #0F2A44;
    font-weight: 900;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 42, 68, .18);
    padding-bottom: 2px;
}

.gama-legal-wrapper a:hover {
    border-color: rgba(212, 175, 55, .55);
}











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

.gama-footer {

    background: linear-gradient(180deg, #0b0f14 0%, #05070a 100%);
    color: rgba(255, 255, 255, .78);
    padding-top: 90px;

}

.gama-footer-grid {

    display: grid;

    /* Wide | Small | Small | Wide */
    grid-template-columns: 2fr 1fr 1fr 2fr;

    gap: 40px;
    padding-bottom: 60px;

}

.gama-footer-col:first-child {
    padding-right: 20px;
}

.gama-footer-col:last-child {
    padding-left: 20px;
}


.gama-footer-text {

    line-height: 1.7;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;

}

.gama-footer-title {

    font-size: 15px;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #d4af37;

}

.gama-footer-links,
.gama-footer-contact {

    list-style: none;
    padding: 0;
    margin: 0;

}

.gama-footer-links li,
.gama-footer-contact li {

    margin-bottom: 10px;

}

.gama-footer-links a,
.gama-footer-contact a {

    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: all .2s ease;

}

.gama-footer-links a:hover,
.gama-footer-contact a:hover {

    color: #d4af37;

}


/* bottom bar */

.gama-footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 0;
    font-size: 14px;

}

.gama-footer-bottom-inner {

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

}

.gama-footer-bottom p {

    margin: 4px 0;
    color: rgba(255, 255, 255, .55);

}


/* responsive */

@media(max-width:900px) {

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

}

@media(max-width:600px) {

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

    .gama-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

}


[data-footer*="type-1"] .ct-footer [data-row*="middle"]>div {
    margin: 0;
    padding: 0;
    width: 100%;
}





/* =========================================================
  HEADER — Luxury polish for Blocksy
  Project: GAMA Roofing Inc
========================================================= */

/* ---------- Header shell ---------- */
#header.ct-header [data-row="middle"] {
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 34, 53, .06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .03);
}

#header.ct-header [data-row="middle"] .ct-container {
    min-height: 92px;
    /* a little more premium breathing room */
}

/* ---------- Site title / logo text ---------- */
#header .site-title,
#header .site-title a,
#header .custom-logo-link+.site-title a {
    color: #0F2235 !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em;
    font-size: clamp(22px, 2vw, 28px);
    text-decoration: none;
}

#header .site-title a:hover {
    color: #0B1623 !important;
}

/* ---------- Main nav wrapper ---------- */
#header [data-column="end"] [data-items="primary"] {
    gap: 12px;
    align-items: center;
}

/* ---------- Menu ---------- */
#header #header-menu-1 .menu {
    gap: 8px;
}

#header #header-menu-1 .menu>li {
    position: relative;
}

/* Menu links */
#header #header-menu-1 .menu>li>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    max-height: 42px;
    padding: 0 14px !important;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: rgba(15, 34, 53, .78) !important;
    transition:
        color .22s ease,
        background-color .22s ease,
        transform .18s ease,
        box-shadow .22s ease;
}

/* Hover */
#header #header-menu-1 .menu>li>a:hover {
    color: #0F2235 !important;
    background: rgba(212, 175, 55, .10);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, .14);
    transform: translateY(-1px);
}

/* Active / current page */
#header #header-menu-1 .current-menu-item>a,
#header #header-menu-1 .current_page_item>a,
#header #header-menu-1 .current-menu-ancestor>a {
    color: #0F2235 !important;
    background: linear-gradient(180deg, rgba(212, 175, 55, .16), rgba(212, 175, 55, .10));
    box-shadow:
        inset 0 0 0 1px rgba(212, 175, 55, .22),
        0 8px 20px rgba(212, 175, 55, .08);
}

/* Elegant tiny underline accent */
#header #header-menu-1 .menu>li>a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #D4AF37, #C5A021);
    transform: translateX(-50%);
    transition: width .22s ease;
}

#header #header-menu-1 .menu>li>a:hover::after,
#header #header-menu-1 .current-menu-item>a::after,
#header #header-menu-1 .current_page_item>a::after,
#header #header-menu-1 .current-menu-ancestor>a::after {
    width: 18px;
}

/* ---------- CTA button ---------- */
#header .ct-header-cta .ct-button,
#header .ct-header-cta a.ct-button,
#header .ct-header-cta a[data-size] {
    min-height: 48px;
    padding: 0 24px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(212, 175, 55, .22) !important;
    background: linear-gradient(180deg, #fee87f 0%, #bc8e1e 100%) !important;
    color: #0B0F14 !important;
    font-size: 14px;
    font-weight: 900 !important;
    letter-spacing: .01em;
    box-shadow:
        0 14px 28px rgba(197, 160, 33, .22),
        inset 0 1px 0 rgba(255, 255, 255, .18);
    transition:
        transform .18s ease,
        box-shadow .22s ease,
        filter .22s ease,
        background .22s ease;
}

#header .ct-header-cta .ct-button:hover,
#header .ct-header-cta a.ct-button:hover,
#header .ct-header-cta a[data-size]:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow:
        0 18px 36px rgba(197, 160, 33, .28),
        inset 0 1px 0 rgba(255, 255, 255, .22);
}

/* Button focus */
#header .ct-header-cta .ct-button:focus-visible,
#header .ct-header-cta a.ct-button:focus-visible,
#header .ct-header-cta a[data-size]:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, .16),
        0 18px 36px rgba(197, 160, 33, .28);
}

/* ---------- Better spacing between menu and CTA ---------- */
#header .ct-header-cta {
    margin-left: 12px !important;
}

/* ---------- Sticky header polish ---------- */
#header.ct-header.ct-sticky-header,
#header.ct-header[data-sticky*="yes"] {
    box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
}

/* ---------- Responsive ---------- */
@media (max-width: 999px) {
    #header.ct-header [data-row="middle"] .ct-container {
        min-height: 78px;
    }

    #header .site-title,
    #header .site-title a,
    #header .custom-logo-link+.site-title a {
        font-size: 22px;
    }
}

.gama-footer-logo {
    width: 100%;
    max-width: 140px;
    height: auto;
    display: block;
    margin-bottom: 25px;
    filter: drop-shadow(0 7px 17px rgba(212, 175, 55, 0.25));
    border-radius: 10px;
}






/* Mobile footer: Quick Links + Legal side by side */
@media (max-width: 767px) {
    .gama-footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px 18px;
        align-items: start;
    }

    /* First column with logo/description takes full width */
    .gama-footer-grid>.gama-footer-col:first-child {
        grid-column: 1 / -1;
    }

    /* Contact also takes full width below */
    .gama-footer-grid>.gama-footer-col:last-child {
        grid-column: 1 / -1;
    }

    /* Make middle columns sit nicely together */
    .gama-footer-grid>.gama-footer-col:nth-child(2),
    .gama-footer-grid>.gama-footer-col:nth-child(3) {
        grid-column: span 1;
    }

    .gama-footer-grid {
        gap: 18px 14px;
    }

}