
:root {
    --clt-red: #b43a2f;
    --clt-green: #22523b;
    --clt-brown: #3b2315;
    --clt-cream: #faf5ef;
    --clt-dark: #1b1b1b;
    --clt-text: #222222;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--clt-text);
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--clt-red);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.site-header {
    background: #ffffff;
    border-bottom: 4px solid var(--clt-red);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    gap: 1rem;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-wrap img {
    height: 56px;
}

.site-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--clt-brown);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.85rem;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.nav-links a {
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--clt-brown);
}

.nav-links a:hover {
    background-color: var(--clt-cream);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--clt-brown);
    border-radius: 6px;
    padding: 0.25rem 0.4rem;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: radial-gradient(circle at top left, #fff3ec 0, #ffffff 40%, #f4faf7 100%);
    padding: 2.5rem 0 3rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2rem;
    align-items: center;
}

.hero h1 {
    font-family: "Merriweather", "Georgia", serif;
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    color: var(--clt-brown);
}

.hero-lead {
    font-size: 1rem;
    max-width: 34rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0 1.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn.primary {
    background: var(--clt-red);
    color: #fff;
    border-color: var(--clt-red);
}

.btn.primary:hover {
    background: #922f26;
    border-color: #922f26;
}

.btn.outline {
    background: transparent;
    color: var(--clt-brown);
    border-color: var(--clt-brown);
}

.btn.outline:hover {
    background: var(--clt-cream);
}

.btn.small {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
}

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-facts h3 {
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
    color: var(--clt-green);
}

.hero-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-card h2 {
    margin-top: 0;
    font-size: 1.3rem;
}

.hero-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0.75rem 0 0;
}

.hero-card li {
    padding: 0.35rem 0;
    border-bottom: 1px dashed #e4dfd8;
    font-size: 0.95rem;
}

.hero-card li:last-child {
    border-bottom: none;
}

/* Sections */
.section {
    padding: 2.25rem 0;
}

.section.alt {
    background-color: var(--clt-cream);
}

.page-header {
    background: linear-gradient(120deg, #ffffff, #fff4ee);
    border-bottom: 2px solid var(--clt-red);
    padding: 2.25rem 0 1.75rem;
}

.page-header h1 {
    margin: 0 0 0.5rem;
    font-family: "Merriweather", "Georgia", serif;
    font-size: 2rem;
    color: var(--clt-brown);
}

.page-header .lead,
.hero .hero-lead {
    color: #444;
}

.page main {
    padding-bottom: 2.5rem;
}

.lead {
    font-size: 1rem;
    max-width: 42rem;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card h3,
.card h2 {
    margin-top: 0;
    color: var(--clt-brown);
}

.card-link {
    font-weight: 600;
    font-size: 0.95rem;
}

.callout {
    border-left: 4px solid var(--clt-green);
}

.business-card .business-type {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clt-green);
    margin-bottom: 0.25rem;
}

.business-card .business-meta {
    font-size: 0.9rem;
    color: #555;
}

.bullet-list {
    padding-left: 1.2rem;
}

.bullet-list li {
    margin-bottom: 0.4rem;
}

.link-list {
    list-style: none;
    padding-left: 0;
}

.link-list li {
    margin-bottom: 0.6rem;
}

.note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #555;
}

/* Footer */
.site-footer {
    background: var(--clt-brown);
    color: #f3e9db;
    padding: 1.75rem 0;
    margin-top: 2rem;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 46px;
    border-radius: 999px;
    background: #ffffff;
    padding: 0.15rem;
}

.footer-text {
    font-size: 0.85rem;
    max-width: 46rem;
}

/* Responsive */
@media (max-width: 860px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .nav-toggle {
        display: inline-flex;
    }
    .nav-links {
        position: absolute;
        right: 1.25rem;
        top: 58px;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 0.75rem;
        border-radius: 0.75rem;
        box-shadow: 0 16px 30px rgba(0,0,0,0.12);
        max-width: 260px;
        transform-origin: top right;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.18s ease-out, opacity 0.18s ease-out;
    }
    .nav-links.nav-open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 640px) {
    .two-column {
        grid-template-columns: 1fr;
    }
    .page-header {
        text-align: left;
    }
}


.piedmont-link {
  color: #0c2f1f;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.piedmont-link:hover {
  color: #b33627;
}
