:root {
    --black: #111111;
    --dark: #1c1c1c;
    --purple: #9b7bc7;
    --light-purple: #eee8f8;
    --cream: #fbf8f5;
    --white: #ffffff;
    --gray: #666666;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: var(--cream);
    color: var(--black);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: Georgia, serif;
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.top-strip {
    background: var(--light-purple);
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: bold;
}

.navbar {
    background: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.logo-wrap img {
    width: 240px;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--purple);
}

.nav-button {
    background: var(--purple);
    color: white !important;
    padding: 12px 20px;
    border-radius: 999px;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 85px 8%;
    align-items: center;
    gap: 55px;
    background: linear-gradient(120deg, #ffffff, #f6f0fb);
}

.eyebrow {
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: bold;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.12;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--purple);
    font-style: italic;
}

.hero-description,
.hero p {
    max-width: 560px;
    margin-bottom: 28px;
    color: #444444;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 420px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 26px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.primary {
    background: var(--purple);
    color: white;
}

.primary:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.secondary {
    border: 1px solid var(--purple);
    color: var(--black);
    background: transparent;
}

.secondary:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-2px);
}

/* Feature Bar */
.feature-bar {
    background: var(--black);
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 36px 8%;
    gap: 28px;
}

.feature-bar h3 {
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 8px;
}

.feature-bar p {
    color: #dddddd;
    font-size: 13px;
}

/* Why Section */
.why-section {
    padding: 75px 8%;
    background: var(--white);
    text-align: center;
}

.why-section h2 {
    font-size: 38px;
    margin-bottom: 35px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-grid div {
    background: var(--cream);
    padding: 34px 26px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.why-grid h3 {
    margin-bottom: 12px;
}

.why-grid p {
    color: var(--gray);
}

/* General Sections */
.section {
    padding: 75px 8%;
}

.section h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

/* Services */
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.card {
    background: white;
    padding: 32px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.card h3 {
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 12px;
}

.card p {
    color: var(--gray);
    font-size: 14px;
}

/* Portfolio */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.portfolio-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}

.portfolio-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.portfolio-content {
    padding: 22px;
}

.portfolio-content span {
    display: inline-block;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 8px;
}

.portfolio-content h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.portfolio-content p {
    color: var(--gray);
    font-size: 14px;
}

/* About */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 85px 8%;
    gap: 60px;
    align-items: center;
    background: white;
}

.about-image {
    text-align: center;
    background: var(--light-purple);
    padding: 50px;
    border-radius: 18px;
}

.about-image img {
    max-width: 300px;
}

.about-text h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--gray);
}

/* Contact */
.contact-section {
    background: var(--black);
    color: white;
    text-align: center;
    padding: 85px 8%;
}

.contact-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.contact-section p {
    margin-bottom: 28px;
    color: #dddddd;
}

/* Footer */
footer {
    background: #080808;
    color: white;
    padding: 45px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

footer img {
    width: 190px;
    display: block;
}

footer h4 {
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

footer p {
    color: #cccccc;
    font-size: 14px;
}

.footer-tagline {
    margin-top: 12px;
    color: #cccccc;
    font-style: italic;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1100px) {
    .service-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        gap: 18px;
    }

    .nav-links {
        flex-direction: column;
        gap: 14px;
    }

    .hero,
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-description,
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .why-grid,
    footer {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero,
    .section,
    .why-section,
    .about-section,
    .contact-section {
        padding: 55px 6%;
    }

    .feature-bar,
    .service-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .logo-wrap img {
        width: 210px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .section h2,
    .why-section h2,
    .about-text h2,
    .contact-section h2 {
        font-size: 30px;
    }
}
.contact-form {
    max-width: 700px;
    margin: 35px auto 0;
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-family: Arial, sans-serif;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    border: none;
    cursor: pointer;
    justify-self: center;
}

.form-message {
    max-width: 700px;
    margin: 20px auto;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: bold;
}

.form-message.success {
    background: #e7f7ec;
    color: #246b36;
}

.form-message.error {
    background: #fde8e8;
    color: #8a1f1f;
}