/* ============================================
   HERO
   Type-driven hero. The name IS the visual.
   Image is atmosphere, pushed to the background.
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl);
    overflow: hidden;
}

/* --- Background image as texture --- */

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%) contrast(1.1) brightness(0.35);
    opacity: 0.4;
}

/* Gradient fade: left side stays readable, image bleeds through on the right */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        var(--color-charcoal) 35%,
        rgba(26, 26, 26, 0.6) 65%,
        rgba(26, 26, 26, 0.3) 100%
    );
}

/* --- Content --- */

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin: 0 0 var(--space-lg) 0;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(80px, 13vw, 180px);
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 var(--space-xl) 0;
    color: var(--color-cream);
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: var(--color-orange);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(242, 239, 234, 0.6);
    max-width: 480px;
    margin: 0 0 var(--space-2xl) 0;
}

/* --- CTA --- */

.hero__cta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hero__phone {
    display: inline-flex;
    flex-direction: column;
    padding: var(--space-md) var(--space-xl);
    background: var(--color-orange);
    color: var(--color-charcoal);
    text-decoration: none;
    transition: background 200ms ease-out, transform 150ms ease-out;
}

.hero__phone:hover {
    background: var(--color-orange-light);
    transform: translateY(-2px);
}

.hero__phone:focus-visible {
    outline: 2px solid var(--color-cream);
    outline-offset: 3px;
}

.hero__phone-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__phone-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* --- Scroll hint --- */

.hero__scroll-hint {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll-hint span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--color-orange);
    opacity: 0.5;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.15; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 0.5; transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .hero {
        padding: var(--space-xl) var(--space-lg);
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero__bg::after {
        background: linear-gradient(
            180deg,
            rgba(26, 26, 26, 0.5) 0%,
            var(--color-charcoal) 50%
        );
    }

    .hero__title {
        font-size: clamp(56px, 16vw, 100px);
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__scroll-hint {
        display: none;
    }
}


/* ============================================
   ABOUT
   Giant "40" bleeds behind as watermark.
   Orange left stripe as structural edge.
   Two-column body copy for density.
   ============================================ */

.about {
    position: relative;
    padding: var(--space-4xl) var(--space-3xl);
    background:
        /* Noise grain texture */
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"),
        /* Diagonal gradient for depth */
        linear-gradient(
            160deg,
            #242424 0%,
            #2C2C2C 40%,
            #262626 70%,
            #222222 100%
        );
    overflow: hidden;
}

/* --- "40" watermark bleeding behind content --- */

.about__watermark {
    position: absolute;
    right: -0.05em;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(300px, 40vw, 500px);
    line-height: 0.75;
    letter-spacing: -0.05em;
    color: var(--color-orange);
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
}

.about__inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: var(--space-xl);
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* --- Orange left stripe --- */

.about__stripe {
    width: 4px;
    flex-shrink: 0;
    background: var(--color-orange);
}

/* --- Content --- */

.about__content {
    max-width: 720px;
}

.about__eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin: 0 0 var(--space-md) 0;
}

.about__heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--color-cream);
    margin: 0 0 var(--space-xl) 0;
}

.about__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.about__body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(242, 239, 234, 0.6);
    margin: 0;
}

.about__signature {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-orange);
    margin: 0;
}

/* --- About responsive --- */

@media (max-width: 900px) {
    .about {
        padding: var(--space-3xl) var(--space-lg);
    }

    .about__watermark {
        font-size: 200px;
        right: -0.1em;
    }

    .about__columns {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .about__heading {
        font-size: clamp(32px, 10vw, 48px);
    }
}


/* ============================================
   SERVICES
   Photo on left, services stacked on right.
   Image does the visual work. List stays clean.
   ============================================ */

.services {
    position: relative;
    padding: var(--space-4xl) var(--space-3xl);
    background: var(--color-charcoal);
}

.services__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Photo side --- */

.services__photo {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.services__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) brightness(0.9);
}

/* --- Content side --- */

.services__content {
    padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) var(--space-3xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services__eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin: 0 0 var(--space-md) 0;
}

.services__heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 56px);
    text-transform: uppercase;
    color: var(--color-cream);
    margin: 0 0 var(--space-xl) 0;
    line-height: 0.95;
}

/* --- List --- */

.services__list {
    list-style: none;
    margin: 0 0 var(--space-2xl) 0;
    padding: 0;
}

.services__item {
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(242, 239, 234, 0.08);
}

.services__item:last-child {
    border-bottom: 1px solid rgba(242, 239, 234, 0.08);
}

.services__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-cream);
    margin: 0 0 var(--space-xs) 0;
    line-height: 1.2;
}

.services__desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(242, 239, 234, 0.5);
    margin: 0;
}

/* --- CTA --- */

.services__cta {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-charcoal);
    background: var(--color-orange);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    transition: background 200ms ease-out, transform 150ms ease-out;
    align-self: flex-start;
}

.services__cta:hover {
    background: var(--color-orange-light);
    transform: translateY(-2px);
}

.services__cta:focus-visible {
    outline: 2px solid var(--color-cream);
    outline-offset: 3px;
}

/* --- Services responsive --- */

@media (max-width: 900px) {
    .services {
        padding: 0;
    }

    .services__inner {
        grid-template-columns: 1fr;
    }

    .services__photo {
        min-height: 300px;
    }

    .services__content {
        padding: var(--space-2xl) var(--space-lg);
    }
}


/* ============================================
   CONTACT / CTA
   The closer. Phone number as display type.
   Asymmetric two-column: copy left, contact right.
   ============================================ */

.contact {
    position: relative;
    padding: var(--space-5xl) var(--space-3xl);
    background:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E"),
        linear-gradient(
            160deg,
            #1E1E1E 0%,
            #262626 50%,
            #1A1A1A 100%
        );
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Left: copy --- */

.contact__lead {
    max-width: 520px;
}

.contact__eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin: 0 0 var(--space-md) 0;
}

.contact__heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--color-cream);
    margin: 0 0 var(--space-xl) 0;
}

.contact__body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(242, 239, 234, 0.55);
    margin: 0;
    max-width: 400px;
}

/* --- Right: contact info --- */

.contact__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
}

.contact__phone {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg) var(--space-2xl);
    background: var(--color-orange);
    color: var(--color-charcoal);
    text-decoration: none;
    transition: background 200ms ease-out, transform 150ms ease-out;
}

.contact__phone:hover {
    background: var(--color-orange-light);
    transform: translateY(-2px);
}

.contact__phone:focus-visible {
    outline: 2px solid var(--color-cream);
    outline-offset: 3px;
}

.contact__phone-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact__phone-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1;
}

.contact__email {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(242, 239, 234, 0.2);
    padding-bottom: 2px;
    transition: border-color 200ms ease-out, color 200ms ease-out;
}

.contact__email:hover {
    color: var(--color-orange);
    border-color: var(--color-orange);
}

.contact__email:focus-visible {
    outline: 2px solid var(--color-cream);
    outline-offset: 3px;
}

.contact__area {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(242, 239, 234, 0.35);
    margin: 0;
}

/* --- Contact responsive --- */

@media (max-width: 900px) {
    .contact {
        padding: var(--space-4xl) var(--space-lg);
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .contact__heading {
        font-size: clamp(36px, 10vw, 52px);
    }

    .contact__phone-number {
        font-size: clamp(32px, 9vw, 44px);
    }
}
