:root {
    --ink: #f7f3ea;
    --muted: #b8b0a1;
    --white: #080c0f;
    --surface: #0d1114;
    --pink: #d9a84e;
    --purple: #f1c76a;
    --yellow: #f5c65b;
    --navy: #05080a;
    --nav-height: 84px;
    --shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

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

html {
    scroll-behavior: smooth;
}

body {
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

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

.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 0 clamp(24px, 5vw, 76px);
    background: rgba(5, 8, 10, 0.96);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo {
    color: var(--purple);
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.05em;
}

.logo-icon {
    width: 3em;
    height: 3em;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    mix-blend-mode: lighten;
}

.navbar nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 4vw, 56px);
    font-size: 0.95rem;
    font-weight: 700;
}

.navbar nav a {
    transition: color 160ms ease, transform 160ms ease;
}

.navbar nav a:hover {
    color: var(--pink);
    transform: translateY(-1px);
}

.nav-cta,
.button {
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-weight: 900;
    line-height: 1;
}

.nav-cta {
    min-width: 136px;
    padding: 0 24px;
    color: #080c0f;
    background: var(--pink);
    box-shadow: 0 12px 24px rgba(217, 168, 78, 0.24);
}

.hero {
    position: relative;
    min-height: 558px;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    padding: 88px 24px 150px;
    color: #f7f3ea;
    background:
        radial-gradient(circle at 12% 72%, rgba(241, 199, 106, 0.12) 0 8%, transparent 8.5%),
        radial-gradient(circle at 93% 4%, rgba(245, 198, 91, 0.14) 0 12%, transparent 12.5%),
        linear-gradient(118deg, #05080a 0%, #11161a 48%, #19130b 76%, #d9a84e 100%);
}

.hero::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -95px;
    height: 210px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 0;
}

.hero-content {
    width: min(900px, 100%);
    margin-top: 12px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.45rem, 6vw, 4.35rem);
    line-height: 1.17;
    font-weight: 950;
    letter-spacing: 0;
}

.hero p {
    margin-top: 18px;
    font-size: clamp(1rem, 2vw, 1.28rem);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 44px;
}

.button {
    border: 2px solid transparent;
    min-width: 200px;
    padding: 0 28px;
    font-size: 0.95rem;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
    color: #080c0f;
    background: var(--pink);
    box-shadow: 0 16px 30px rgba(217, 168, 78, 0.24);
}

.button-outline {
    color: #f7f3ea;
    border-color: rgba(241, 199, 106, 0.72);
    background: rgba(241, 199, 106, 0.06);
}

.button-outline:hover {
    background: rgba(241, 199, 106, 0.16);
}

.dot-field {
    width: 78px;
    height: 78px;
    background-image: radial-gradient(rgba(241, 199, 106, 0.72) 2px, transparent 2.5px);
    background-size: 18px 18px;
    position: absolute;
    opacity: 0.9;
    z-index: 1;
}

.dot-field-left {
    left: 45px;
    top: 250px;
    width: 10px;
}

.dot-field-right {
    right: 84px;
    top: 140px;
}

.hero-ring {
    position: absolute;
    right: -42px;
    top: -88px;
    width: 252px;
    height: 252px;
    border: 66px solid rgba(241, 199, 106, 0.12);
    border-radius: 50%;
    z-index: 1;
}

.hero-blob {
    position: absolute;
    left: 48px;
    bottom: 74px;
    width: 150px;
    height: 210px;
    border-radius: 48% 52% 50% 50%;
    background: rgba(241, 199, 106, 0.09);
    transform: rotate(34deg);
    z-index: 1;
}

.section {
    padding: 76px clamp(22px, 5vw, 72px);
    scroll-margin-top: calc(var(--nav-height) + 18px);
}

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: 0;
    text-align: center;
}

.eyebrow {
    color: var(--pink);
    font-size: 0.92rem;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 8px;
}

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

.section-intro {
    max-width: 660px;
    margin: 12px auto 0;
    color: rgba(247, 243, 234, 0.76);
    font-size: 1.12rem;
    text-align: center;
}

.services-intro {
    max-width: 780px;
    margin: 22px auto 0;
    color: var(--yellow);
    font-size: 1.12rem;
    font-weight: 700;
    text-align: center;
}

.services-section {
    padding-top: 36px;
    background: var(--white);
}

.service-grid,
.project-grid {
    width: min(1030px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    margin: 34px auto 0;
}

.service-card {
    min-height: 294px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 28px;
    text-align: center;
    background: var(--white);
    border: 1px solid rgba(241, 199, 106, 0.22);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.service-card h3 {
    margin-top: 24px;
    font-size: 1.32rem;
    font-weight: 900;
}

.service-card p {
    max-width: 245px;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 600;
}

.service-purple h3 {
    color: var(--purple);
}

.service-pink h3 {
    color: var(--pink);
}

.service-yellow h3 {
    color: #f1c76a;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    position: relative;
}

.service-purple .service-icon {
    background: var(--purple);
}

.service-pink .service-icon {
    background: var(--pink);
}

.service-yellow .service-icon {
    background: var(--yellow);
}

.monitor-icon::before {
    content: "";
    width: 35px;
    height: 24px;
    border: 3px solid #080c0f;
    border-radius: 2px;
}

.monitor-icon::after {
    content: "";
    position: absolute;
    bottom: 22px;
    width: 22px;
    height: 12px;
    border-bottom: 3px solid #080c0f;
    border-left: 3px solid #080c0f;
    transform: skewX(-10deg);
}

.brush-icon::before {
    content: "";
    width: 13px;
    height: 42px;
    background: linear-gradient(to bottom, #080c0f 0 78%, transparent 78%);
    clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
    border-radius: 7px 7px 0 0;
    transform: translate(4px, -7px) rotate(42deg);
}

.brush-icon::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 16px;
    border-bottom: 3px solid #080c0f;
    border-radius: 50%;
    transform: translate(-12px, 18px) rotate(-14deg);
}

.search-icon::before {
    content: "";
    width: 30px;
    height: 30px;
    border: 3px solid #080c0f;
    border-radius: 50%;
    transform: translate(-5px, -5px);
}

.search-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background: #080c0f;
    border-radius: 99px;
    transform: translate(17px, 17px) rotate(45deg);
}

.work-section,
.contact-section {
    position: relative;
    overflow: hidden;
    color: #f7f3ea;
    background:
        radial-gradient(circle at 36% 9%, rgba(217, 168, 78, 0.14), transparent 32%),
        linear-gradient(112deg, var(--navy) 0%, #0d1114 52%, #030506 100%);
}

.project-grid {
    width: min(1130px, 100%);
}

.project-card {
    display: block;
    overflow: hidden;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.42);
}

.project-link {
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.project-link:hover,
.project-link:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.5);
}

.project-card h3 {
    min-height: 74px;
    display: grid;
    place-items: center;
    padding: 18px;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 950;
    text-align: center;
}

.project-image {
    min-height: 270px;
    display: flex;
    align-items: center;
    padding: 28px;
    background-position: center;
    background-size: cover;
    position: relative;
    isolation: isolate;
}

.project-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.16));
    z-index: -1;
}

.bakery {
    background-image: url("https://vishnuvaka.com/images/IMG_0044.jpeg?v=20260214");
}

.trainer {
    background-image: url("https://static.wixstatic.com/media/e6636d_abf2b75f93d14a979f68a8e0d89c2cb4~mv2.jpg/v1/fill/w_900,h_540,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/e6636d_abf2b75f93d14a979f68a8e0d89c2cb4~mv2.jpg");
    background-position: center top;
}

.real-estate {
    background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80");
}

.project-overlay {
    max-width: 230px;
    color: #f7f3ea;
}

.project-overlay p {
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.08;
    font-weight: 950;
    text-transform: uppercase;
}

.project-overlay span {
    display: inline-flex;
    margin-top: 18px;
    padding: 8px 12px;
    border-radius: 3px;
    color: #080c0f;
    background: #f1c76a;
    font-size: 0.62rem;
    font-weight: 950;
    text-transform: uppercase;
}

.about-section {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.98fr);
    align-items: center;
    gap: clamp(44px, 8vw, 86px);
    width: min(1160px, 100%);
    margin: 0 auto;
    padding-top: 74px;
    padding-bottom: 74px;
}

.about-image {
    min-height: 330px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08)),
        url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1000&q=80") center / cover;
}

.about-copy .eyebrow,
.about-copy h2 {
    text-align: left;
}

.about-copy h2 {
    font-size: clamp(1.95rem, 4vw, 2.65rem);
}

.about-copy p:not(.eyebrow) {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.08rem;
    font-weight: 600;
}

.about-copy .button {
    margin-top: 28px;
    min-width: 210px;
}

.contact-section {
    padding-top: 70px;
    padding-bottom: 76px;
}

.contact-section > *:not(.dot-field, .contact-ring) {
    position: relative;
    z-index: 1;
}

.contact-dots {
    left: 38px;
    top: 130px;
    background-image: radial-gradient(rgba(241, 199, 106, 0.36) 3px, transparent 3.5px);
    background-size: 26px 26px;
    width: 150px;
    height: 130px;
}

.contact-ring {
    position: absolute;
    right: -115px;
    bottom: -150px;
    width: 340px;
    height: 340px;
    border: 76px solid rgba(241, 199, 106, 0.06);
    border-radius: 50%;
}

.contact-form {
    width: min(670px, 100%);
    display: grid;
    gap: 14px;
    margin: 30px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form label {
    display: block;
}

.contact-form label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(241, 199, 106, 0.22);
    border-radius: 7px;
    padding: 19px 21px;
    color: #f7f3ea;
    background: rgba(247, 243, 234, 0.07);
    box-shadow: inset 0 1px 0 rgba(247, 243, 234, 0.06);
    font: inherit;
    font-weight: 650;
    outline: none;
}

.contact-form textarea {
    min-height: 112px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(247, 243, 234, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(241, 199, 106, 0.82);
    box-shadow: 0 0 0 4px rgba(241, 199, 106, 0.16);
}

.contact-form button {
    min-height: 58px;
    border: 0;
    border-radius: 7px;
    color: #080c0f;
    background: var(--yellow);
    box-shadow: 0 14px 26px rgba(241, 199, 106, 0.19);
    cursor: pointer;
    font: inherit;
    font-weight: 950;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(241, 199, 106, 0.26);
}

.pricing-section {
    position: relative;
    overflow: hidden;
    color: #f7f3ea;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(245, 198, 91, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, #0a0e11 0%, var(--navy) 100%);
}

.pricing-grid {
    width: min(860px, 100%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin: 44px auto 0;
}

.pricing-card {
    padding: 48px 40px;
    background: rgba(247, 243, 234, 0.04);
    border: 1px solid rgba(241, 199, 106, 0.22);
    border-radius: 20px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.52);
    text-align: center;
    display: flex;
    flex-direction: column;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pricing-card-featured {
    border-color: rgba(241, 199, 106, 0.54);
    background: rgba(245, 198, 91, 0.06);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(241, 199, 106, 0.12), 0 0 48px rgba(245, 198, 91, 0.08);
    position: relative;
}

.pricing-badge {
    display: inline-block;
    margin: 0 auto 18px;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--yellow);
    color: #080c0f;
    font-size: 0.75rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-fine-print {
    margin-top: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    opacity: 0.7;
}

.pricing-label {
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--yellow);
    margin-bottom: 22px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-bottom: 14px;
}

.pricing-dollar {
    font-size: 1.6rem;
    font-weight: 900;
    margin-top: 8px;
    color: var(--ink);
}

.pricing-number {
    font-size: clamp(3.5rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
}

.pricing-period {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--muted);
    align-self: flex-end;
    padding-bottom: 10px;
    margin-left: 4px;
}

.pricing-tagline {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: rgba(241, 199, 106, 0.18);
    margin: 32px 0;
}

.pricing-features {
    list-style: none;
    text-align: left;
    display: grid;
    gap: 18px;
    margin-bottom: 40px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(247, 243, 234, 0.88);
}

.pricing-features li::before {
    content: "✓";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(245, 198, 91, 0.15);
    border: 1.5px solid var(--yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    font-weight: 900;
    color: var(--yellow);
}

.pricing-cta {
    width: 100%;
    font-size: 1rem;
    margin-top: auto;
}

footer {
    padding: 24px;
    color: var(--muted);
    background: var(--surface);
    text-align: center;
    font-weight: 600;
}

@media (max-width: 900px) {
    .navbar {
        height: auto;
        min-height: var(--nav-height);
        flex-direction: column;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .navbar nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 28px;
    }

    .service-grid,
    .project-grid,
    .about-section,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding-left: 22px;
        padding-right: 22px;
    }
}

@media (max-width: 620px) {
    .hero {
        min-height: 620px;
        padding-top: 72px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .dot-field-right,
    .hero-blob,
    .contact-dots {
        display: none;
    }

    .section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .service-card {
        min-height: 250px;
    }

    .project-image {
        min-height: 230px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
