/* =============================================================================
   CARTERET COFFEE GUIDE — coffee-guide.css
   Extracted 1:1 from the design prototype.
   All component classes prefixed ccg- to avoid conflicts with parent theme.
   ============================================================================= */

/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
.ccg-page *,
.ccg-page *::before,
.ccg-page *::after { box-sizing: border-box; }

.ccg-page { scroll-behavior: smooth; }

.ccg-wrap {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    background: #17100D;
    color: #F4EBDF;
    font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.ccg-wrap ::selection { background: #D4A574; color: #17100D; }

/* ─── KEYFRAME ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes ccg-zoom {
    0%   { transform: scale(1.02); }
    100% { transform: scale(1.13); }
}
@keyframes ccg-rise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
}
@keyframes ccg-steam {
    0%   { transform: translate(-50%, 2px) scaleX(1);   opacity: 0; }
    22%  { opacity: .55; }
    100% { transform: translate(-50%, -36px) scaleX(1.3); opacity: 0; }
}
@keyframes ccg-bob {
    0%, 100% { transform: translate(-50%, 0); }
    50%       { transform: translate(-50%, 9px); }
}

/* ─── GRAIN OVERLAY ────────────────────────────────────────────────────────── */
.ccg-grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: .5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
.ccg-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 60;
    padding: 22px 32px;
    transition: background .5s ease, padding .35s ease, box-shadow .35s ease;
    background: transparent;
}
.ccg-nav--scrolled {
    background: rgba(16,11,9,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(244,235,223,.06), 0 18px 40px -28px rgba(0,0,0,.85);
    padding-top: 14px;
    padding-bottom: 14px;
}
.ccg-nav__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ccg-nav__logo {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: .01em;
    color: #F4EBDF;
    text-decoration: none;
}
.ccg-nav__links {
    display: none;
    align-items: center;
    gap: 34px;
}
@media (min-width: 880px) {
    .ccg-nav__links  { display: flex; }
    .ccg-nav__burger { display: none !important; }
}
.ccg-nav__link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
    color: rgba(244,235,223,.82);
    text-decoration: none;
    transition: color .25s;
}
.ccg-nav__link:hover { color: #D4A574; }
.ccg-nav__link--cta {
    color: #17100D;
    background: #D4A574;
    padding: 9px 18px;
    border-radius: 2px;
    transition: opacity .25s;
}
.ccg-nav__link--cta:hover { color: #17100D; opacity: .85; }
.ccg-nav__burger {
    display: flex;
    background: none;
    border: none;
    color: #F4EBDF;
    cursor: pointer;
    padding: 6px;
}
.ccg-mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.ccg-mobile-menu__inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 4px 8px;
}
.ccg-mobile-menu__link {
    font-size: 15px;
    color: rgba(244,235,223,.85);
    text-decoration: none;
    padding: 10px 0;
    display: block;
}
.ccg-mobile-menu__link--accent { color: #D4A574; }

/* ─── HERO ───────────────────────────────────────────────────────────────────── */
.ccg-hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.ccg-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ccg-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: ccg-zoom 26s ease-in-out infinite alternate;
}
.ccg-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(12,58,69,.32) 0%,
        rgba(23,16,13,.34) 42%,
        rgba(23,16,13,.92) 100%);
}
.ccg-hero__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% 18%,
        rgba(212,165,116,.16) 0%,
        rgba(23,16,13,0) 55%);
}
.ccg-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px 120px;
    max-width: 900px;
    animation: ccg-rise 1.3s cubic-bezier(.16,1,.3,1) both;
}
.ccg-hero__eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: #D4A574;
    margin-bottom: 26px;
}
.ccg-hero__title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(2.9rem, 7.2vw, 6rem);
    line-height: 1.03;
    letter-spacing: -.01em;
    color: #FBF5EC;
    margin: 0 0 24px;
    text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.ccg-hero__title em {
    font-style: italic;
    font-weight: 400;
    color: #F0DEC8;
}
.ccg-hero__desc {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(244,235,223,.82);
}
.ccg-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.ccg-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
    border-radius: 2px;
    transition: transform .3s, box-shadow .3s, background .3s, border-color .3s;
    cursor: pointer;
}
.ccg-btn--primary {
    background: #D4A574;
    color: #17100D;
    box-shadow: 0 18px 40px -16px rgba(212,165,116,.5);
}
.ccg-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px -16px rgba(212,165,116,.6);
    color: #17100D;
}
.ccg-btn--ghost {
    background: rgba(244,235,223,.06);
    border: 1px solid rgba(244,235,223,.4);
    color: #F4EBDF;
    backdrop-filter: blur(6px);
}
.ccg-btn--ghost:hover {
    background: rgba(244,235,223,.14);
    border-color: rgba(244,235,223,.7);
    color: #F4EBDF;
}
.ccg-scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 10;
    color: rgba(244,235,223,.55);
    animation: ccg-bob 2.4s ease-in-out infinite;
    display: inline-block;
    text-decoration: none;
}

/* ─── INTRO STRIP ───────────────────────────────────────────────────────────── */
.ccg-intro-strip {
    background: #0C3A45;
    padding: 54px 24px;
    text-align: center;
    border-top: 1px solid rgba(212,165,116,.18);
}
.ccg-intro-strip__quote {
    max-width: 760px;
    margin: 0 auto;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.25rem, 2.6vw, 1.85rem);
    line-height: 1.5;
    color: #F0E3D3;
}

/* ─── SECTION HEADER (shared) ───────────────────────────────────────────────── */
.ccg-section-header { text-align: center; }
.ccg-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #D4A574;
    margin-bottom: 18px;
}
.ccg-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(2.2rem, 4.4vw, 3.4rem);
    color: #FBF5EC;
    margin: 0 0 18px;
}
.ccg-divider {
    width: 46px;
    height: 2px;
    background: #D4A574;
    margin: 0 auto 24px;
}
.ccg-section-desc {
    max-width: 580px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(244,235,223,.66);
}

/* ─── REVEAL ANIMATION ──────────────────────────────────────────────────────── */
.ccg-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.ccg-reveal--visible {
    opacity: 1;
    transform: none;
}

/* ─── DIRECTORY ─────────────────────────────────────────────────────────────── */
.ccg-directory {
    padding: 104px 24px;
    max-width: 1240px;
    margin: 0 auto;
}
.ccg-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 48px 0 56px;
}
.ccg-filter-btn {
    background: transparent;
    color: rgba(244,235,223,.8);
    border: 1px solid rgba(244,235,223,.18);
    border-radius: 100px;
    padding: 9px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
    cursor: pointer;
    transition: all .25s;
}
.ccg-filter-btn:hover {
    border-color: rgba(212,165,116,.4);
    color: #D4A574;
}
.ccg-filter-btn--active {
    background: #D4A574;
    color: #17100D;
    border-color: #D4A574;
}
.ccg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(322px, 1fr));
    gap: 28px;
}

/* ─── CARD ───────────────────────────────────────────────────────────────────── */
.ccg-card {
    display: flex;
    flex-direction: column;
    background: #211610;
    border: 1px solid rgba(244,235,223,.08);
    border-radius: 3px;
    overflow: hidden;
    transition: transform .5s cubic-bezier(.16,1,.3,1), box-shadow .5s, border-color .5s;
}
.ccg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 56px -22px rgba(0,0,0,.7);
    border-color: rgba(212,165,116,.35);
}
.ccg-card__img-wrap {
    position: relative;
    height: 212px;
    overflow: hidden;
}
.ccg-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.16,1,.3,1);
    display: block;
}
.ccg-card:hover .ccg-card__img { transform: scale(1.07); }
.ccg-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(23,16,13,.5), transparent 55%);
}
.ccg-card__badge {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(23,16,13,.78);
    backdrop-filter: blur(4px);
    color: #E3C29B;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 5px 11px;
    border-radius: 2px;
}
.ccg-card__steam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,235,223,.85), rgba(244,235,223,0) 70%);
    transform: translate(-50%, 0);
    opacity: 0;
    pointer-events: none;
}
.ccg-card:hover .ccg-card__steam {
    animation: ccg-steam 2.6s ease-out infinite;
}
.ccg-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px;
}
.ccg-card__title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 23px;
    color: #FBF5EC;
    margin: 0 0 5px;
}
.ccg-card__tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 14px;
    color: #D4A574;
    margin: 0 0 16px;
}
.ccg-card__desc {
    flex: 1;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.72;
    color: rgba(244,235,223,.66);
    margin: 0 0 20px;
}
.ccg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}
.ccg-tag {
    font-size: 11px;
    letter-spacing: .03em;
    background: rgba(212,165,116,.13);
    color: #E3C29B;
    padding: 6px 11px;
    border-radius: 1px;
}
.ccg-card__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(212,165,116,.4);
    color: #D4A574;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    padding: 0 0 5px;
    cursor: pointer;
    transition: border-color .25s;
    text-decoration: none;
}
.ccg-card__cta:hover { border-color: #D4A574; color: #D4A574; }
.ccg-card__coming-soon {
    align-self: flex-start;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(244,235,223,.4);
    border-bottom: 1px solid rgba(244,235,223,.14);
    padding-bottom: 5px;
}

/* ─── CRAWL SECTION ──────────────────────────────────────────────────────────── */
.ccg-crawl {
    position: relative;
    padding: 104px 24px;
    background: linear-gradient(165deg, #0C3A45 0%, #0A2E38 100%);
    overflow: hidden;
}
.ccg-crawl__glow {
    position: absolute;
    inset: 0;
    opacity: .07;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212,165,116,.6), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212,165,116,.4), transparent 45%);
}
.ccg-crawl__inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
}
.ccg-crawl__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 56px;
    align-items: start;
}
.ccg-timeline { display: flex; flex-direction: column; gap: 8px; }
.ccg-timeline__item {
    display: flex;
    gap: 22px;
    padding-bottom: 30px;
    border-left: 1px solid rgba(212,165,116,.28);
    margin-left: 16px;
    padding-left: 26px;
    position: relative;
}
.ccg-timeline__item:last-child { padding-bottom: 0; border-left-color: transparent; }
.ccg-timeline__num {
    position: absolute;
    left: -16px; top: 0;
    width: 31px; height: 31px;
    border-radius: 50%;
    background: #0C3A45;
    border: 1px solid #D4A574;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: #D4A574;
    flex-shrink: 0;
}
.ccg-timeline__title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 19px;
    color: #FBF5EC;
    margin: 0 0 8px;
}
.ccg-timeline__body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(244,235,223,.7);
    margin: 0 0 8px;
}
.ccg-timeline__meta { font-size: 12px; color: #D4A574; }
.ccg-crawl__photo {
    position: relative;
    min-height: 440px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 30px 60px -24px rgba(0,0,0,.6);
}
.ccg-crawl__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.ccg-crawl__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,46,56,.9), rgba(10,46,56,.12) 60%);
}
.ccg-crawl__quote {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.55;
    color: #F0E3D3;
    margin: 0;
}

/* ─── PHILOSOPHY ─────────────────────────────────────────────────────────────── */
.ccg-philosophy {
    padding: 104px 24px;
    max-width: 920px;
    margin: 0 auto;
}
.ccg-philosophy__lead {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.5;
    color: #F0E3D3;
    text-align: center;
    margin: 0 0 64px;
}
.ccg-philosophy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 44px;
}
.ccg-philosophy__heading {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 20px;
    color: #D4A574;
    margin: 0 0 14px;
}
.ccg-philosophy__body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(244,235,223,.68);
    margin: 0;
}

/* ─── COMMUNITY ───────────────────────────────────────────────────────────────── */
.ccg-community {
    position: relative;
    padding: 104px 24px;
    background: #211610;
    border-top: 1px solid rgba(212,165,116,.16);
    border-bottom: 1px solid rgba(212,165,116,.16);
    text-align: center;
}
.ccg-community__inner { max-width: 680px; margin: 0 auto; }
.ccg-community__title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(2.1rem, 4.4vw, 3.3rem);
    color: #FBF5EC;
    margin: 0 0 18px;
}
.ccg-community__body {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(244,235,223,.7);
    margin: 0 0 16px;
}
.ccg-community__note {
    font-size: 12px;
    font-weight: 300;
    color: rgba(244,235,223,.4);
    margin: 22px 0 0;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.ccg-footer {
    background: #100B09;
    padding: 68px 24px 40px;
    color: #F4EBDF;
}
.ccg-footer__inner {
    max-width: 1240px;
    margin: 0 auto;
}
.ccg-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 44px;
    margin-bottom: 48px;
}
.ccg-footer__brand {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 20px;
    color: #D4A574;
    margin: 0 0 14px;
}
.ccg-footer__tagline {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(244,235,223,.5);
    margin: 0;
}
.ccg-footer__col-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(244,235,223,.7);
    margin: 0 0 16px;
}
.ccg-footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ccg-footer__link {
    font-size: 14px;
    font-weight: 300;
    color: rgba(244,235,223,.55);
    text-decoration: none;
    transition: color .25s;
}
.ccg-footer__link:hover { color: #D4A574; }
.ccg-footer__town {
    font-size: 14px;
    font-weight: 300;
    color: rgba(244,235,223,.5);
}
.ccg-footer__bottom {
    border-top: 1px solid rgba(244,235,223,.08);
    padding-top: 28px;
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    color: rgba(244,235,223,.4);
}

/* ─── MODALS ─────────────────────────────────────────────────────────────────── */
.ccg-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
    background: rgba(10,7,5,.86);
    backdrop-filter: blur(7px);
}
.ccg-modal-overlay--open {
    opacity: 1;
    visibility: visible;
}
.ccg-modal-overlay--open .ccg-modal-card {
    transform: none;
    opacity: 1;
}
.ccg-modal-backdrop {
    position: absolute;
    inset: 0;
    cursor: pointer;
}
.ccg-modal-card {
    position: relative;
    background: #F6EEE2;
    color: #2A1C14;
    width: 100%;
    max-width: 760px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 4px;
    box-shadow: 0 40px 90px -30px rgba(0,0,0,.8);
    transform: translateY(26px);
    opacity: 0;
    transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .5s ease;
    -webkit-overflow-scrolling: touch;
}
.ccg-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 5;
    width: 38px; height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    color: #2A1C14;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ccg-modal-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.ccg-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ccg-modal-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(23,16,13,.88), transparent 62%);
}
.ccg-modal-hero__meta {
    position: absolute;
    bottom: 26px; left: 32px; right: 32px;
}
.ccg-modal-hero__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #D4A574;
    margin-bottom: 8px;
}
.ccg-modal-hero__title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #FBF5EC;
    margin: 0;
}
.ccg-modal-body { padding: 34px; }
.ccg-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-size: 12.5px;
    color: #8C6A53;
    padding-bottom: 22px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(42,28,20,.12);
}
.ccg-modal-meta a { color: #0F4C5C; }
.ccg-review-sections { display: flex; flex-direction: column; gap: 26px; }
.ccg-review-section__heading {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 19px;
    color: #0F4C5C;
    margin: 0 0 10px;
}
.ccg-review-section__body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.78;
    color: #43342A;
    margin: 0;
}
.ccg-verdict {
    background: #EFE3D2;
    border-left: 2px solid #D4A574;
    padding: 22px 24px;
    margin: 6px 0 0;
}
.ccg-verdict__heading {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 17px;
    color: #0F4C5C;
    margin: 0 0 8px;
}
.ccg-verdict__body {
    font-size: 14.5px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    color: #43342A;
    margin: 0;
}

/* ─── RESPONSIVE TWEAKS ─────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .ccg-nav { padding: 16px 20px; }
    .ccg-hero__content { padding: 0 20px 100px; }
    .ccg-directory { padding: 72px 16px; }
    .ccg-crawl { padding: 72px 16px; }
    .ccg-philosophy { padding: 72px 16px; }
    .ccg-community { padding: 72px 16px; }
    .ccg-grid { grid-template-columns: 1fr; }
    .ccg-modal-hero { height: 200px; }
    .ccg-modal-body { padding: 22px; }
    .ccg-modal-hero__meta { left: 20px; right: 20px; bottom: 16px; }
}
