/* ═══════════════════════════════════════════════════════════
   K&N Landscaping — Premium Redesign
   Palette: Forest Green · Warm Ivory · Brushed Gold
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
    --green-900:   #0d2b0d;
    --green-800:   #1a3d1a;
    --green-700:   #245224;
    --green-600:   #2e6b2e;
    --green-500:   #3a8a3a;
    --green-400:   #5baa5b;
    --green-100:   #e8f5e8;

    --gold-500:    #c9a84c;
    --gold-400:    #d4b86a;
    --gold-300:    #e0ca8e;
    --gold-100:    #fdf8ec;

    --ivory:       #f8f4ee;
    --ivory-dark:  #ede7db;
    --white:       #ffffff;

    --text-dark:   #1a1a1a;
    --text-mid:    #4a4a4a;
    --text-light:  #7a7a7a;

    --shadow-sm:   0 2px 12px rgba(0,0,0,.06);
    --shadow-md:   0 8px 32px rgba(0,0,0,.10);
    --shadow-lg:   0 20px 60px rgba(0,0,0,.15);
    --shadow-green: 0 12px 40px rgba(46,107,46,.25);

    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   32px;

    --transition:  all .35s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

::selection { background: var(--green-600); color: #fff; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--green-900);
}

.display-hero {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -.02em;
    font-style: italic;
}

.display-section {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -.01em;
}

.eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-500);
}

/* ── TOP BAR ────────────────────────────────────────────────── */
.kn-topbar {
    background: var(--green-900);
    padding: .55rem 0;
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    border-bottom: 1px solid rgba(201,168,76,.2);
}

.kn-topbar a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: var(--transition);
}
.kn-topbar a:hover { color: var(--gold-400); }

.topbar-divider {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.2);
    margin: 0 12px;
    vertical-align: middle;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.kn-navbar {
    background: rgba(13,43,13,.96) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,.12);
    padding: 1rem 0;
    transition: var(--transition);
}

.kn-navbar.nav-scrolled {
    padding: .6rem 0;
    background: rgba(13,43,13,.99) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,.25);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-monogram {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-500);
    flex-shrink: 0;
    transition: var(--transition);
}

.navbar-brand:hover .brand-monogram {
    background: var(--gold-500);
    color: var(--green-900);
}

.brand-name {
    line-height: 1.2;
}

.brand-name strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .03em;
}

.brand-name small {
    font-size: .65rem;
    color: var(--gold-400);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 400;
}

.kn-navbar .nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75) !important;
    padding: .5rem 1.1rem !important;
    transition: var(--transition);
    position: relative;
}

.kn-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 1px;
    background: var(--gold-500);
    transition: var(--transition);
}

.kn-navbar .nav-link:hover,
.kn-navbar .nav-link.active {
    color: var(--white) !important;
}

.kn-navbar .nav-link:hover::after,
.kn-navbar .nav-link.active::after {
    left: 1.1rem; right: 1.1rem;
}

.btn-nav-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-500) !important;
    border: 1px solid var(--gold-500) !important;
    border-radius: 2px !important;
    padding: .5rem 1.4rem !important;
    transition: var(--transition) !important;
    text-decoration: none;
}

.btn-nav-quote:hover {
    background: var(--gold-500) !important;
    color: var(--green-900) !important;
}

.btn-nav-quote::after { display: none !important; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-900);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg,
            rgba(13,43,13,.92) 0%,
            rgba(13,43,13,.75) 40%,
            rgba(13,43,13,.45) 70%,
            transparent 100%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(201,168,76,.4);
    color: var(--gold-400);
    padding: .45rem 1rem;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.hero-badge::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold-500);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 7vw, 6.8rem);
    font-weight: 300;
    line-height: 1.02;
    color: var(--white);
    letter-spacing: -.02em;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-400);
}

.hero-title strong {
    font-weight: 700;
    display: block;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3.5rem;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-500);
    color: var(--green-900);
    padding: .9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid var(--gold-500);
    transition: var(--transition);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,.3);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255,255,255,.8);
    padding: .9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 2px;
    transition: var(--transition);
}

.btn-ghost-white:hover {
    border-color: rgba(255,255,255,.7);
    color: var(--white);
    background: rgba(255,255,255,.05);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
}

.hero-stat-label {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: .2rem;
}

.hero-image-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: 42%;
    height: 100%;
    overflow: hidden;
    display: none;
}

@media (min-width: 1200px) { .hero-image-panel { display: block; } }

.hero-image-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -80px;
    background: linear-gradient(90deg, var(--green-900), transparent 60%);
    z-index: 1;
}

.hero-image-panel img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .5;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.4);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: .3; transform: scaleY(1); }
    50%       { opacity: 1;  transform: scaleY(1.2); }
}

/* ── SECTION SHARED ─────────────────────────────────────────── */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.section-header { margin-bottom: 70px; }

.eyebrow-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.eyebrow-line::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold-500);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary-kn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-600);
    color: var(--white);
    padding: .75rem 1.8rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid var(--green-600);
    transition: var(--transition);
}

.btn-primary-kn:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

.btn-outline-kn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--green-600);
    padding: .75rem 1.8rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 2px solid var(--green-600);
    transition: var(--transition);
}

.btn-outline-kn:hover {
    background: var(--green-600);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--gold-500);
    padding: .55rem 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid var(--gold-500);
    transition: var(--transition);
}

.btn-gold-sm:hover {
    background: var(--gold-500);
    color: var(--green-900);
}

/* ── ABOUT SECTION ──────────────────────────────────────────── */
#about { background: var(--ivory); }

.about-img-stack {
    position: relative;
    padding: 20px 20px 0 0;
}

.about-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-exp-badge {
    position: absolute;
    top: 0;
    right: -10px;
    width: 110px;
    height: 110px;
    background: var(--gold-500);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(201,168,76,.4);
}

.about-exp-badge span { font-family: 'Cormorant Garamond', serif; line-height: 1; }
.about-exp-badge .num { font-size: 2rem; font-weight: 700; color: var(--green-900); }
.about-exp-badge .txt { font-size: .6rem; font-weight: 700; color: var(--green-900); letter-spacing: .1em; text-transform: uppercase; text-align: center; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 2rem 0;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--ivory-dark);
    border-radius: var(--radius-sm);
    padding: .7rem 1rem;
    font-size: .82rem;
    font-weight: 500;
    transition: var(--transition);
}

.feature-chip:hover {
    border-color: var(--green-400);
    box-shadow: var(--shadow-sm);
}

.feature-chip i {
    color: var(--green-600);
    font-size: .9rem;
    flex-shrink: 0;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--ivory-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 2.5rem;
}

.about-stat-box {
    background: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.about-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green-600);
    line-height: 1;
    display: block;
}

.about-stat-lbl {
    font-size: .72rem;
    color: var(--text-light);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: .35rem;
}

/* ── SERVICES SECTION ───────────────────────────────────────── */
#services { background: var(--white); }

.service-card {
    border: 1px solid var(--ivory-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-num {
    position: absolute;
    top: 16px; right: 16px;
    width: 38px; height: 38px;
    background: rgba(13,43,13,.85);
    backdrop-filter: blur(8px);
    color: var(--gold-400);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-no-img {
    height: 230px;
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-no-img i { font-size: 3rem; color: rgba(255,255,255,.2); }

.service-card-body {
    padding: 1.8rem;
}

.service-card-body h5 {
    font-size: 1.35rem;
    margin-bottom: .6rem;
    transition: var(--transition);
}

.service-card:hover .service-card-body h5 { color: var(--green-600); }

.service-card-body p {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1.3rem;
}

/* ── GALLERY SECTION ────────────────────────────────────────── */
#gallery { background: var(--green-900); }

#gallery .eyebrow { color: var(--gold-400); }
#gallery .display-section { color: var(--white); }
#gallery .section-header p { color: rgba(255,255,255,.55); }

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 50px;
}

.gallery-filter-btn {
    background: transparent;
    color: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.15);
    padding: .45rem 1.3rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--gold-500);
    color: var(--green-900);
    border-color: var(--gold-500);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 8px;
}

@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }

.gallery-item { position: relative; overflow: hidden; border-radius: 4px; }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-thumb {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.gallery-item:nth-child(1) .gallery-thumb { min-height: 368px; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,43,13,.85), transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-thumb { transform: scale(1.06); }

.gallery-overlay-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.gallery-overlay-title {
    font-family: 'DM Sans', sans-serif;
    font-size: .8rem;
    color: var(--white);
    font-weight: 500;
}

.gallery-overlay-cat {
    font-size: .65rem;
    color: var(--gold-400);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gallery-zoom-btn {
    width: 36px; height: 36px;
    background: var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-900);
    font-size: .85rem;
    flex-shrink: 0;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
#testimonials { background: var(--ivory); }

.testi-carousel-wrapper { position: relative; }

.testi-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    border: 1px solid var(--ivory-dark);
    box-shadow: var(--shadow-md);
}

.testi-quote-icon {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 44px;
    height: 44px;
    background: var(--green-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.testi-stars { color: var(--gold-500); font-size: 1rem; margin-bottom: 1.2rem; }

.testi-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ivory-dark);
}

.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-dark);
}

.testi-location {
    font-size: .78rem;
    color: var(--text-light);
}

.carousel-btn {
    width: 48px; height: 48px;
    background: var(--white);
    border: 1px solid var(--ivory-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--green-700);
    font-size: .85rem;
}

.carousel-btn:hover {
    background: var(--green-600);
    border-color: var(--green-600);
    color: var(--white);
}

.testi-nav { display: flex; gap: 10px; align-items: center; justify-content: center; margin-top: 2rem; }

/* ── BLOG SECTION ────────────────────────────────────────────── */
#blog { background: var(--white); }

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--ivory-dark);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: .72rem;
    color: var(--gold-500);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .7rem;
}

.blog-card-body h5 {
    font-size: 1.2rem;
    margin-bottom: .7rem;
    line-height: 1.3;
}

.blog-card-body p {
    font-size: .87rem;
    color: var(--text-light);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.3rem;
}

/* ── CONTACT SECTION ─────────────────────────────────────────── */
#contact { background: var(--ivory); }

.contact-info-card {
    background: var(--green-900);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: .5rem;
}

.contact-info-card > p {
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 40px; height: 40px;
    background: rgba(201,168,76,.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: .9rem;
    flex-shrink: 0;
}

.contact-item-text { color: rgba(255,255,255,.85); font-size: .87rem; line-height: 1.6; }
.contact-item-label { font-size: .68rem; color: rgba(255,255,255,.4); letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: .2rem; }

.contact-item-text a { color: rgba(255,255,255,.85); text-decoration: none; transition: var(--transition); }
.contact-item-text a:hover { color: var(--gold-400); }

.contact-social-row { display: flex; gap: 10px; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); }

.social-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.6);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: .9rem;
}

.social-btn:hover { background: var(--gold-500); color: var(--green-900); transform: translateY(-3px); }

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--ivory-dark);
    height: 100%;
}

.form-label-kn {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: .45rem;
}

.form-control-kn {
    border: 1.5px solid var(--ivory-dark);
    border-radius: var(--radius-sm);
    padding: .8rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    color: var(--text-dark);
    background: var(--ivory);
    transition: var(--transition);
    width: 100%;
}

.form-control-kn:focus {
    outline: none;
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(46,107,46,.08);
}

textarea.form-control-kn { resize: vertical; min-height: 130px; }

/* ── QUOTE SECTION ───────────────────────────────────────────── */
#quote {
    background: var(--green-900);
    position: relative;
    overflow: hidden;
}

#quote::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%);
}

#quote .eyebrow { color: var(--gold-400); }
#quote .display-section { color: var(--white); }
#quote .section-header p { color: rgba(255,255,255,.5); }

.quote-form-wrap {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.quote-form-wrap .form-label-kn { color: rgba(255,255,255,.6); }

.quote-form-wrap .form-control-kn {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.1);
    color: var(--white);
}

.quote-form-wrap .form-control-kn:focus {
    background: rgba(255,255,255,.1);
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201,168,76,.12);
    color: var(--white);
}

.quote-form-wrap .form-control-kn option { background: var(--green-800); color: var(--white); }
.quote-form-wrap .form-control-kn::placeholder { color: rgba(255,255,255,.25); }

.quote-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 2.5rem;
}

.quote-perk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .82rem;
    color: rgba(255,255,255,.55);
}

.quote-perk i { color: var(--gold-500); margin-top: 2px; flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.kn-footer {
    background: #080f08;
    padding: 80px 0 0;
    border-top: 1px solid rgba(201,168,76,.12);
}

.footer-brand p {
    font-size: .87rem;
    color: rgba(255,255,255,.4);
    line-height: 1.8;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 1.4rem;
}

.footer-link {
    display: block;
    color: rgba(255,255,255,.4);
    text-decoration: none;
    font-size: .87rem;
    padding: .3rem 0;
    transition: var(--transition);
}

.footer-link:hover { color: var(--gold-400); padding-left: 6px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: .87rem;
    color: rgba(255,255,255,.4);
}

.footer-contact-item i {
    color: var(--gold-500);
    font-size: .85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item a { color: rgba(255,255,255,.4); text-decoration: none; transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold-400); }

.footer-social-row { display: flex; gap: 8px; margin-top: 1.5rem; }

.footer-social-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .85rem;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--green-900);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    padding: 1.5rem 0;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: .78rem;
    color: rgba(255,255,255,.25);
    margin: 0;
}

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-top-btn {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    background: var(--gold-500);
    color: var(--green-900);
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201,168,76,.3);
}

.back-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-top-btn:hover { background: var(--gold-400); transform: translateY(-3px); }

/* ── ALERT ───────────────────────────────────────────────────── */
.kn-alert {
    border-radius: var(--radius-sm);
    padding: 1rem 1.3rem;
    font-size: .88rem;
    margin-bottom: 1.2rem;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kn-alert-success { background: #e8f5e8; border-color: var(--green-400); color: var(--green-700); }
.kn-alert-error   { background: #fdecea; border-color: #e74c3c; color: #c0392b; }

/* ── BLOG POST PAGE ──────────────────────────────────────────── */
.blog-hero {
    background: var(--green-900);
    padding: 120px 0 60px;
    border-bottom: 1px solid rgba(201,168,76,.12);
}

.blog-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    max-width: 800px;
}

.blog-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-mid);
    max-width: 720px;
}

.blog-body h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--green-700);
}

.blog-body p { margin-bottom: 1.3rem; }

.blog-featured-img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 2.5rem;
}

/* ── 404 ─────────────────────────────────────────────────────── */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-404 .big-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 700;
    color: var(--green-600);
    line-height: 1;
    opacity: .15;
}

/* ── UTILS ───────────────────────────────────────────────────── */
.divider-gold {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    margin: 1.2rem 0;
}

.text-gold { color: var(--gold-500) !important; }
.bg-ivory  { background: var(--ivory) !important; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .section-pad   { padding: 70px 0; }
    .about-img-main { height: 380px; }
    .about-features { grid-template-columns: 1fr; }
    .gallery-grid  { grid-template-columns: 1fr 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-item:nth-child(6) { grid-column: span 1; }
    .hero-stats    { gap: 1.5rem; }
    .hero-title    { font-size: clamp(2.8rem, 8vw, 4.5rem); }
}

@media (max-width: 576px) {
    .section-pad   { padding: 50px 0; }
    .hero-stats    { flex-wrap: wrap; gap: 1.2rem; }
    .gallery-grid  { grid-template-columns: 1fr 1fr; gap: 4px; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-item:nth-child(1) .gallery-thumb { min-height: 240px; }
    .about-stats-row { grid-template-columns: 1fr; }
    .about-features  { grid-template-columns: 1fr; }
    .quote-perks     { grid-template-columns: 1fr; }
    .testi-card      { padding: 2rem 1.5rem; }
    .quote-form-wrap { padding: 2rem 1.5rem; }
}