* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --off-white: #f8f6f3;
    --charcoal: #2c2c2c;
    --warm-grey: #6b6560;
    --light-grey: #d4d0cc;
    --brass: #b08d57;
    --brass-dark: #96783f;
    --radius: 8px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.tools-accent {
    display: block;
    margin: 0 auto 25px;
    height: 45px;
    width: auto;
    opacity: 0.5;
}

.service-areas {
    position: relative;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('media/craftsman-watercolour.jpg') center center / cover no-repeat;
    opacity: 0.15;
}

.service-areas .content-inner {
    position: relative;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

/* Navigation */
.site-nav {
    padding: 20px 30px 20px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.site-nav .brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-nav .brand img {
    height: 60px;
    width: auto;
}

.site-nav .brand:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brass);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    margin: 5px 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Hero */
.hero {
    position: relative;
    height: 85vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--charcoal);
    overflow: hidden;
    padding: 0 20px;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: var(--charcoal);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    letter-spacing: 0.02em;
    margin-bottom: 15px;
}

.hero-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    filter: invert(1);
    margin: 0 auto;
}

.hero-content .tagline {
    color: var(--brass);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-content .location {
    color: var(--brass);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 30px;
}

/* Intro */
.intro {
    padding: 100px 30px;
    text-align: center;
}

.intro-inner {
    max-width: 680px;
    margin: 0 auto;
}

.intro p {
    font-size: 1.1rem;
    color: var(--warm-grey);
    line-height: 1.9;
    margin-bottom: 20px;
}

.intro p:last-child {
    margin-bottom: 0;
}

.intro .highlight {
    color: var(--charcoal);
    font-weight: 500;
}

/* Section headings */
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 15px;
}

.section-heading {
    font-size: 2.4rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--warm-grey);
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto 50px;
}

/* Services cards */
.services {
    padding: 100px 30px;
    background: var(--off-white);
}

.services-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    text-align: left;
    overflow: hidden;
    border-radius: var(--radius);
}

.service-card-image {
    height: 240px;
    overflow: hidden;
    background: var(--off-white);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.03);
}

.service-card-body {
    padding: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--warm-grey);
    line-height: 1.7;
}

/* Before & After */
.before-after {
    padding: 100px 30px;
}

.before-after-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.before-after-panel {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: var(--off-white);
    border-radius: var(--radius);
}

.before-after-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-panel .panel-label {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--warm-grey);
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
}

.before-after-panel .placeholder-text {
    color: var(--warm-grey);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.before-after-cta {
    margin-top: 40px;
}

.before-after-cta a {
    color: var(--brass);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--brass);
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.before-after-cta a:hover {
    color: var(--brass-dark);
    border-color: var(--brass-dark);
}

/* Testimonials */
.testimonial {
    padding: 100px 30px;
    background: var(--charcoal);
    text-align: center;
}

.testimonials-header {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.testimonials-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    text-align: left;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card cite {
    color: var(--brass);
    font-style: normal;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* CTA */
.cta {
    padding: 100px 30px;
    text-align: center;
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.2rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.cta p {
    color: var(--warm-grey);
    font-size: 0.95rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background: var(--brass);
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--brass-dark);
}

.cta-phone {
    margin-top: 25px;
    color: var(--warm-grey);
    font-size: 0.9rem;
}

.cta-phone a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 40px 30px;
    border-top: 1px solid #e8e5e1;
    text-align: center;
}

.footer p {
    color: var(--light-grey);
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.footer a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--brass);
}

/* Page header for inner pages */
.page-hero {
    padding: 60px 30px;
    text-align: center;
    background: var(--charcoal);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 5px;
}

.page-hero .tagline {
    color: var(--brass);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Two column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

/* Content sections */
.content-section {
    padding: 80px 30px;
}

.content-section.alt {
    background: var(--off-white);
}

.content-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section p {
    color: var(--warm-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Image containers */
.image-frame {
    overflow: hidden;
    background: var(--off-white);
    border-radius: var(--radius);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service detail sections */
.service-detail {
    padding: 80px 30px;
}

.service-detail.alt {
    background: var(--off-white);
}

.service-detail-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.service-detail .service-type {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 15px;
}

.service-detail p {
    color: var(--warm-grey);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    margin-top: 25px;
}

.service-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e8e5e1;
    color: var(--warm-grey);
    font-size: 0.9rem;
}

.service-list li:last-child {
    border-bottom: none;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-note {
    text-align: center;
    padding: 60px 30px;
    color: var(--warm-grey);
    font-size: 0.9rem;
    font-style: italic;
}

/* Suppliers list */
.supplier {
    padding: 35px 0;
    border-bottom: 1px solid #e8e5e1;
}

.supplier:last-child {
    border-bottom: none;
}

.supplier h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.supplier p {
    color: var(--warm-grey);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.supplier a {
    color: var(--brass);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--brass);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.supplier a:hover {
    color: var(--brass-dark);
    border-color: var(--brass-dark);
}

/* Contact form */
.contact-form {
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-grey);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e8e5e1;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brass);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-submit {
    display: inline-block;
    padding: 14px 40px;
    background: var(--brass);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--brass-dark);
}

.form-message {
    margin-top: 15px;
    font-size: 0.85rem;
    display: none;
}

.form-message.success {
    color: #4a7c59;
}

.form-message.error {
    color: #c0392b;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

/* Contact info sidebar */
.contact-info h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item .label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--charcoal);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-info-item a {
    color: var(--charcoal);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--brass);
}

.map-embed {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 250px;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 30px;
        gap: 15px;
        border-bottom: 1px solid #e8e5e1;
        z-index: 101;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav .brand img {
        height: 48px;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-logo {
        max-width: 350px;
    }

    .page-hero {
        padding: 45px 30px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .intro {
        padding: 70px 30px;
    }

    .services {
        padding: 70px 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .before-after {
        padding: 70px 30px;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .before-after-panel {
        height: 250px;
    }

    .testimonial {
        padding: 70px 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card blockquote {
        font-size: 1.15rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .cta {
        padding: 70px 30px;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .service-detail,
    .content-section {
        padding: 60px 30px;
    }

    .gallery-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .float-call { display: flex; }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-content .tagline {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .gallery-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Gallery 4-column variant */
.gallery-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Visually hidden (accessible to screen readers) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--brass);
    color: var(--white);
    padding: 10px 20px;
    z-index: 200;
    font-size: 0.85rem;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* FAQ accordion */
.faq-list {
    margin-top: 25px;
}

.faq-list details {
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
}

.faq-list summary {
    font-weight: 500;
    cursor: pointer;
}

.faq-list details p {
    margin-top: 10px;
    color: #666;
    line-height: 1.7;
}

/* Floating Call Button (mobile) */
.float-call {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brass);
    color: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(176, 141, 87, 0.5);
    animation: pulse-call 2s infinite;
    text-decoration: none;
}

.float-call svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@keyframes pulse-call {
    0% { box-shadow: 0 4px 20px rgba(176, 141, 87, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(176, 141, 87, 0.8), 0 0 0 8px rgba(176, 141, 87, 0.15); }
    100% { box-shadow: 0 4px 20px rgba(176, 141, 87, 0.5); }
}

