/* ========================================
   Silent Landscapers - Premium Design
   ======================================== */

:root {
    --color-bg: #0d1210;
    --color-bg-elevated: #141a17;
    --color-bg-accent: #1a2420;
    --color-green: #2d5a3d;
    --color-green-light: #4a7c5c;
    --color-cream: #f5f4f0;
    --color-white: #ffffff;
    --color-gray: #a8a8a8;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-cream);
    background-color: var(--color-bg);
    overflow-x: hidden;
    cursor: none;
}

a { color: inherit; text-decoration: none; }
.hidden { display: none !important; }

/* Custom Cursor */
.cursor, .cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

body:hover .cursor-follower.hover {
    width: 60px;
    height: 60px;
}

@media (pointer: coarse) {
    .cursor, .cursor-follower { display: none; }
    body { cursor: auto; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    mix-blend-mode: difference;
}

.logo {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-white);
}

.header-cta {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.header-cta:hover {
    background: var(--color-white);
    color: var(--color-bg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(45,90,61,0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(45,90,61,0.2) 0%, transparent 50%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
    padding: 0 10%;
}

.hero-lines span {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 10%, rgba(255,255,255,0.07) 30%, rgba(255,255,255,0.07) 70%, transparent 90%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-green-light);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideUp 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.15s;
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-gray);
    max-width: 550px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.hero-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 150px;
    height: 150px;
    transition: transform 0.1s ease-out;
}

.hero-badge svg {
    width: 100%;
    height: 100%;
}

.hero-badge text {
    font-size: 7.5px;
    fill: var(--color-cream);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Caring Section - Holiday + Winter combined */
.caring {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, var(--color-bg-accent) 0%, var(--color-green) 30%, var(--color-green) 70%, var(--color-bg-accent) 100%);
    position: relative;
}

.caring-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.caring-message {
    padding-bottom: 3rem;
}

.caring-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.caring-text {
    font-family: var(--font-body);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-cream);
    text-wrap: balance;
}

.caring-divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 0 auto 3rem;
}

.caring-note {
    padding: 2.5rem;
    background: rgba(0,0,0,0.15);
    border-radius: 2px;
}

.caring-note h4 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.caring-note p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    text-wrap: balance;
}

/* Subtle grain texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-elevated) 15%, var(--color-bg-elevated) 85%, var(--color-bg-accent) 100%);
    position: relative;
}

.feature {
    padding: 5rem 4rem;
    border-right: 1px solid rgba(255,255,255,0.04);
    transition: background 0.5s ease;
    text-align: left;
}

.feature:nth-child(2) {
    border-left: 1px solid rgba(255,255,255,0.04);
    transform: translateY(2rem);
}

.feature:last-child {
    border-right: none;
}

.feature:hover {
    background: rgba(255,255,255,0.015);
}

.feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 2.5rem;
    color: var(--color-green-light);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.feature p {
    color: var(--color-cream);
    font-size: 1.3rem;
    line-height: 1.9;
    opacity: 0.75;
    max-width: 320px;
}

/* Big Text */
.big-text {
    padding: 8rem 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-accent) 0%, var(--color-bg-accent) 60%, var(--color-bg-accent) 100%);
}

.big-text h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 400;
    line-height: 1;
    color: rgba(245, 244, 240, 0.9);
}

.big-text h2 span {
    display: block;
    transition: color 0.3s ease;
}

.big-text h2 span:hover {
    color: var(--color-green-light);
}

/* Contact */
.contact {
    padding: 8rem 3rem;
    background: linear-gradient(180deg, var(--color-bg-accent) 0%, var(--color-bg-elevated) 20%, var(--color-bg-elevated) 80%, var(--color-bg) 100%);
    color: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

.contact-bg-text {
    font-family: var(--font-display);
    font-size: clamp(15rem, 25vw, 28rem);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px rgba(45,90,61,0.25);
    text-transform: lowercase;
    line-height: 1;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.contact-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.contact-left h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--color-cream);
}

.contact-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 3rem;
}

.contact-trust {
    display: flex;
    gap: 3rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-cream);
}

.trust-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-right {
    background: rgba(45,90,61,0.12);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid rgba(45,90,61,0.2);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 0;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-cream);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-cream);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 1.1rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.85rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.form-group textarea {
    resize: none;
}

.form .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.35rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-bg);
    background: var(--color-green-light);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form .btn:hover {
    background: var(--color-white);
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form .btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form .btn:hover svg {
    transform: translateX(8px);
}

/* Footer */
.footer {
    padding: 4rem 3rem;
    background: var(--color-bg);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-cream);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer p {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.footer-credit {
    color: var(--color-gray);
    transition: color 0.3s ease;
}

.footer-credit:hover {
    color: var(--color-cream);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: 1fr;
    }

    .feature {
        border-right: none;
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        transform: none;
    }

    .feature:nth-child(2) {
        transform: none;
        border-left: none;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-bg-text {
        font-size: 12rem;
        top: 0;
        transform: translateY(0);
    }

    .contact-trust {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-badge {
        width: 120px;
        height: 120px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .caring,
    .big-text,
    .contact {
        padding: 4rem 1.5rem;
    }

    .caring-note {
        padding: 2rem;
    }

    .contact-right {
        padding: 2rem;
    }

    .feature {
        padding: 3.5rem 1.5rem;
    }

    .footer {
        padding: 1.5rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth scrolling for all */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
