@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --ink: #121826;
    --ink-soft: #1f2937;
    --teal: #0f766e;
    --teal-dark: #115e59;
    --copper: #c47a42;
    --porcelain: #f7f4ef;
    --mist: #e8eee9;
    --white: #ffffff;
    --text: #5b6472;
    --muted: #8a94a6;
    --border: rgba(18, 24, 38, 0.11);
    --shadow-small: 0 12px 30px rgba(18, 24, 38, 0.08);
    --shadow-medium: 0 22px 55px rgba(18, 24, 38, 0.14);
    --shadow-large: 0 28px 80px rgba(18, 24, 38, 0.22);
    --radius: 8px;
    --transition: 220ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', Arial, sans-serif;
    background: var(--porcelain);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(18, 24, 38, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(18, 24, 38, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 65%);
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    max-width: 860px;
    font-size: clamp(2.45rem, 6vw, 5.8rem);
}

h2 {
    max-width: 820px;
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin-bottom: 20px;
}

h3 {
    font-size: 1.18rem;
    margin-bottom: 12px;
}

p {
    font-size: 1rem;
}

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

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

.container {
    width: min(90%, 1180px);
    margin: 0 auto;
}

section {
    padding: 104px 0;
}

.eyebrow {
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.section-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 42px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(247, 244, 239, 0.78);
    border-bottom: 1px solid rgba(18, 24, 38, 0.08);
    backdrop-filter: blur(18px);
    transition: var(--transition);
}

header.is-scrolled {
    background: rgba(247, 244, 239, 0.94);
    box-shadow: 0 12px 34px rgba(18, 24, 38, 0.08);
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: grid;
    color: var(--ink);
    line-height: 1;
}

.logo span {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.logo small {
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-top: 7px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 800;
    transition: var(--transition);
}

nav a:hover {
    background: rgba(15, 118, 110, 0.1);
    color: var(--teal-dark);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 118px;
    background:
        radial-gradient(circle at 6% 20%, rgba(196, 122, 66, 0.18), transparent 28%),
        linear-gradient(135deg, #fbf8f2 0%, #edf4ef 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
    align-items: center;
    gap: 56px;
}

.hero-content p:not(.eyebrow) {
    max-width: 720px;
    margin-top: 26px;
    font-size: 1.12rem;
    color: #596272;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: var(--transition);
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(15, 118, 110, 0.22);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(15, 118, 110, 0.28);
}

.btn-secondary {
    border: 1px solid rgba(18, 24, 38, 0.18);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.46);
}

.btn-secondary:hover {
    border-color: var(--copper);
    color: var(--copper);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    min-height: 610px;
    border-radius: 32px 8px 32px 8px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    isolation: isolate;
}

.hero-visual::after,
.work-card::after,
.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(18, 24, 38, 0.74) 100%);
    z-index: 1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    transform: scale(1.03);
    transition: 900ms ease;
}

.hero-visual:hover img,
.work-card:hover::before {
    transform: scale(1.08);
}

.stat-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    max-width: 250px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(18, 24, 38, 0.68);
    backdrop-filter: blur(14px);
}

.stat-card strong {
    display: block;
    font-size: 3rem;
    line-height: 1;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.split-section,
.why-us {
    background: var(--white);
}

.split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 64px;
    align-items: start;
}

.copy-stack {
    display: grid;
    gap: 18px;
    padding-top: 8px;
}

.copy-stack p {
    font-size: 1.06rem;
}

.services {
    background: var(--ink);
}

.services h2,
.services .service-card h3 {
    color: var(--white);
}

.services .eyebrow {
    color: #71d7cf;
}

.service-grid,
.why-grid,
.works-grid {
    display: grid;
    gap: 24px;
}

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

.service-card,
.why-card {
    position: relative;
    min-height: 245px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.service-card span {
    display: inline-flex;
    margin-bottom: 44px;
    color: var(--copper);
    font-size: 0.84rem;
    font-weight: 900;
}

.service-card p {
    color: rgba(255, 255, 255, 0.68);
}

.service-card:hover,
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-card:hover {
    border-color: rgba(113, 215, 207, 0.55);
}

.featured-works {
    background: var(--porcelain);
}

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

.works-grid.wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card {
    position: relative;
    min-height: 290px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
    isolation: isolate;
    transition: var(--transition);
}

.work-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1);
    transition: 700ms ease;
}

.work-card h3 {
    position: relative;
    z-index: 2;
    max-width: 84%;
    margin: 0;
    padding: 24px;
    color: var(--white);
    font-size: 1.45rem;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.sculpture::before,
.artwork::before {
    background-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=900&q=80");
}

.fountain::before {
    background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

.interior::before {
    background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=900&q=80");
}

.exterior::before,
.landscape::before {
    background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=900&q=80");
}

.commercial::before,
.decor::before {
    background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=900&q=80");
}

.theme::before {
    background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

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

.why-card {
    min-height: 210px;
    border-color: var(--border);
    background: var(--porcelain);
}

.why-card h3 {
    color: var(--ink);
}

.why-card p {
    color: var(--text);
}

.cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(rgba(18, 24, 38, 0.82), rgba(18, 24, 38, 0.86)),
        url("https://images.unsplash.com/photo-1487958449943-2429e8be8625?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    margin-inline: auto;
    color: var(--white);
}

.cta .eyebrow {
    color: #71d7cf;
}

.cta p:not(.eyebrow) {
    max-width: 720px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
}

footer {
    background: #0b111d;
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 36px;
    margin-bottom: 32px;
}

footer h3,
footer h4 {
    color: var(--white);
    margin-bottom: 14px;
}

footer p {
    color: rgba(255, 255, 255, 0.68);
}

footer hr {
    margin: 26px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.inner-hero {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
    isolation: isolate;
    background-position: center;
    background-size: cover;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero h1,
.inner-hero p:not(.eyebrow) {
    color: var(--white);
}

.inner-hero .eyebrow {
    color: #71d7cf;
}

.works-hero {
    background-image: url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1600&q=80");
}

.contact-hero {
    background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
}

.contact-section {
    background: var(--porcelain);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info,
.contact-form {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.contact-info {
    display: grid;
    gap: 24px;
    padding: 34px;
}

.contact-info h3 {
    margin-bottom: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 34px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--ink);
    background: #fbfaf7;
    font: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.contact-form button {
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--teal);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: var(--transition);
}

.contact-form button:hover {
    background: var(--teal-dark);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(15, 118, 110, 0.22);
}

.contact-form button:disabled {
    cursor: wait;
    opacity: 0.74;
    transform: none;
    box-shadow: none;
}

.form-status {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid rgba(15, 118, 110, 0.2);
    border-left: 4px solid var(--teal);
    border-radius: var(--radius);
    background: rgba(15, 118, 110, 0.08);
    color: var(--text);
}

.form-status[hidden] {
    display: none;
}

.form-status strong {
    color: var(--ink);
    font-size: 0.96rem;
    line-height: 1.35;
}

.form-status span {
    font-size: 0.92rem;
    line-height: 1.5;
}

.form-status.is-success {
    border-color: rgba(15, 118, 110, 0.24);
    border-left-color: var(--teal);
    background: rgba(15, 118, 110, 0.1);
}

.form-status.is-error {
    border-color: rgba(196, 122, 66, 0.28);
    border-left-color: var(--copper);
    background: rgba(196, 122, 66, 0.1);
}

.form-status.is-sending {
    border-color: rgba(18, 24, 38, 0.13);
    border-left-color: var(--ink-soft);
    background: #fbfaf7;
}

.reveal,
.service-card,
.why-card,
.work-card {
    opacity: 0;
    transform: translateY(24px);
}

.reveal.is-visible,
.service-card.is-visible,
.why-card.is-visible,
.work-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 650ms ease, transform 650ms ease, box-shadow var(--transition), border-color var(--transition);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--porcelain);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 999px;
}

@media (max-width: 1020px) {
    .hero-grid,
    .split-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 480px;
    }

    .hero-visual img {
        min-height: 480px;
    }

    .service-grid,
    .works-grid,
    .works-grid.wide,
    .why-grid,
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    section {
        padding: 76px 0;
    }

    .nav-shell {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
        gap: 14px;
    }

    nav {
        width: 100%;
        overflow-x: auto;
    }

    nav ul {
        width: max-content;
    }

    .hero {
        min-height: auto;
        padding-top: 150px;
    }

    .inner-hero {
        min-height: 58vh;
        padding-top: 168px;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 390px;
    }

    .service-grid,
    .works-grid,
    .works-grid.wide,
    .why-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .work-card {
        min-height: 245px;
    }

    .stat-card {
        right: 16px;
        bottom: 16px;
        left: 16px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .hero-buttons,
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .contact-form,
    .contact-info,
    .service-card,
    .why-card {
        padding: 24px;
    }
}
