/* ============================================
   Guerrera Machine Company — Custom Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-900: #1a2e25;
    --green-800: #2D4A3E;
    --green-700: #3d5f4f;
    --green-600: #4a7c62;
    --green-500: #5a8f72;
    --off-white: #F5F2EB;
    --off-white-light: #FAF8F4;
    --cream: #EDE8DD;
    --text-dark: #1a1a18;
    --text-mid: #4a4a46;
    --text-light: #7a7a74;
    --border: rgba(45, 74, 62, 0.15);
    --border-strong: rgba(45, 74, 62, 0.3);
    --font-display: 'Crimson Pro', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--green-800);
    color: var(--off-white);
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    font-size: 0.875rem;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* --- Custom Cursor --- */
.cursor-dot,
.cursor-ring {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    .cursor-dot {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 6px;
        height: 6px;
        background: var(--green-800);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background 0.2s;
    }

    .cursor-ring {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 36px;
        height: 36px;
        border: 1px solid var(--green-600);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
                    border-color 0.3s, background 0.3s;
    }

    .cursor-ring.hover {
        width: 56px;
        height: 56px;
        border-color: var(--green-500);
        background: rgba(45, 74, 62, 0.06);
    }
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    transition: background 0.4s var(--ease-smooth),
                box-shadow 0.4s var(--ease-smooth),
                padding 0.4s var(--ease-smooth);
}

.header.scrolled {
    background: rgba(245, 242, 235, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.header.scrolled .logo-mark {
    background: var(--green-800);
    color: var(--off-white);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 101;
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--off-white);
    background: transparent;
    border: 1px solid rgba(245, 242, 235, 0.4);
    border-radius: 4px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-line-one {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--off-white);
    transition: color 0.3s;
}

.logo-line-two {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.7);
    transition: color 0.3s;
}

.header.scrolled .logo-line-one {
    color: var(--text-dark);
}

.header.scrolled .logo-line-two {
    color: var(--text-mid);
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.75);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--off-white);
}

.header.scrolled .nav-link {
    color: var(--text-mid);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link:focus {
    color: var(--green-800);
}

.nav-cta {
    display: none;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--off-white);
    border: 1px solid rgba(245, 242, 235, 0.4);
    padding: 0.625rem 1.5rem;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav-cta:hover {
    background: var(--off-white);
    color: var(--green-800);
    border-color: var(--off-white);
}

.header.scrolled .nav-cta {
    color: var(--green-800);
    border-color: var(--green-800);
}

.header.scrolled .nav-cta:hover {
    background: var(--green-800);
    color: var(--off-white);
}

/* Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--off-white);
    transition: transform 0.3s var(--ease-out),
                opacity 0.3s var(--ease-out),
                background 0.3s;
    transform-origin: center;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.header.scrolled .menu-toggle .hamburger-line {
    background: var(--text-dark);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--green-800);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--off-white);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--green-500);
}

.mobile-cta {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--off-white);
    border: 1px solid rgba(245, 242, 235, 0.4);
    padding: 0.875rem 2.5rem;
    border-radius: 2px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.mobile-cta:hover {
    background: var(--off-white);
    color: var(--green-800);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 46, 37, 0.88) 0%,
        rgba(45, 74, 62, 0.75) 50%,
        rgba(26, 46, 37, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    padding-top: 5rem;
}

.hero-accent-line {
    width: 60px;
    height: 1px;
    background: var(--green-500);
    margin-bottom: 2rem;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.6);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--off-white);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}

.hero-accent {
    font-style: italic;
    color: var(--green-500);
}

.hero-sub {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.7);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s var(--ease-out);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--off-white);
    color: var(--green-800);
    border-color: var(--off-white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--off-white);
    border-color: var(--off-white);
}

.btn-arrow {
    transition: transform 0.2s var(--ease-out);
}

.btn:hover .btn-arrow {
    transform: translate(3px, -3px);
}

.btn-ghost {
    background: transparent;
    color: var(--off-white);
    border-color: rgba(245, 242, 235, 0.35);
}

.btn-ghost:hover {
    border-color: var(--off-white);
    background: rgba(245, 242, 235, 0.08);
}

.btn-light {
    background: var(--green-800);
    color: var(--off-white);
    border-color: var(--green-800);
}

.btn-light:hover {
    background: var(--green-700);
    border-color: var(--green-700);
}

.btn-ghost-sm {
    background: none;
    border: none;
    color: var(--green-600);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    margin-top: 1.5rem;
    transition: color 0.3s;
}

.btn-ghost-sm:hover {
    color: var(--green-800);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Scroll Indicator --- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(245, 242, 235, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.4);
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* --- Section Shared --- */
.section-header {
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.section-accent {
    font-style: italic;
    color: var(--green-700);
}

.section-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 560px;
}

/* --- Services --- */
.services {
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.service-card {
    background: var(--off-white);
    padding: 2.5rem;
    transition: background 0.3s;
}

.service-card:hover {
    background: var(--off-white-light);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
}

/* --- About --- */
.about {
    padding: 8rem 0;
    background: var(--off-white-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
}

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--green-500);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.4;
}

.about-content {
    padding: 1rem 0;
}

.about-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.stat {
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--green-800);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    flex-shrink: 0;
}

/* --- Why Us --- */
.why-us {
    padding: 8rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.why-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

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

.why-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--green-500);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.why-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 480px;
}

/* --- Materials --- */
.materials {
    padding: 6rem 0;
    background: var(--green-800);
}

.materials-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.materials-content .section-label {
    color: var(--green-500);
}

.materials-content .section-title {
    color: var(--off-white);
}

.materials-content .section-accent {
    color: var(--green-400);
}

.materials-content .materials-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.6);
    max-width: 400px;
}

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

.materials-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(245, 242, 235, 0.1);
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.85);
}

.materials-list li:first-child {
    border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.material-dot {
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 6rem 0;
    background: var(--cream);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.cta-left .section-label {
    margin-bottom: 1rem;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 0;
}

.cta-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    max-width: 420px;
}

.cta-right {
    max-width: 440px;
}

/* --- Contact --- */
.contact {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info {
    padding-top: 0.5rem;
}

.contact-desc {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--green-700);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    transition: color 0.2s;
}

.contact-item-value:hover {
    color: var(--green-700);
}

/* --- Form --- */
.contact-form-wrapper {
    background: var(--off-white-light);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form-input {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0.875rem 1rem;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
    appearance: none;
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:hover {
    border-color: var(--border-strong);
}

.form-input:focus {
    border-color: var(--green-600);
    background: var(--off-white-light);
    box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.08);
}

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

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7a74' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: var(--off-white);
    color: var(--text-dark);
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
}

.form-success.visible {
    display: block;
}

.form-success-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    margin-bottom: 1.5rem;
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.success-text {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 320px;
}

/* --- Footer --- */
.footer {
    background: var(--green-900);
    padding: 5rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(245, 242, 235, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    background: transparent;
    border-color: rgba(245, 242, 235, 0.3);
    color: var(--off-white);
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--off-white);
}

.footer-tagline {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 242, 235, 0.5);
    max-width: 280px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 242, 235, 0.35);
}

.footer-nav,
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a,
.footer-contact-list a {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.65);
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-contact-list a:hover {
    color: var(--off-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
}

.footer-copy {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.35);
}

.footer-location {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(245, 242, 235, 0.35);
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-item {
        padding: 3rem 0;
    }

    .materials-inner {
        grid-template-columns: 1fr 1fr;
    }

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

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }

    .hero-content {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .nav {
        display: block;
    }

    .nav-cta {
        display: inline-flex;
    }

    .menu-toggle {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-item {
        padding: 3rem 1.5rem;
    }

    .cta-inner {
        grid-template-columns: 1fr auto;
        gap: 4rem;
    }

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

    .about-grid {
        grid-template-columns: auto 1fr;
        gap: 4rem;
        align-items: stretch;
    }

    .about-image {
        max-width: 480px;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        padding-left: 0;
    }

    .container {
        padding: 0 4rem;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .scroll-line {
        animation: none;
        opacity: 0.6;
    }
}
