:root {
    --bg: #f3efe9;
    --bg-strong: #13213b;
    --surface: rgba(255, 250, 244, 0.78);
    --surface-solid: #fffaf5;
    --surface-strong: #172542;
    --text: #15213a;
    --text-soft: #5e6677;
    --line: rgba(21, 33, 58, 0.12);
    --accent: #e66a4b;
    --accent-dark: #c94f34;
    --accent-soft: rgba(230, 106, 75, 0.14);
    --accent-alt: #4e6fff;
    --accent-alt-soft: rgba(78, 111, 255, 0.14);
    --success: #1e7b62;
    --error: #b04b50;
    --shadow: 0 22px 60px rgba(17, 28, 49, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(230, 106, 75, 0.14), transparent 28%),
        radial-gradient(circle at right 20%, rgba(19, 33, 59, 0.1), transparent 24%),
        linear-gradient(180deg, #fbf7f2 0%, var(--bg) 52%, #f8f4ef 100%);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--bg-strong);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    z-index: 100;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(251, 247, 242, 0.76);
    border-bottom: 1px solid rgba(21, 33, 58, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 0.12rem;
}

.brand__name {
    font-family: 'Fraunces', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.brand__tag {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    color: var(--text-soft);
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--primary,
.button--nav {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 28px rgba(230, 106, 75, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible,
.button--nav:hover,
.button--nav:focus-visible {
    background: var(--accent-dark);
}

.button--secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.5);
    color: var(--text);
}

.button--full {
    width: 100%;
}

.hero {
    padding: 3.1rem 0 1.8rem;
}

.hero--compact {
    padding-bottom: 1.5rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
    gap: 1.35rem;
    align-items: center;
}

.hero__grid--single {
    grid-template-columns: 1fr;
}

.hero__content,
.hero-showcase__frame,
.service-card,
.contact-form,
.contact-note,
.values article {
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: var(--shadow);
}

.hero__content {
    position: relative;
    overflow: hidden;
    padding: 2.15rem;
    border-radius: calc(var(--radius-lg) + 6px);
    background:
        radial-gradient(circle at top right, rgba(230, 106, 75, 0.16), transparent 30%),
    radial-gradient(circle at left 20%, rgba(78, 111, 255, 0.08), transparent 26%),
    linear-gradient(145deg, rgba(255, 250, 244, 0.94), rgba(255, 245, 238, 0.72));
}

.hero__content::after {
    content: '';
    position: absolute;
    right: -6rem;
    bottom: -7rem;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: rgba(19, 33, 59, 0.08);
}

.hero__visual {
    position: relative;
    width: 100%;
    max-width: 29rem;
    justify-self: end;
}

.hero-showcase {
    position: relative;
    min-height: 25rem;
    padding: 0.6rem 0;
}

.hero-showcase__frame {
    overflow: hidden;
    min-height: 23rem;
    border-radius: calc(var(--radius-lg) + 8px);
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.96), rgba(244, 240, 250, 0.84));
}

.hero-showcase__frame::before {
    content: '';
    position: absolute;
    left: -3rem;
    bottom: 2rem;
    width: 11rem;
    height: 11rem;
    border-radius: 50%;
    background: rgba(78, 111, 255, 0.12);
}

.hero-showcase__toolbar {
    display: flex;
    gap: 0.45rem;
    padding: 1rem 1rem 0;
}

.hero-showcase__toolbar span {
    width: 0.78rem;
    height: 0.78rem;
    border-radius: 50%;
    background: rgba(21, 33, 58, 0.18);
}

.hero-showcase__toolbar span:first-child {
    background: rgba(230, 106, 75, 0.72);
}

.hero-showcase__toolbar span:nth-child(2) {
    background: rgba(78, 111, 255, 0.62);
}

.hero-showcase__canvas {
    display: grid;
    gap: 1rem;
    padding: 0.9rem 0.9rem 3.2rem;
}

.hero-showcase__accent {
    height: 8.5rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(78, 111, 255, 0.9), rgba(111, 133, 255, 0.86) 48%, rgba(230, 106, 75, 0.8));
}

.hero-showcase__panel {
    position: relative;
    margin: -3.1rem 1rem 0;
    padding: 1.1rem;
    border-radius: 22px;
    background: rgba(255, 251, 247, 0.94);
    border: 1px solid rgba(21, 33, 58, 0.08);
    box-shadow: 0 18px 40px rgba(17, 28, 49, 0.12);
}

.hero-showcase__panel p {
    margin: 0 0 0.9rem;
    color: var(--text-soft);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-showcase__title,
.hero-showcase__line {
    border-radius: 999px;
}

.hero-showcase__title {
    width: 88%;
    height: 1.05rem;
    background: rgba(21, 33, 58, 0.84);
}

.hero-showcase__title--short {
    width: 62%;
    margin-top: 0.7rem;
}

.hero-showcase__line {
    width: 100%;
    height: 0.8rem;
    margin-top: 1rem;
    background: rgba(21, 33, 58, 0.14);
}

.hero-showcase__line--short {
    width: 76%;
    margin-top: 0.6rem;
}

.hero-showcase__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.hero-showcase__chips span {
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
}

.hero-showcase__chips span {
    padding: 0.5rem 0.85rem;
    background: var(--accent-soft);
    color: var(--accent-dark);
}

.hero-showcase__chips span:nth-child(2) {
    background: var(--accent-alt-soft);
    color: var(--accent-alt);
}

.hero-showcase__chips span:nth-child(3) {
    background: rgba(21, 33, 58, 0.08);
    color: var(--text);
}

.hero-showcase__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 0.2rem;
}

.hero-showcase__card {
    padding: 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(21, 33, 58, 0.08);
    box-shadow: 0 16px 32px rgba(17, 28, 49, 0.08);
}

.hero-showcase__card strong,
.hero-showcase__card small {
    display: block;
}

.hero-showcase__card strong {
    font-size: 0.95rem;
}

.hero-showcase__card small {
    margin-top: 0.35rem;
    font-size: 0.84rem;
    color: var(--text-soft);
}

.hero-showcase__card--light {
    background: rgba(238, 244, 255, 0.96);
}

.hero-showcase__card--warm {
    background: rgba(255, 242, 236, 0.96);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1rem;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.eyebrow::before {
    content: '';
    width: 2.4rem;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Fraunces', serif;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

h1 {
    max-width: 13ch;
    font-size: clamp(2.15rem, 3.9vw, 4.05rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.6rem;
}

.hero__lead {
    max-width: 50ch;
    margin: 0.95rem 0 0;
    font-size: 0.97rem;
    color: var(--text-soft);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.25rem 0 1rem;
}

.hero__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero__list li {
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(21, 33, 58, 0.08);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero__list li:nth-child(2) {
    background: rgba(235, 241, 255, 0.7);
}

.hero__list li:nth-child(3) {
    background: rgba(255, 240, 233, 0.82);
}

.hero__list--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section {
    padding: 2.2rem 0 4.5rem;
}

.section__heading {
    margin-bottom: 1.8rem;
}

.section__heading p:last-child {
    max-width: 62ch;
    color: var(--text-soft);
}

.section--values {
    padding-top: 0;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.values article {
    padding: 1.6rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.66);
}

.values article:nth-child(2) {
    background: rgba(235, 241, 255, 0.72);
}

.values article:nth-child(3) {
    background: rgba(255, 242, 236, 0.74);
}

.values p,
.service-card p,
.contact-copy p,
.site-footer p {
    color: var(--text-soft);
}

.text-highlight {
    color: var(--accent-dark);
    font-weight: 800;
}

.section__note {
    margin: 0.85rem 0 0;
    font-size: 0.92rem;
    color: var(--text-soft);
}

.service-groups {
    display: grid;
    gap: 1.8rem;
}

.service-group__intro {
    margin-bottom: 1rem;
}

.service-group__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.service-group__intro h3 {
    font-size: 1.75rem;
}

.service-group__intro p:last-child {
    max-width: 62ch;
    color: var(--text-soft);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.services-grid--web {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid--seo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid rgba(21, 33, 58, 0.06);
    backdrop-filter: blur(16px);
}

.service-card--web {
    background: linear-gradient(180deg, rgba(241, 245, 255, 0.96), rgba(233, 240, 255, 0.86));
}

.service-card--seo {
    background: linear-gradient(180deg, rgba(255, 247, 242, 0.96), rgba(255, 238, 232, 0.88));
}

.service-card--seo .service-card__price {
    background: rgba(255, 232, 223, 0.92);
    color: #9c4a31;
}

.service-card--seo li::before {
    background: #d96a49;
}

.service-card__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-card__top h3 {
    flex: 1 1 12rem;
    min-width: 0;
}

.service-card__price {
    flex: 0 0 auto;
    margin: 0;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
}

.service-card ul {
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 1.15rem;
    margin-top: 0.65rem;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.78rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}

.section--contact {
    padding-bottom: 5rem;
}

.section--contact-page {
    padding-top: 1.35rem;
}

.section--cta {
    padding-top: 0;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.55);
    background:
        radial-gradient(circle at right top, rgba(78, 111, 255, 0.12), transparent 26%),
        linear-gradient(135deg, rgba(255, 250, 244, 0.88), rgba(255, 240, 233, 0.8));
    box-shadow: var(--shadow);
}

.cta-panel p:last-child {
    max-width: 56ch;
    color: var(--text-soft);
}

.cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-end;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.25rem;
    align-items: start;
}

.contact-copy {
    padding: 1rem 0;
}

.contact-copy__title {
    font-size: clamp(2rem, 3vw, 2.85rem);
}

.contact-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.62);
}

.contact-form {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: var(--surface-solid);
}

.contact-form label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 0.95rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.button:focus-visible,
.site-nav a:focus-visible {
    outline: 2px solid rgba(230, 106, 75, 0.32);
    outline-offset: 3px;
}

.form-alert {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    font-weight: 600;
}

.form-alert--success {
    background: rgba(30, 123, 98, 0.12);
    color: var(--success);
}

.form-alert--error,
.field-error {
    color: var(--error);
}

.field-error {
    margin: -0.45rem 0 0.8rem;
    font-size: 0.94rem;
}

.form-note {
    margin: 0.9rem 0 0;
    font-size: 0.92rem;
    color: var(--text-soft);
}

.form-note a,
.site-footer__links a {
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
}

.site-footer {
    border-top: 1px solid rgba(21, 33, 58, 0.08);
    background:
        radial-gradient(circle at top right, rgba(78, 111, 255, 0.08), transparent 24%),
        rgba(255, 250, 244, 0.8);
}

.site-footer__inner {
    display: grid;
    gap: 1rem;
    padding: 1.7rem 0 2rem;
}

.site-footer__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-footer__brand {
    max-width: 34rem;
}

.site-footer strong {
    display: block;
    margin-bottom: 0.35rem;
}

.site-footer__column {
    min-width: 14rem;
}

.site-footer__label {
    margin: 0 0 0.5rem;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.site-footer__nav {
    display: grid;
    gap: 0.4rem;
}

.site-footer__nav a {
    color: var(--text-soft);
    font-weight: 600;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
    color: var(--text);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(21, 33, 58, 0.08);
}

.section--legal {
    padding-top: 2.5rem;
}

.legal-content {
    max-width: 760px;
}

.legal-content h1 {
    max-width: none;
    margin-bottom: 1rem;
}

.legal-content h2 {
    margin-top: 2rem;
    font-size: 1.65rem;
}

.legal-content p {
    color: var(--text-soft);
}

@media (max-width: 1024px) {
    .hero__grid,
    .contact-grid,
    .services-grid,
    .values {
        grid-template-columns: 1fr;
    }

    .hero__list,
    .hero__list--two {
        grid-template-columns: 1fr;
    }

    .hero__content,
    .hero-showcase__frame,
    .contact-form,
    .cta-panel {
        padding: 1.5rem;
    }

    .hero-showcase {
        min-height: auto;
        padding-top: 0;
    }

    .hero-showcase__frame {
        min-height: auto;
    }

    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .site-header__inner,
    .site-footer__top,
    .site-footer__bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .hero {
        padding-top: 2.5rem;
    }

    h1 {
        max-width: 100%;
    }

    .button,
    .button--secondary,
    .button--primary {
        width: 100%;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero-showcase__cards {
        grid-template-columns: 1fr;
    }

    .cta-panel__actions {
        width: 100%;
        flex-direction: column;
    }

    .service-card__top,
    .hero__price {
        flex-direction: column;
        align-items: flex-start;
    }
}