:root {
    --bg-dark: #121418;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --accent: #d35400;
    /* Rich Copper/Rust */
    --accent-dark: #a04000;
    --surface-off-white: #fdfbf7;
    --surface-tan: #f5f0e1;
    --primary: #2c3e50;
    /* Deep Navy */
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--surface-off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(18, 20, 24, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(12, 14, 18, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

nav a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--accent);
    color: #fff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
}

.phone-pill {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.phone-pill:hover {
    background: #fff;
    color: var(--bg-dark);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(18, 20, 24, 0.7), rgba(18, 20, 24, 0.7)),
        url('https://images.unsplash.com/photo-1518780664697-55e3ad937233?auto=format&fit=crop&q=80&w=2000') center/cover;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    padding-top: 80px;
    /* Spacer for fixed header */
}

.hero-content {
    max-width: 850px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
}

.hero h1 span {
    color: var(--accent);
    font-style: italic;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 2rem;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--bg-dark);
}

/* --- Owner's Note (Human Element) --- */
.owner-note {
    padding: 12rem 0;
    margin-top: -5rem;
    position: relative;
    z-index: 10;
}

.note-card {
    background: var(--surface-tan);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    border-radius: 0px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.note-text {
    padding: 6rem;
}

.eyebrow {
    display: block;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.note-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.note-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.4rem;
}

.note-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Services (Asymmetrical) --- */
.services {
    padding: 10rem 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 8rem;
}

.section-intro h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-stack {
    display: flex;
    flex-direction: column;
    gap: 12rem;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
}

.block-image {
    position: relative;
}

.block-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.block-image::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: -2rem;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent);
    z-index: -1;
}

.block-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.block-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.alternate .block-image::after {
    left: auto;
    right: -2rem;
}

/* --- Contact Section --- */
.contact-section {
    padding: 10rem 0;
    background: var(--bg-dark);
    color: #fff;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
}

.contact-left h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.contact-info-list {
    margin-top: 4rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item strong {
    display: block;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.info-item a,
.info-item span {
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}

.contact-right {
    background: #fff;
    padding: 4rem;
    color: var(--text-main);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

input,
textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    height: 150px;
    margin-bottom: 1.5rem;
}

.submit-pill {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.submit-pill:hover {
    background: var(--accent-dark);
}

/* --- Footer --- */
footer {
    padding: 6rem 0;
    background: #000;
    color: #666;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    color: #fff;
}

/* --- State-based Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.reveal-delay.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .note-card {
        grid-template-columns: 1fr;
    }

    .note-text {
        padding: 4rem 2rem;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .alternate .block-content {
        order: 2;
    }

    .contact-box {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}