/* ============================================================
   Cluckwell — Shared Stylesheet
   Modern Earth Tone Design
   ============================================================ */

:root {
    --cream: #F7F2E8;
    --warm-white: #FDFAF5;
    --brown-dark: #2C1A0E;
    --brown-mid: #5C3D2A;
    --brown-light: #8B6247;
    --terracotta: #C4714A;
    --olive: #6B7A3E;
    --olive-light: #8A9A5B;
    --tan: #D4B896;
    --red: #B91C1C;
    --text-dark: #1C1209;
    --text-mid: #4A3728;
    --text-light: #7A6352;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
}

img { max-width: 100%; display: block; }

/* ── NAV ────────────────────────────────────────────── */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 250, 245, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(44, 26, 14, 0.08);
    z-index: 100;
    padding: 0 4%;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img { height: 56px; }

.logo-fallback {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.logo-fallback .cluck { color: var(--brown-dark); }
.logo-fallback .well  { color: var(--red); }

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-links a:hover { color: var(--red); background: rgba(185, 28, 28, 0.06); }
.nav-links a.active { color: var(--red); }

/* ── INNER PAGE HERO ─────────────────────────────────── */

.inner-hero {
    padding-top: 72px;
    min-height: 46vh;
    background: linear-gradient(140deg, #1A0E07 0%, #3D2315 45%, #2C1A0E 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.55;
}

.inner-hero-accent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.12;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 88px 4%;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
}

.breadcrumb a {
    color: rgba(247, 242, 232, 0.4);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.breadcrumb a:hover { color: rgba(247, 242, 232, 0.7); }

.breadcrumb-sep { color: rgba(247, 242, 232, 0.2); font-size: 0.7rem; }

.breadcrumb .current {
    color: var(--terracotta);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inner-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.1;
    max-width: 700px;
    letter-spacing: -0.02em;
}

.inner-hero h1 em { font-style: italic; color: var(--terracotta); }

.inner-hero .hero-desc {
    color: rgba(247, 242, 232, 0.62);
    font-size: 1.05rem;
    max-width: 540px;
    line-height: 1.75;
    font-weight: 300;
    margin-top: 20px;
}

/* ── BUTTONS ─────────────────────────────────────────── */

.btn-primary {
    background: var(--red);
    color: white;
    padding: 15px 34px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover { background: #991515; transform: translateY(-1px); }

.btn-ghost {
    color: rgba(247, 242, 232, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-ghost:hover { color: var(--terracotta); }
.btn-ghost::after { content: '→'; }

.btn-outline {
    color: var(--brown-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--brown-dark);
    padding: 13px 28px;
    border-radius: 8px;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ── SECTION UTILITIES ───────────────────────────────── */

.page-section { padding: 100px 4%; }

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: var(--brown-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.75;
    margin-top: 16px;
    max-width: 620px;
}

/* Light olive section label variant */
.section-label-white {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.section-title-white {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* ── STATS BAR ───────────────────────────────────────── */

.stats-bar { background: var(--brown-dark); }

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 36px 40px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat:last-child { border-right: none; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(212, 184, 150, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ── CTA BAND ────────────────────────────────────────── */

.cta-band {
    background: linear-gradient(140deg, var(--brown-dark), #3D2315);
    text-align: center;
    padding: 100px 4%;
}

.cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--cream);
    margin-bottom: 18px;
}

.cta-band p {
    color: rgba(247, 242, 232, 0.6);
    font-size: 0.98rem;
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

/* ── FOOTER ──────────────────────────────────────────── */

footer { background: #0F0804; padding: 64px 4% 40px; }

.footer-inner { max-width: 1400px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 36px;
}

.footer-brand p {
    color: rgba(212, 184, 150, 0.45);
    font-size: 0.84rem;
    line-height: 1.7;
    margin-top: 18px;
    max-width: 270px;
}

.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212, 184, 150, 0.4);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(212, 184, 150, 0.65);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 11px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--terracotta); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(212, 184, 150, 0.3);
    font-size: 0.76rem;
}

/* ── SHARED CARD COMPONENTS ──────────────────────────── */

.card {
    background: var(--warm-white);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(44, 26, 14, 0.1);
}

.card-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--brown-mid), #3D2315);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-body { padding: 26px; }

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.card-body p { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; }

/* Pill / badge */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
}

.pill-olive { background: rgba(107, 122, 62, 0.15); color: var(--olive); }
.pill-terracotta { background: rgba(196, 113, 74, 0.15); color: var(--terracotta); }
.pill-red { background: rgba(185, 28, 28, 0.12); color: var(--red); }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 14px; }

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: rgba(107, 122, 62, 0.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.65rem;
    color: var(--olive);
    flex-shrink: 0;
    margin-top: 1px;
}
