:root {
    --primary: #1C315E;
    /* Deep, steady navy */
    --secondary: #D44E0E;
    /* Burnt orange/rust - feels more manual labor */
    --accent: #F9F5EB;
    /* Creamy background */
    --text: #222222;
    --muted: #666666;
    --white: #ffffff;
    --shadow-soft: 4px 4px 15px rgba(0, 0, 0, 0.05);
    --border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.human-feel {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Texture overlay for that non-digital look */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/p6.png');
    /* Subtle grain */
    opacity: 0.15;
    z-index: 9999;
    pointer-events: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.handwritten {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--secondary);
    display: block;
    margin-bottom: 0.5rem;
}

/* Header */
header {
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    border-bottom: 2px solid var(--primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
}

.logo-text span {
    color: var(--secondary);
    border-bottom: 3px solid var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-phone {
    font-weight: 800;
    color: var(--primary);
    background: var(--accent);
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary);
    border-radius: 4px;
}

.header-phone a {
    color: var(--secondary);
    text-decoration: none;
    border-bottom: 2px dashed var(--secondary);
}

/* Hero */
#hero {
    min-height: 85vh;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('https://images.unsplash.com/photo-1635843104390-50f952136531?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4rem 0;
}

.owner-note-bubble {
    background: var(--primary);
    color: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    max-width: 400px;
    margin-top: 2rem;
    font-style: italic;
    position: relative;
    box-shadow: 8px 8px 0 var(--secondary);
    border: 2px solid var(--white);
}

.hero-main-area {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.signature {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    text-align: right;
    color: var(--secondary);
}

#hero h1 {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
    max-width: 800px;
}

#hero h1 span {
    color: var(--secondary);
    text-decoration: underline;
}

#hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 3rem;
    color: #444;
}

.btn-primary-bold {
    background: var(--secondary);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 4px;
    /* Less bubbly, more industrial */
    display: inline-block;
    transition: transform 0.2s;
}

.btn-primary-bold:hover {
    transform: rotate(-1deg) scale(1.05);
}

.link-secondary {
    margin-left: 2rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
}

.trust-marks {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

/* Sections */
section {
    padding: 100px 0;
}

.bg-paper {
    background-color: var(--accent);
    border-top: 5px solid var(--primary);
    border-bottom: 5px solid var(--primary);
}

.section-intro {
    margin-bottom: 4rem;
}

.section-intro h2 {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
}

.service-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.service-box {
    background: white;
    padding: 3rem;
    border: 3px solid var(--primary);
    box-shadow: 12px 12px 0 var(--primary);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.box-header i {
    color: var(--secondary);
}

.box-header h3 {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
}

.shingle-choice {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
}

/* Shingle Options */
.shingle-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.option-card {
    background: white;
    border: 3px solid var(--primary);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-10px);
}

.option-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary);
}

.option-info {
    padding: 2rem;
}

.option-info h3 {
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.tag {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1rem;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 1rem;
    border-radius: 4px;
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(0.2);
}

.badge-seal {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--secondary);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.7rem;
    text-align: center;
    border: 4px double white;
    transform: rotate(-10deg);
}

.human-list {
    list-style: none;
    margin: 2rem 0;
}

.human-list li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.human-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 900;
}

.owner-message {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: var(--primary);
    margin-top: 2rem;
}

/* Testimonials */
.bg-dark {
    background: var(--primary);
    color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.test-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-left: 5px solid var(--secondary);
}

.test-author {
    display: block;
    margin-top: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

/* FAQ / Accordion */
.small-container {
    max-width: 700px;
}

.accordion {
    margin-top: 3rem;
}

.acc-item {
    border-bottom: 1px solid var(--border);
}

.acc-trigger {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
}

.acc-content {
    padding-bottom: 1.5rem;
    display: none;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-details {
    margin-top: 3rem;
}

.c-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.c-item i {
    color: var(--secondary);
}

.contact-form-container {
    background: var(--accent);
    padding: 3rem;
    border: 2px solid var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary);
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1.2rem;
    border: none;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Footer */
.footer-simple {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    opacity: 0.8;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    .why-grid,
    .contact-wrapper,
    .service-layout,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}