/* =========================================
   VARIABLES
========================================= */

:root {
    --yellow: #f6c945;
    --yellow-light: #ffe58a;
    --yellow-dark: #dba900;

    --black: #171717;
    --dark: #222222;
    --grey-dark: #555;
    --grey: #777;
    --grey-light: #f4f3ef;
    --white: #ffffff;

    --border: #e4e1d9;

    --radius: 18px;
    --radius-small: 10px;

    --shadow: 0 18px 50px rgba(0, 0, 0, 0.10);

    --max-width: 1180px;
}


/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================
   GLOBAL
========================================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 0.78rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.12em;

    color: #8b6800;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 60px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 22px;

    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading h2 em {
    font-style: normal;
    color: #8b6800;
}

.section-heading p {
    max-width: 650px;

    color: var(--grey-dark);
    font-size: 1.08rem;
}


/* =========================================
   HEADER
========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
}

.header-content {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    line-height: 1;
}

.logo-icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    background: var(--yellow);

    border-radius: 50%;

    font-size: 1.3rem;
}

.logo strong,
.logo small {
    display: block;
}

.logo strong {
    font-size: 1rem;
}

.logo small {
    margin-top: 4px;

    color: var(--grey);

    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;

    font-size: 0.9rem;
    font-weight: 600;
}

.nav a {
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #a47700;
}

.header-button {
    padding: 12px 18px;

    background: var(--black);
    color: var(--white);

    border-radius: 8px;

    font-size: 0.85rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.header-button:hover {
    background: #333;
    transform: translateY(-2px);
}


/* =========================================
   HERO
========================================= */

.hero {
    padding: 80px 0 100px;

    background:
        radial-gradient(
            circle at 85% 20%,
            #fff2bd 0,
            transparent 28%
        ),
        var(--grey-light);
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.85fr);

    align-items: center;

    gap: 70px;
}

.hero h1 {
    max-width: 750px;

    margin-bottom: 28px;

    font-size: clamp(3rem, 6vw, 5.5rem);

    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero h1 span {
    display: block;
    color: #a77a00;
}

.hero-description {
    max-width: 650px;

    margin-bottom: 20px;

    color: var(--grey-dark);

    font-size: 1.15rem;
}

.hero-highlight {
    margin-bottom: 32px;

    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 22px;

    border-radius: 9px;

    font-size: 0.9rem;
    font-weight: 800;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--yellow);
    color: var(--black);

    box-shadow: 0 8px 20px rgba(219, 169, 0, 0.25);
}

.button-secondary {
    border: 1px solid var(--border);
    background: var(--white);
}

.hero-reassurance {
    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    color: var(--grey-dark);

    font-size: 0.78rem;
    font-weight: 600;
}


/* =========================================
   HERO IMAGE
========================================= */

.hero-visual {
    position: relative;
}

.photo-frame {
    position: relative;

    overflow: hidden;

    border: 10px solid var(--white);

    border-radius: 22px;

    box-shadow: var(--shadow);

    transform: rotate(2deg);
}

.photo-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;
}

.photo-sticker {
    position: absolute;

    padding: 9px 13px;

    background: var(--yellow);

    border: 2px solid var(--black);

    font-size: 0.68rem;
    font-weight: 900;

    box-shadow: 4px 4px 0 var(--black);
}

.sticker-top {
    top: 24px;
    right: 20px;

    transform: rotate(4deg);
}

.sticker-bottom {
    bottom: 25px;
    left: 20px;

    background: var(--white);

    transform: rotate(-4deg);
}


/* =========================================
   TRUST BAR
========================================= */

.trust-bar {
    padding: 35px 0;

    background: var(--black);
    color: var(--white);
}

.trust-items {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.trust-items > div {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    text-align: center;
}

.trust-items strong {
    color: var(--yellow);

    font-size: 1.6rem;
}

.trust-items span {
    color: #ccc;

    font-size: 0.78rem;
}


/* =========================================
   SERVICES
========================================= */

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

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    padding: 32px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}

.service-card-dark {
    background: var(--black);
    color: var(--white);

    border-color: var(--black);
}

.service-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    background: var(--yellow);

    border-radius: 12px;

    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 12px;

    font-size: 1.2rem;
}

.service-card p {
    margin-bottom: 25px;

    color: var(--grey-dark);

    font-size: 0.9rem;
}

.service-card-dark p {
    color: #c9c9c9;
}

.service-tag {
    display: inline-block;

    padding: 6px 9px;

    background: var(--grey-light);

    border-radius: 5px;

    color: var(--grey-dark);

    font-size: 0.68rem;
    font-weight: 800;
}

.service-card-dark .service-tag {
    background: #333;
    color: var(--yellow);
}


/* =========================================
   MANIFESTO
========================================= */

.manifesto {
    padding: 100px 0;

    background: var(--yellow);
}

.manifesto-content {
    position: relative;

    max-width: 850px;

    text-align: center;
}

.big-quote {
    position: absolute;

    top: -80px;
    left: 50%;

    transform: translateX(-50%);

    font-family: Georgia, serif;

    color: rgba(0, 0, 0, 0.12);

    font-size: 12rem;
    line-height: 1;
}

.manifesto p {
    position: relative;

    margin-bottom: 25px;

    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;

    line-height: 1.05;
    letter-spacing: -0.04em;
}

.manifesto-signature {
    font-size: 0.85rem;
    font-weight: 700;
}


/* =========================================
   METHOD
========================================= */

.method {
    background: var(--grey-light);
}

.steps {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.step {
    padding: 28px;

    background: var(--white);

    border-radius: var(--radius);

    border: 1px solid var(--border);
}

.step-number {
    margin-bottom: 25px;

    color: var(--yellow-dark);

    font-size: 0.8rem;
    font-weight: 900;
}

.step h3 {
    margin-bottom: 10px;

    font-size: 1rem;
}

.step p {
    color: var(--grey);

    font-size: 0.85rem;
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 90px;
}

.about-image {
    position: relative;

    min-height: 520px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #222 0%,
            #555 100%
        );

    overflow: hidden;
}

.about-image::before {
    content: "🔨";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -55%);

    font-size: 12rem;

    filter: grayscale(1);
}

.about-card {
    position: absolute;

    right: 20px;
    bottom: 20px;
    left: 20px;

    padding: 20px;

    background: var(--yellow);

    border: 3px solid var(--black);

    box-shadow: 6px 6px 0 var(--black);

    display: flex;
    align-items: center;

    gap: 14px;
}

.about-card-icon {
    font-size: 2rem;
}

.about-card strong {
    font-size: 1.1rem;
}

.about-card span:last-child {
    color: #604b00;

    font-size: 0.72rem;
}

.about-text h2 {
    max-width: 700px;

    margin-bottom: 25px;

    font-size: clamp(2.3rem, 4vw, 4rem);

    line-height: 1.02;
    letter-spacing: -0.05em;
}

.about-text p {
    max-width: 650px;

    margin-bottom: 18px;

    color: var(--grey-dark);
}

.about-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-top: 30px;

    font-size: 0.85rem;
    font-weight: 700;
}


/* =========================================
   PRICING
========================================= */

.pricing {
    background: var(--grey-light);
}

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.price-card {
    position: relative;

    padding: 35px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);
}

.price-card.featured {
    border: 3px solid var(--yellow);

    box-shadow: var(--shadow);
}

.popular {
    position: absolute;

    top: 20px;
    right: 20px;

    padding: 6px 8px;

    background: var(--yellow);

    font-size: 0.6rem;
    font-weight: 900;
}

.price-icon {
    display: block;

    margin-bottom: 20px;

    font-size: 2rem;
}

.price-card h3 {
    margin-bottom: 10px;

    font-size: 1.3rem;
}

.price-description {
    min-height: 65px;

    margin-bottom: 25px;

    color: var(--grey);

    font-size: 0.85rem;
}

.price-card ul {
    list-style: none;

    margin-bottom: 30px;
}

.price-card li {
    padding: 8px 0;

    border-bottom: 1px solid var(--border);

    font-size: 0.85rem;
}

.price-card li::before {
    content: "✓";

    margin-right: 8px;

    color: var(--yellow-dark);

    font-weight: 900;
}

.price-note {
    font-weight: 900;
    font-size: 0.9rem;
}


/* =========================================
   CTA
========================================= */

.cta {
    padding: 100px 0;

    background: var(--black);
    color: var(--white);
}

.cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta h2 {
    margin-bottom: 18px;

    font-size: clamp(2.8rem, 6vw, 5.5rem);

    line-height: 0.95;
    letter-spacing: -0.06em;
}

.cta p {
    color: #bbb;
}

.cta .eyebrow {
    color: var(--yellow);
}

.cta-decoration {
    display: grid;
    place-items: center;

    width: 180px;
    height: 180px;

    flex-shrink: 0;

    background: var(--yellow);

    border-radius: 50%;

    font-size: 5rem;

    transform: rotate(-12deg);
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 30px 0;

    background: #101010;

    color: #aaa;
}

.footer-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;

    gap: 12px;
}

.footer-logo > span {
    font-size: 1.7rem;
}

.footer-logo strong,
.footer-logo small {
    display: block;
}

.footer-logo strong {
    color: var(--white);

    font-size: 0.85rem;
}

.footer-logo small {
    margin-top: 3px;

    font-size: 0.65rem;
}

.footer p {
    text-align: right;

    font-size: 0.7rem;
}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 950px) {

    .nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-text {
        max-width: 750px;
    }

    .hero-visual {
        max-width: 600px;

        margin-inline: auto;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-inline: auto;
    }

    .price-description {
        min-height: auto;
    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 650px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--max-width)
        );
    }

    .section {
        padding: 75px 0;
    }


    /* Header */

    .header-content {
        min-height: 65px;
    }

    .header-button {
        display: none;
    }


    /* Hero */

    .hero {
        padding: 55px 0 70px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-reassurance {
        flex-direction: column;
        gap: 7px;
    }

    .photo-frame {
        border-width: 6px;
    }


    /* Trust */

    .trust-items {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* Services */

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

    .service-card {
        padding: 25px;
    }


    /* Manifesto */

    .manifesto {
        padding: 75px 0;
    }

    .manifesto p {
        font-size: 2.2rem;
    }

    .big-quote {
        top: -60px;

        font-size: 8rem;
    }


    /* Method */

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


    /* About */

    .about-image {
        min-height: 400px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .cta {
        padding: 75px 0;
    }

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta-decoration {
        width: 110px;
        height: 110px;

        font-size: 3rem;
    }


    /* Footer */

    .footer-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer p {
        text-align: left;
    }

}


/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
