@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --forest:  #2a3d2a;
    --gold:    #b89a5a;
    --gold-lt: #d4b87a;
    --cream:   #f5f0e8;
    --warm:    #ede6d8;
    --white:   #faf8f4;
    --text:    #2c2a26;
    --muted:   #7a7060;
    --border:  rgba(184,154,90,0.22);
}
* { box-sizing: border-box; }

/* ===== PAGE TITLE ===== */
.page-title {
    position: relative;
    background-size: cover; background-position: center;
    padding: 130px 0 90px; text-align: center;
}
.page-title::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,30,20,.75) 0%, rgba(20,30,20,.45) 100%);
}
.page-title .title-outer { position: relative; z-index: 1; }
.page-title .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 68px; font-weight: 300; color: #fff;
    letter-spacing: 6px; margin-bottom: 14px; line-height: 1.1;
}
.page-breadcrumb {
    list-style: none; padding: 0; margin: 0;
    display: flex; justify-content: center; gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold-lt);
}
.page-breadcrumb li+li::before { content: '/'; margin-right: 8px; opacity: .5; }
.page-breadcrumb a { color: var(--gold-lt); text-decoration: none; }

/* ===== INTRO ===== */
.ex-intro {
    padding: 90px 0 50px;
    background: var(--white);
    text-align: center;
}
.ex-intro .eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.ex-intro .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300;
    color: var(--forest); line-height: 1.15;
    margin-bottom: 18px; letter-spacing: 1px;
}
.ex-intro p {
    font-family: 'Jost', sans-serif;
    font-size: 14.5px; line-height: 2;
    color: var(--muted);
    max-width: 700px; margin: 0 auto 10px;
}
.ex-divider { width: 48px; height: 2px; background: var(--gold); margin: 24px auto 0; }

/* ===== CATEGORY SECTIONS ===== */
.ex-category {
    padding: 60px 0 20px;
    background: var(--cream);
}
.ex-category.alt { background: var(--white); }
.ex-cat-head { text-align: center; margin-bottom: 46px; }
.ex-cat-head .eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
}
.ex-cat-head .cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 300;
    color: var(--forest); letter-spacing: 1px;
}

/* ===== 360 CARD ===== */
.ex-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
}
.ex-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(42,61,42,0.14);
}
.ex-card-visual {
    position: relative;
    height: 190px;
    background-size: cover;
    background-position: center;
    display: flex; align-items: flex-end; justify-content: flex-start;
    overflow: hidden;
    cursor: pointer;
}
.ex-card-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,30,20,0.05) 40%, rgba(20,30,20,0.65) 100%);
    transition: background .35s ease;
}
.ex-card:hover .ex-card-visual::after {
    background: linear-gradient(180deg, rgba(20,30,20,0.15) 30%, rgba(20,30,20,0.75) 100%);
}
.ex-card-visual .ring {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 56px; height: 56px;
    border: 1.5px solid rgba(255,255,255,.75);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(20,30,20,0.28);
    transition: transform .4s ease, border-color .4s ease;
    z-index: 2;
}
.ex-card:hover .ex-card-visual .ring {
    transform: translate(-50%,-50%) scale(1.15) rotate(20deg);
    border-color: var(--gold-lt);
}
.ex-card-visual svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.6; }
.ex-card-visual .badge-360 {
    position: absolute; top: 14px; right: 14px;
    font-family: 'Jost', sans-serif;
    font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
    color: var(--forest);
    background: var(--gold-lt);
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}
.ex-card-body {
    padding: 22px 24px 26px;
    text-align: center;
}
.ex-card-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
}
.ex-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px; font-weight: 500;
    color: var(--forest); margin-bottom: 16px;
}
.ex-card-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 10.5px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--forest);
    border: 1.5px solid var(--gold);
    padding: 10px 22px;
    text-decoration: none;
    transition: all .3s;
    background: none;
    cursor: pointer;
}
.ex-card-btn:hover { background: var(--forest); border-color: var(--forest); color: #fff; }
.ex-card-btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===== CTA ===== */
.ex-cta {
    padding: 90px 0;
    background: var(--forest);
    text-align: center;
}
.ex-cta .eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--gold-lt); margin-bottom: 14px;
}
.ex-cta .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px; font-weight: 300; color: #fff;
    margin-bottom: 16px; letter-spacing: 1px;
}
.ex-cta p {
    font-family: 'Jost', sans-serif;
    font-size: 14.5px; line-height: 2;
    color: rgba(255,255,255,.65);
    max-width: 580px; margin: 0 auto 34px;
}
.btn-primary-ex {
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    padding: 15px 38px;
    background: var(--gold); color: var(--forest);
    border: 1.5px solid var(--gold);
    text-decoration: none; display: inline-block;
    transition: all .3s;
}
.btn-primary-ex:hover { background: transparent; color: #fff; border-color: #fff; }

/* ===== 360 POPUP MODAL ===== */
.ex-modal-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(15,20,15,.92);
    display: none;
    align-items: center; justify-content: center;
    padding: 30px;
}
.ex-modal-overlay.active { display: flex; }
.ex-modal {
    background: var(--cream);
    max-width: 720px; width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    animation: exModalIn .3s ease;
}
@keyframes exModalIn {
    from { transform: scale(.94); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.ex-modal-img-wrap {
    position: relative;
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-color: var(--forest);
}
.ex-modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 40px; height: 40px;
    border: 1.5px solid rgba(255,255,255,.6);
    background: rgba(20,30,20,.5); color: #fff;
    font-size: 18px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s;
    z-index: 2;
}
.ex-modal-close:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.ex-modal-badge {
    position: absolute; top: 16px; left: 16px;
    font-family: 'Jost', sans-serif;
    font-size: 10.5px; font-weight: 600; letter-spacing: 1.5px;
    color: var(--forest);
    background: var(--gold-lt);
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}
.ex-modal-body {
    padding: 26px 30px 30px;
    text-align: center;
}
.ex-modal-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 500;
    color: var(--forest); margin-bottom: 8px;
}
.ex-modal-body p {
    font-family: 'Jost', sans-serif;
    font-size: 13px; line-height: 1.8;
    color: var(--muted);
    max-width: 480px; margin: 0 auto 22px;
}
.ex-modal-actions {
    display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.ex-modal-btn-primary {
    font-family: 'Jost', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 13px 30px;
    background: var(--forest); color: #fff;
    border: 1.5px solid var(--forest);
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transition: all .3s;
}
.ex-modal-btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }
.ex-modal-btn-primary svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* RESPONSIVE */
@media(max-width:991px) {
    .ex-intro .section-title { font-size: 38px; }
    .ex-cat-head .cat-title { font-size: 32px; }
    .ex-cta .section-title { font-size: 34px; }
}
@media(max-width:767px) {
    .page-title .title { font-size: 40px; }
    .ex-card-visual { height: 160px; }
    .ex-modal-img-wrap { height: 260px; }
    .ex-modal-body { padding: 20px 20px 24px; }
}