/* ================================
   PETER TJEPKEMA MASONRY STYLES
   Classic Craftsmanship Theme - Warm Earth Tones
   ================================ */

:root {
    --primary: #8B4513;
    --primary-light: #A0522D;
    --primary-dark: #5D2F0D;
    --secondary: #D2691E;
    --stone: #8C7B6B;
    --brick: #B22222;
    --cream: #F5F5DC;
    --warm-white: #FAF8F5;
    --text-dark: #2C1810;
    --text-light: #6B5B4F;
    --white: #FFFFFF;
    --border: #E0D5C8;
    --shadow: rgba(44, 24, 16, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 1px 12px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-stone {
    font-size: 28px;
    color: var(--primary);
    line-height: 1;
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo .sub {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 12px 28px !important;
    border-radius: 4px;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--text-dark);
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 140px 24px 100px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-accent {
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 0 auto 24px;
}

.hero-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--cream);
    opacity: 0.9;
}

.hero h1 {
    font-family: 'Lora', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

.hero-areas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
}

.hero-areas span:first-child {
    opacity: 0.7;
    margin-right: 4px;
}

.area-pill {
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.area-pill:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Section Labels */
.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-label.light {
    color: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-family: 'Lora', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Lora', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.about-text blockquote {
    border-left: 3px solid var(--secondary);
    padding-left: 24px;
    margin: 28px 0;
    font-family: 'Lora', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.5;
}

.about-text cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-style: normal;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.about-cta {
    margin-top: 28px;
}

.about-visual {
    position: relative;
}

.about-visual img {
    width: 90%;
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px var(--shadow);
}

.about-frame {
    position: absolute;
    top: 20px;
    right: 0;
    width: 90%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: 4px;
    z-index: 1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 4px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.badge-num {
    display: block;
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr 60px;
    align-items: center;
    gap: 24px;
    padding: 32px 28px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.service-row:first-child {
    border-top: 1px solid var(--border);
}

.service-row:hover {
    background: var(--warm-white);
    padding-left: 36px;
}

.service-num {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.service-info h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

.service-arrow {
    font-size: 24px;
    color: var(--secondary);
    opacity: 0;
    transition: var(--transition);
    text-align: right;
}

.service-row:hover .service-arrow {
    opacity: 1;
    transform: translateX(6px);
}

/* Craftsmanship */
.craftsmanship {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.craft-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.craft-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.92) 0%, rgba(93, 47, 13, 0.85) 100%);
    z-index: 1;
}

.craft-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.craft-content h2 {
    font-family: 'Lora', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.craft-content > p {
    opacity: 0.85;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.work-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.work-col h4 {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--cream);
}

.work-col ul {
    list-style: none;
}

.work-col li {
    padding: 6px 0;
    font-size: 15px;
    opacity: 0.8;
    position: relative;
    padding-left: 20px;
}

.work-col li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.areas-served {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.areas-served span {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
    display: block;
    margin-bottom: 8px;
}

.areas-served p {
    opacity: 0.8;
    font-size: 16px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Lora', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-info > p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.contact-line:hover {
    border-color: var(--secondary);
    transform: translateX(4px);
}

.line-icon {
    font-size: 22px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 4px;
}

.line-label {
    display: block;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-line a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.contact-line a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-wrap {
    background: var(--white);
    padding: 44px;
    border-radius: 4px;
    box-shadow: 0 10px 40px var(--shadow);
    border-top: 3px solid var(--secondary);
}

.contact-form-wrap h3 {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: var(--warm-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand .logo-stone {
    color: var(--secondary);
}

.footer-brand .sub {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Lora', serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--cream);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-col p {
    opacity: 0.75;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-col p a {
    color: var(--cream);
    text-decoration: none;
}

.footer-col p a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 13px;
}

.footer-bottom p:last-child {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .work-types {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 44px;
    }

    .about-visual {
        order: 2;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        box-shadow: 0 10px 40px var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-header h2,
    .craft-content h2 {
        font-size: 30px;
    }

    .about-text h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .service-row {
        grid-template-columns: 50px 1fr;
        gap: 16px;
    }

    .service-arrow {
        display: none;
    }

    .about-frame {
        display: none;
    }

    .about-visual img {
        width: 100%;
    }

    .about-badge {
        right: 10px;
        bottom: -10px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-content {
        padding: 120px 16px 80px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .service-num {
        font-size: 20px;
    }

    .service-info h3 {
        font-size: 18px;
    }
}
