:root {
    --ink: #0f0a04;
    --dark: #1c1007;
    --brown: #3d1f08;
    --amber: #b8722a;
    --gold: #d4a843;
    --gold-lt: #f0cc7a;
    --cream: #fdf6eb;
    --cream2: #f5ead6;
    --muted: #7a5c3a;
    --white: #ffffff;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}



/* ── HERO: single full-bleed image ── */
.cat-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.cat-hero-bg {
    position: absolute;
    inset: 0
}

.cat-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.48) saturate(1.2);
    animation: heroZoom 18s ease-in-out infinite alternate
}

@keyframes heroZoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.07)
    }
}

.cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 10, 4, 0.18) 0%, rgba(15, 10, 4, 0.62) 100%)
}

.cat-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 860px
}

.cat-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gold-lt);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 1.6rem
}

.cat-hero-eyebrow::before,
.cat-hero-eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold)
}

.cat-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.5rem
}

.cat-hero-title em {
    font-style: italic;
    color: var(--gold-lt)
}

.cat-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    margin: 0 auto 2.4rem;
    line-height: 1.8
}

.cat-hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.95rem 2.4rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s
}

.btn-primary:hover {
    background: var(--gold-lt);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(212, 168, 67, 0.4)
}

.btn-outline {
    background: transparent;
    color: var(--white);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.95rem 2.4rem;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-lt);
    transform: translateY(-3px)
}

.cat-hero-scroll {
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase
}

.cat-hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(212, 168, 67, 0.8), transparent);
    animation: scrollLine 2s ease-in-out infinite
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

/* TICKER */
.cat-ticker {
    background: var(--brown);
    overflow: hidden;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(212, 168, 67, 0.2);
    border-bottom: 1px solid rgba(212, 168, 67, 0.2)
}

.cat-ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 28s linear infinite;
    width: max-content
}

.cat-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--gold-lt);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0 2.5rem;
    white-space: nowrap
}

.cat-ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold)
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* UTILITY */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem
}

.sec-label::before {
    content: '';
    width: 22px;
    height: 1.5px;
    background: var(--amber)
}

.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.1
}

.sec-title em {
    font-style: italic;
    color: var(--amber)
}

.sec-body {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 540px
}

/* ── WHY US ── */
.cat-why {
    padding: 40px 5%;
    background: var(--cream)
}

.cat-why-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 5rem;
    align-items: center
}

.cat-why-visual-wrap {
    position: relative;
    padding-bottom: 28px
}

.cat-why-img-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.cat-why-img-main {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    grid-column: span 2;
    transition: transform 0.5s ease
}

.cat-why-img-sub {
    width: 100%;
    height: 155px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease
}

.cat-why-img-main:hover,
.cat-why-img-sub:hover {
    transform: scale(1.025)
}

.cat-why-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.3)
}

.cat-why-content {
    display: flex;
    flex-direction: column;
    justify-content: center
}

.cat-why-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem
}

.cat-why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.cat-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brown), var(--amber));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-lt);
    font-size: 1rem;
    flex-shrink: 0
}

.cat-why-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.25rem
}

.cat-why-item p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65
}

@media(max-width:960px) {
    .cat-why-inner {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .cat-why-badge {
        position: static;
        transform: none;
        display: inline-block;
        margin-top: 14px
    }
}

/* STATS */
.cat-stats {
    background: var(--dark);
    padding: 4.5rem 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    overflow: hidden
}

.cat-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 38px, rgba(212, 168, 67, 0.03) 38px, rgba(212, 168, 67, 0.03) 40px)
}

.cat-stat {
    text-align: center;
    position: relative;
    z-index: 1
}

.cat-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1
}

.cat-stat-num sup {
    font-size: 0.45em;
    vertical-align: super
}

.cat-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem
}

@media(max-width:700px) {
    .cat-stats {
        grid-template-columns: repeat(2, 1fr)
    }
}

.cat-stats+section,
.cat-stats+div {
    margin-top: 0 !important;

}

/* PACKAGES */
.cat-packages {
    padding: 50px 5%;
    background: var(--cream2)
}

.cat-packages-head {
    text-align: center;
    margin-bottom: 4rem
}

.cat-pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.cat-pkg {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.22, 0.9, 0.4, 1.1), box-shadow 0.4s;
    border: 1px solid rgba(61, 31, 8, 0.08)
}

.cat-pkg:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(61, 31, 8, 0.15)
}

.cat-pkg.featured {
    border: 2px solid var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(212, 168, 67, 0.2)
}

.cat-pkg.featured:hover {
    transform: translateY(-14px)
}

.cat-pkg-ribbon {
    position: absolute;
    top: 18px;
    right: -8px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 4px 0 0 4px;
    z-index: 2
}

.cat-pkg-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease
}

.cat-pkg:hover .cat-pkg-img {
    transform: scale(1.04)
}

.cat-pkg-img-wrap {
    overflow: hidden
}

.cat-pkg-body {
    padding: 1.8rem 2rem 2.2rem
}

.cat-pkg-tier {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.5rem
}

.cat-pkg-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.8rem;
    line-height: 1.1
}

.cat-pkg-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.4rem
}

.cat-pkg-features {
    list-style: none;
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem
}

.cat-pkg-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.86rem;
    color: var(--ink)
}

.cat-pkg-features li i {
    color: var(--amber);
    font-size: 0.8rem
}

.cat-pkg-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.28s;
    border: 1.5px solid var(--brown);
    background: transparent;
    color: var(--brown)
}

.cat-pkg.featured .cat-pkg-cta {
    background: var(--brown);
    color: var(--gold-lt);
    border-color: var(--brown)
}

.cat-pkg-cta:hover {
    background: var(--brown);
    color: var(--gold-lt)
}

@media(max-width:960px) {
    .cat-pkg-grid {
        grid-template-columns: 1fr;
        max-width: 480px
    }
}

/* OCCASIONS */
.cat-occasions {
    padding: 40px 5%;
    background: var(--cream)
}

.cat-occ-head {
    text-align: center;
    margin-bottom: 4rem
}

.cat-occ-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    max-width: 1200px;
    margin: 0 auto
}

.cat-occ-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3
}

.cat-occ-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.75)
}

.cat-occ-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.55)
}

.cat-occ-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 10, 4, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem
}

.cat-occ-icon {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.35s;
    opacity: 0
}

.cat-occ-card:hover .cat-occ-icon {
    opacity: 1;
    transform: translateY(0)
}

.cat-occ-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem
}

.cat-occ-overlay p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    line-height: 1.6
}

.cat-occ-card:hover .cat-occ-overlay p {
    max-height: 60px
}

@media(max-width:800px) {
    .cat-occ-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .cat-occ-grid {
        grid-template-columns: 1fr
    }
}

/* STEPS */
.cat-steps {
    padding: 40px 5%;
    background: var(--dark);
    position: relative;
    overflow: hidden
}

.cat-steps::before {
    content: 'CATERING';
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.025);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none
}

.cat-steps-head {
    text-align: center;
    margin-bottom: 5rem
}

.cat-steps-head .sec-title {
    color: var(--white)
}

.cat-steps-head .sec-label {
    color: var(--gold)
}

.cat-steps-head .sec-label::before {
    background: var(--gold)
}

.cat-steps-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.cat-steps-track::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.cat-step {
    text-align: center
}

.cat-step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--brown);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-lt);
    margin: 0 auto 1.4rem;
    position: relative;
    z-index: 1;
    transition: all 0.35s
}

.cat-step:hover .cat-step-num {
    background: var(--gold);
    color: var(--ink);
    transform: scale(1.1)
}

.cat-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem
}

.cat-step p {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7
}

@media(max-width:700px) {
    .cat-steps-track {
        grid-template-columns: repeat(2, 1fr)
    }

    .cat-steps-track::before {
        display: none
    }
}

body {
    margin: 0;
    padding: 0;
}

.cat-steps {
    margin-bottom: 0 !important;
    padding-bottom: 40px;
}

.cat-steps+section,
.cat-steps+div {
    margin-top: 0 !important;

}

/* =========================
   GALLERY SECTION
========================= */

.cat-gallery {
    padding: 80px 5%;
    background: var(--cream2);
    overflow: hidden;
    margin-bottom: 0 !important;
}

.cat-gallery+section,
.cat-gallery+div,
.cat-gallery+footer {
    margin-top: 0 !important;

}

/* =========================
   HEADING
========================= */

.cat-gallery-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.cat-gallery-head .sec-title {
    margin-top: 10px;
}

/* =========================
   GRID
========================= */

.cat-gal-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 85px;
    gap: 14px;
    max-width: 1250px;
    margin: 0 auto;
}

/* =========================
   GRID POSITIONS
========================= */

.cat-gal-cell.g-a {
    grid-column: 1 / 6;
    grid-row: 1 / 5;
}

.cat-gal-cell.g-b {
    grid-column: 6 / 9;
    grid-row: 1 / 3;
}

.cat-gal-cell.g-c {
    grid-column: 9 / 13;
    grid-row: 1 / 4;
}

.cat-gal-cell.g-d {
    grid-column: 6 / 9;
    grid-row: 3 / 6;
}

.cat-gal-cell.g-e {
    grid-column: 9 / 11;
    grid-row: 4 / 6;
}

.cat-gal-cell.g-f {
    grid-column: 11 / 13;
    grid-row: 4 / 6;
}

.cat-gal-cell.g-g {
    grid-column: 1 / 13;
    grid-row: 6 / 10;
}

/* =========================
   GALLERY CELL
========================= */

.cat-gal-cell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    background: #ddd;
}

/* IMAGE */

.cat-gal-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.cat-gal-cell:hover img {
    transform: scale(1.08);
}

/* =========================
   OVERLAY
========================= */

.cat-gal-info {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    transition: 0.4s ease;
}

.cat-gal-cell:hover .cat-gal-info {
    background: rgba(0, 0, 0, 0.45);
}

/* TAG */

.cat-gal-info-tag {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-lt);
    opacity: 0;
    transform: translateY(8px);
    transition: 0.35s ease;
}

/* TITLE */

.cat-gal-info-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.35s ease;
}

.cat-gal-cell:hover .cat-gal-info-tag,
.cat-gal-cell:hover .cat-gal-info-name {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   ZOOM ICON
========================= */

.cat-gal-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    opacity: 0;
    transition: 0.3s ease;
}

.cat-gal-cell:hover .cat-gal-zoom {
    opacity: 1;
}

/* =========================
   TABLET
========================= */

@media(max-width:900px) {

    .cat-gal-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 80px;
    }

    .cat-gal-cell.g-a {
        grid-column: 1 / 7;
        grid-row: 1 / 4;
    }

    .cat-gal-cell.g-b {
        grid-column: 1 / 4;
        grid-row: 4 / 6;
    }

    .cat-gal-cell.g-c {
        grid-column: 4 / 7;
        grid-row: 4 / 6;
    }

    .cat-gal-cell.g-d {
        grid-column: 1 / 4;
        grid-row: 6 / 9;
    }

    .cat-gal-cell.g-e {
        grid-column: 4 / 7;
        grid-row: 6 / 9;
    }

    .cat-gal-cell.g-f {
        grid-column: 1 / 7;
        grid-row: 9 / 12;
    }

    .cat-gal-cell.g-g {
        grid-column: 1 / 7;
        grid-row: 12 / 15;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:600px) {

    .cat-gallery {
        padding: 60px 20px;
    }

    .cat-gallery-head {
        margin-bottom: 2.5rem;
    }

    .cat-gallery-head .sec-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .cat-gal-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .cat-gal-cell {
        height: 240px;
    }
}

/* TESTIMONIALS */
.cat-testimonials {
    padding: 30px 5%;
    background: var(--cream)
}

.cat-test-head {
    text-align: center;
    margin-bottom: 4rem
}

.cat-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto
}

.cat-test-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.2rem;
    border: 1px solid rgba(61, 31, 8, 0.07);
    position: relative;
    transition: transform 0.35s, box-shadow 0.35s
}

.cat-test-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(61, 31, 8, 0.1)
}

.cat-test-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold-lt);
    line-height: 1;
    position: absolute;
    top: 0.8rem;
    left: 1.5rem;
    opacity: 0.5
}

.cat-test-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem
}

.cat-test-text {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.6rem;
    font-style: italic
}

.cat-test-author {
    display: flex;
    align-items: center;
    gap: 0.9rem
}

.cat-test-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-lt)
}

.cat-test-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brown)
}

.cat-test-event {
    font-size: 0.78rem;
    color: var(--muted)
}

@media(max-width:860px) {
    .cat-test-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto
    }
}

/* ENQUIRY */
.cat-enquiry {
    padding: 90px 5%;
    background: var(--brown);
    position: relative;
    overflow: hidden
}

.cat-enquiry::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.07);
    top: -200px;
    right: -100px;
    pointer-events: none
}

.cat-enquiry::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.05);
    bottom: -150px;
    left: -80px;
    pointer-events: none
}

.cat-enquiry-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.cat-enquiry-head {
    text-align: center;
    margin-bottom: 3.5rem
}

.cat-enquiry-head .sec-label {
    color: var(--gold-lt)
}

.cat-enquiry-head .sec-label::before {
    background: var(--gold-lt)
}

.cat-enquiry-head .sec-title {
    color: var(--white)
}

.cat-enquiry-head p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.8rem;
    font-size: 0.95rem
}

.cat-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem
}

.cat-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem
}

.cat-form-group.full {
    grid-column: span 2
}

.cat-form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55)
}

.cat-form-group input,
.cat-form-group select,
.cat-form-group textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    width: 100%
}

.cat-form-group input::placeholder,
.cat-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3)
}

.cat-form-group select option {
    background: var(--brown);
    color: var(--white)
}

.cat-form-group input:focus,
.cat-form-group select:focus,
.cat-form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1)
}

.cat-form-group textarea {
    resize: vertical;
    min-height: 110px
}

.cat-form-submit {
    grid-column: span 2;
    text-align: center;
    margin-top: 0.5rem
}

.cat-form-submit button {
    background: var(--gold);
    border: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.05rem 3.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s
}

.cat-form-submit button:hover {
    background: var(--gold-lt);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25)
}

@media(max-width:620px) {
    .cat-form {
        grid-template-columns: 1fr
    }

    .cat-form-group.full,
    .cat-form-submit {
        grid-column: span 1
    }
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.cat-enquiry {
    margin-bottom: 0 !important;
    padding-bottom: 40px !important;
}

.cat-enquiry+section,
.cat-enquiry+div,
.cat-enquiry+footer {
    margin-top: 0 !important;

}