/* =========================================================
   THEHOPESUP — SERVICES PAGE
   Modern Business / Creative Studio Design
   ========================================================= */


/* =========================
   RESET
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Work Sans", Arial, sans-serif;
    background: #f7f5ef;
    color: #241f19;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 245, 239, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e5e0d6;
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mark-sun {
    width: 40px;
    height: 40px;
}

.mark-word {
    font-family: "Fraunces", Georgia, serif;
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -0.7px;
}

.mark-word em {
    color: #c8791f;
    font-style: normal;
}


/* DESKTOP NAV */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #5d564e;
    padding: 8px 0;
    transition: color 0.25s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 0;
    height: 2px;
    background: #c8791f;
    transition: width 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #241f19;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}


/* NAV RIGHT */

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}


/* =========================
   BUTTONS
   ========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 21px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-ink {
    background: #241f19;
    color: #fff;
}

.btn-ink:hover {
    background: #3a3028;
}

.btn-outline {
    border: 1px solid #241f19;
    color: #241f19;
    background: transparent;
}

.btn-outline:hover {
    background: #241f19;
    color: #fff;
}

.btn-light {
    background: #f7f5ef;
    color: #241f19;
}

.btn-light:hover {
    background: #fff;
}


/* MOBILE BUTTON */

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #d8d1c6;
    background: transparent;
    color: #241f19;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}


/* MOBILE MENU */

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 10px 4%;
    background: #f7f5ef;
    border-top: 1px solid #e5e0d6;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu a {
    padding: 15px 0;
    border-bottom: 1px solid #e5e0d6;
    font-size: 15px;
    font-weight: 500;
}

.mobile-menu a:hover {
    color: #c8791f;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
}

.catalog-hero {
    padding: 125px 0 115px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(200, 121, 31, 0.13),
            transparent 27%
        ),
        #f7f5ef;
    border-bottom: 1px solid #e5e0d6;
}

.catalog-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(200, 121, 31, 0.16);
    border-radius: 50%;
    right: -160px;
    top: 50px;
}

.catalog-hero::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(36, 31, 25, 0.08);
    border-radius: 50%;
    right: -50px;
    top: 150px;
}

.hero .container {
    position: relative;
    z-index: 2;
}


/* EYEBROW */

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: #c8791f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: #c8791f;
}


/* HERO TITLE */

.catalog-hero h1 {
    max-width: 900px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(48px, 7vw, 86px);
    font-weight: 600;
    line-height: 0.99;
    letter-spacing: -3px;
    color: #241f19;
    margin-bottom: 32px;
}

.catalog-hero p {
    max-width: 690px;
    color: #6a6259;
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 38px;
}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.section {
    padding: 110px 0;
}


/* =========================================================
   SERVICES CATALOG
   ========================================================= */

.catalog {
    background: #fffdf9;
}

.catalog-list {
    border-top: 1px solid #dcd6cb;
}


/* SERVICE ROW */

.catalog-row {
    position: relative;
    min-height: 155px;
    display: grid;
    grid-template-columns: 65px 65px minmax(250px, 1fr) minmax(260px, 0.8fr) 50px;
    align-items: center;
    gap: 25px;
    padding: 30px 15px;
    border-bottom: 1px solid #dcd6cb;
    transition:
        background 0.3s ease,
        padding 0.3s ease;
}

.catalog-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #c8791f;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.catalog-row:hover {
    background: #f7f2e9;
    padding-left: 25px;
}

.catalog-row:hover::before {
    transform: scaleY(1);
}


/* NUMBER */

.catalog-number {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #91887d;
}


/* ICON */

.catalog-icon {
    width: 48px;
    height: 48px;
    padding: 9px;
    background: #f5eee3;
    border-radius: 50%;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.catalog-row:hover .catalog-icon {
    background: #fff;
    transform: rotate(5deg);
}


/* TITLE */

.catalog-title h3 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 27px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 7px;
}

.catalog-title p {
    color: #81786f;
    font-size: 14px;
}


/* TAGS */

.catalog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.catalog-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid #ddd5c9;
    border-radius: 100px;
    color: #756d65;
    font-size: 11px;
    font-weight: 500;
    background: #fffdf9;
}


/* ARROW */

.catalog-go {
    width: 44px;
    height: 44px;
    border: 1px solid #d8d1c6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.catalog-go svg {
    width: 18px;
    height: 18px;
    stroke: #241f19;
}

.catalog-row:hover .catalog-go {
    background: #c8791f;
    border-color: #c8791f;
    transform: rotate(45deg);
}

.catalog-row:hover .catalog-go svg {
    stroke: #fff;
}


/* =========================================================
   PROCESS SECTION
   ========================================================= */

.process {
    background: #f1eee7;
}

.process-head {
    max-width: 750px;
    margin-bottom: 65px;
}

.process-head .hero-eyebrow {
    margin-bottom: 20px;
}

.process-head h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.process-head p {
    color: #716960;
    font-size: 17px;
    max-width: 650px;
    line-height: 1.8;
}


/* PROCESS GRID */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d5cec2;
    border-bottom: 1px solid #d5cec2;
}

.process-step {
    position: relative;
    min-height: 270px;
    padding: 35px 28px 30px;
    border-right: 1px solid #d5cec2;
}

.process-step:last-child {
    border-right: none;
}

.step-index {
    display: inline-block;
    margin-bottom: 48px;
    color: #c8791f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.process-step h3 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.process-step p {
    color: #716960;
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================================
   CTA BAND
   ========================================================= */

.cta-band {
    position: relative;
    overflow: hidden;
    background: #241f19;
    color: #fff;
}

.cta-band::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -160px;
    top: -230px;
}

.cta-band::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(200, 121, 31, 0.25);
    border-radius: 50%;
    right: 30px;
    bottom: -170px;
}

.cta-band-inner {
    position: relative;
    z-index: 2;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.field-note {
    margin-bottom: 17px;
    color: #d99546;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-band h2 {
    max-width: 700px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 22px;
}

.cta-band p {
    max-width: 590px;
    color: #c5beb5;
    font-size: 16px;
    line-height: 1.7;
}

.cta-band .btn {
    flex-shrink: 0;
    min-width: 190px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #fffdf9;
    padding: 80px 0 25px;
    border-top: 1px solid #e2ddd4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.9fr;
    gap: 80px;
    padding-bottom: 60px;
}


/* FOOTER ABOUT */

.footer-about {
    max-width: 430px;
}

.footer-about .mark {
    margin-bottom: 23px;
}

.footer-about > p {
    color: #756d65;
    font-size: 14px;
    line-height: 1.8;
}


/* SOCIALS */

.footer-socials {
    display: flex;
    gap: 9px;
    margin-top: 25px;
}

.footer-socials a {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d1c6;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.footer-socials a:hover {
    background: #241f19;
    color: #fff;
    border-color: #241f19;
}


/* FOOTER HEADINGS */

.footer-heading {
    margin-bottom: 20px;
    color: #241f19;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* FOOTER LINKS */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    width: fit-content;
    color: #716960;
    font-size: 14px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: #c8791f;
    transform: translateX(4px);
}


/* FOOTER BOTTOM */

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #e1dbd1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #91887d;
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 20px;
    }

    .nav-right .btn {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .catalog-row {
        grid-template-columns: 45px 55px 1fr 45px;
    }

    .catalog-tags {
        display: none;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:nth-child(2) {
        border-right: none;
    }

    .process-step:nth-child(-n + 2) {
        border-bottom: 1px solid #d5cec2;
    }

    .footer-grid {
        gap: 45px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .container {
        width: min(92%, 560px);
    }

    .nav {
        min-height: 70px;
    }

    .desktop-nav {
        display: none;
    }

    .catalog-hero {
        padding: 85px 0 75px;
    }

    .catalog-hero h1 {
        font-size: clamp(43px, 13vw, 65px);
        letter-spacing: -2px;
    }

    .catalog-hero p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section {
        padding: 75px 0;
    }


    /* SERVICE ROW */

    .catalog-row {
        grid-template-columns: 38px 1fr 42px;
        gap: 15px;
        min-height: auto;
        padding: 27px 5px;
    }

    .catalog-row:hover {
        padding-left: 12px;
    }

    .catalog-icon {
        display: none;
    }

    .catalog-number {
        align-self: start;
        padding-top: 5px;
    }

    .catalog-title h3 {
        font-size: 23px;
    }

    .catalog-title p {
        font-size: 13px;
    }

    .catalog-go {
        width: 38px;
        height: 38px;
    }


    /* PROCESS */

    .process-head {
        margin-bottom: 45px;
    }

    .process-head h2 {
        font-size: 42px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step,
    .process-step:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid #d5cec2;
        min-height: auto;
        padding: 28px 0;
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .step-index {
        margin-bottom: 25px;
    }

    .process-step h3 {
        font-size: 25px;
    }


    /* CTA */

    .cta-band-inner {
        min-height: auto;
        padding: 70px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band h2 {
        font-size: 44px;
    }

    .cta-band .btn {
        width: 100%;
    }


    /* FOOTER */

    .footer {
        padding-top: 65px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 45px;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .mark-word {
        font-size: 20px;
    }

    .mark-sun {
        width: 35px;
        height: 35px;
    }

    .catalog-hero h1 {
        font-size: 41px;
    }

    .catalog-hero p {
        font-size: 15px;
    }

    .catalog-title h3 {
        font-size: 21px;
    }

    .process-head h2 {
        font-size: 37px;
    }

    .cta-band h2 {
        font-size: 38px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(200, 121, 31, 0.45);
    outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}