:root {
    --bg: #f8f3ea;
    --bg-soft: #fffdf8;
    --panel: rgba(255, 255, 255, 0.9);
    --line: rgba(170, 138, 96, 0.18);
    --text: #1f2230;
    --muted: #5f6473;
    --accent: #0f766e;
    --accent-2: #d97706;
    --accent-soft: #f4e5d2;
    --shadow: 0 28px 70px rgba(92, 74, 48, 0.14);
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 26%),
        radial-gradient(circle at 82% 16%, rgba(217, 119, 6, 0.16), transparent 18%),
        linear-gradient(180deg, #fffdf8 0%, #f8f3ea 52%, #efe5d6 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(145, 119, 82, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(145, 119, 82, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 90%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 14px 0 0;
}

.site-header__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid rgba(170, 138, 96, 0.2);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(92, 74, 48, 0.12);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #151823;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.site-brand__logo {
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.site-brand__text {
    font-size: 1.08rem;
}

.site-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    color: #384152;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
    color: #151823;
    background: rgba(255, 255, 255, 0.82);
    transform: translateY(-1px);
}

.site-nav a.is-active {
    color: var(--accent);
    background: rgba(15, 118, 110, 0.08);
}

.site-nav__cta {
    color: #f9fbfb !important;
    background: linear-gradient(135deg, var(--accent) 0%, #14b8a6 100%);
    box-shadow: 0 14px 28px rgba(15, 118, 110, 0.16);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid rgba(170, 138, 96, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0;
}

.nav-toggle__bar {
    display: block;
    width: 18px;
    height: 2px;
    background: #384152;
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 56px;
}

.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: center;
    min-height: 100vh;
}

.hero-title {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    color: #151823;
    white-space: normal;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.copy,
.visual {
    position: relative;
    z-index: 1;
}

.visual {
    align-self: start;
    padding-top: 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.95);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 20px 0 18px;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: #151823;
}

.lead {
    max-width: 640px;
    margin: 0 0 30px;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.7;
}

.sublead {
    max-width: 620px;
    margin: -10px 0 24px;
    color: #4f5563;
    line-height: 1.75;
    font-size: 1rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 28px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    color: #344054;
    font-size: 0.92rem;
    font-weight: 700;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    min-width: 20px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
}

.button.primary {
    color: #f9fbfb;
    background: linear-gradient(135deg, var(--accent) 0%, #14b8a6 100%);
    box-shadow: 0 16px 30px rgba(15, 118, 110, 0.18);
}

.button.secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--line);
}

.button.facebook {
    color: #fff;
    background: linear-gradient(135deg, #1877f2 0%, #0f5fcb 100%);
    box-shadow: 0 16px 30px rgba(24, 119, 242, 0.28);
}

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

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 6px;
}

.stat {
    position: relative;
    padding: 24px 22px 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 246, 238, 0.96));
    border: 1px solid var(--line);
    border-radius: 24px;
    backdrop-filter: blur(14px);
    min-height: 100%;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.stat::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0.95;
}

.stat::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.08);
    filter: blur(10px);
}

.stat strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.stat span {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
    display: block;
    margin-bottom: 18px;
}

.stat small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid rgba(15, 118, 110, 0.1);
    color: #374151;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.art-card {
    position: relative;
    padding: 18px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 245, 236, 0.98));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-top: 0;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.art-card::before {
    content: "";
    position: absolute;
    inset: -20% auto auto -20%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.16);
    filter: blur(26px);
}

.art-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -50px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.12);
    filter: blur(30px);
}

.art-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(170, 138, 96, 0.14);
    background: rgba(255, 250, 241, 0.92);
}

.art-frame img {
    display: block;
    width: 100%;
    height: auto;
    animation: heroImageFloat 5.4s ease-in-out infinite;
}

.note {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 24px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(170, 138, 96, 0.14);
    background: rgba(255, 253, 248, 0.94);
    backdrop-filter: blur(12px);
    color: var(--text);
    font-size: 0.95rem;
    max-width: 240px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent);
}

.art-card:hover .note,
.art-card:focus-within .note {
    opacity: 1;
    transform: translateY(0);
}

.bottom-mascot {
    position: fixed;
    left: 0;
    bottom: 6px;
    z-index: 40;
    width: 80px;
    pointer-events: auto;
    user-select: none;
    animation: bottomMascotBob 1s ease-in-out infinite;
}

.bottom-mascot__image {
    display: block;
    width: 70px;
    height: auto;
    filter: drop-shadow(0 16px 28px rgba(40, 58, 88, 0.2));
    transform-origin: center bottom;
    pointer-events: auto;
    touch-action: none;
    cursor: grab;
}

.bottom-mascot.is-dragging,
.bottom-mascot.is-falling,
.bottom-mascot.is-sitting,
.bottom-mascot.is-standing-up,
.bottom-mascot.is-thrown {
    animation: none;
}

.bottom-mascot.is-dragging .bottom-mascot__image {
    cursor: grabbing;
    filter: drop-shadow(0 24px 38px rgba(40, 58, 88, 0.28));
}

.bottom-mascot.is-thrown .bottom-mascot__bubble {
    box-shadow: 0 22px 40px rgba(57, 52, 43, 0.18);
}

.bottom-mascot.is-sitting {
    z-index: 42;
}

.bottom-mascot.is-sitting .bottom-mascot__image {
    filter: drop-shadow(0 10px 18px rgba(40, 58, 88, 0.18));
}

.bottom-mascot.is-standing-up {
    z-index: 42;
}

.bottom-mascot.is-standing-up .bottom-mascot__image {
    filter: drop-shadow(0 14px 24px rgba(40, 58, 88, 0.2));
}

.bottom-mascot.is-sitting .bottom-mascot__bubble {
    box-shadow: 0 16px 28px rgba(57, 52, 43, 0.16);
}

.bottom-mascot__bubble {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 24px);
    min-width: 240px;
    max-width: 320px;
    padding: 12px 15px;
    border-radius: 16px 16px 16px 6px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(15, 118, 110, 0.16);
    box-shadow: 0 18px 34px rgba(57, 52, 43, 0.14);
    color: #173041;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    transition: opacity 0.18s ease, transform 0.18s ease;
    transform: translateX(-50%);
    pointer-events: none;
}

.bottom-mascot__bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.97);
    border-right: 1px solid rgba(15, 118, 110, 0.16);
    border-bottom: 1px solid rgba(15, 118, 110, 0.16);
    transform: translateX(-50%) rotate(45deg);
}

.bottom-mascot__bubble.is-switching {
    opacity: 0;
    transform: translateY(8px);
}

.spinacz-step-line {
    position: fixed;
    height: 2px;
    border-radius: 2px;
    background: rgba(15, 23, 42, 0.42);
    pointer-events: none;
    z-index: 39;
    animation: spinaczStepFade 0.62s ease-out forwards;
}

.spinacz-smoke-particle {
    position: fixed;
    left: -9999px;
    top: -9999px;
    width: var(--smoke-size, 18px);
    height: var(--smoke-size, 18px);
    border-radius: 999px;
    pointer-events: none;
    z-index: 44;
    opacity: 0;
    background: radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.9) 0%, rgba(226, 232, 240, 0.75) 42%, rgba(148, 163, 184, 0.45) 100%);
    filter: blur(0.45px);
    box-shadow: 0 0 8px rgba(226, 232, 240, 0.55);
    transform: translate3d(0, 0, 0) scale(0.72);
    animation: spinaczSmokeRise var(--smoke-duration, 640ms) ease-out forwards;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent) 0%, #14b8a6 100%);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(15, 118, 110, 0.24);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

@keyframes bottomMascotBob {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -6px;
    }
}

@keyframes bottomMascotStandUp {
    0% {
        transform: scaleX(var(--ms-facing, 1)) translateY(12px) rotate(calc(96deg * var(--ms-facing, 1)));
    }
    60% {
        transform: scaleX(var(--ms-facing, 1)) translateY(4px) rotate(calc(-14deg * var(--ms-facing, 1)));
    }
    100% {
        transform: scaleX(var(--ms-facing, 1)) translateY(0) rotate(0deg);
    }
}

@keyframes spinaczStepFade {
    0% {
        opacity: 0.68;
        transform: translateY(0) scaleX(1);
    }
    100% {
        opacity: 0;
        transform: translateY(6px) scaleX(0.62);
    }
}

@keyframes spinaczSmokeRise {
    0% {
        opacity: 0.78;
        transform: translate3d(0, 0, 0) scale(0.72);
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--smoke-dx, 0px), var(--smoke-dy, -28px), 0) scale(1.52);
    }
}

@keyframes heroImageFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.section {
    margin-top: 72px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading.narrow {
    max-width: 620px;
}

.section-heading h2 {
    margin: 16px 0 14px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.04rem;
}

.service-grid,
.audience-grid,
.process-grid,
.benefits-list,
.portfolio-grid {
    display: grid;
    gap: 20px;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.portfolio-card,
.info-panel,
.process-card,
.benefit-item,
.benefits-card,
.cta-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 246, 238, 0.96));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.service-card,
.portfolio-card,
.info-panel,
.process-card,
.benefit-item {
    padding: 24px;
    border-radius: 26px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.stat:hover,
.service-card:hover,
.portfolio-card:hover,
.info-panel:hover,
.process-card:hover,
.benefit-item:hover,
.art-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(92, 74, 48, 0.22);
    border-color: rgba(15, 118, 110, 0.22);
}

@media (hover: hover) and (pointer: fine) {
    .stat,
    .service-card,
    .portfolio-card,
    .info-panel,
    .process-card,
    .benefit-item,
    .art-card {
        transform-origin: center;
        will-change: transform;
    }
}

.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 800;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 0 18px 10px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(217, 119, 6, 0.16));
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 800;
    vertical-align: top;
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.08);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3,
.portfolio-card h3,
.info-panel h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.service-card p,
.portfolio-card p,
.info-panel p,
.process-card p,
.benefit-item p,
.cta-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.service-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
    color: #3f4652;
    line-height: 1.8;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0.92;
}

.portfolio-card__media {
    display: block;
    position: relative;
    margin: 6px 0 20px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(170, 138, 96, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 240, 232, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.portfolio-card__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.portfolio-card__top {
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
}

.portfolio-card__label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.12);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.portfolio-card__link {
    width: fit-content;
    color: #151823;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.portfolio-card__link:hover {
    color: var(--accent);
    border-color: rgba(15, 118, 110, 0.28);
}

.portfolio-card__snapshot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    border: 1px solid rgba(15, 118, 110, 0.22);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.08);
}

.portfolio-card__snapshot:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: translateY(-1px);
}

.portfolio-card p {
    margin: 0 0 14px;
}

.portfolio-card p:last-of-type {
    margin-bottom: 18px;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.portfolio-tech li {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(170, 138, 96, 0.16);
    color: #374151;
    font-size: 0.8rem;
    font-weight: 700;
}

.portfolio-links {
    margin-top: 28px;
    padding: 24px 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 246, 238, 0.94));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.portfolio-links h3 {
    margin: 0 0 16px;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.portfolio-links p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.7;
}

.portfolio-links__list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 24px;
    list-style: decimal;
}

.portfolio-links__list li::marker {
    color: var(--accent);
    font-weight: 700;
}

.portfolio-links__list a {
    display: inline-flex;
    width: fit-content;
    color: #151823;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 118, 110, 0.18);
}

.portfolio-links__list a:hover {
    color: var(--accent);
    border-color: rgba(15, 118, 110, 0.38);
}

.split-section {
    display: grid;
    gap: 24px;
}

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

.info-panel {
    position: relative;
    overflow: hidden;
}

.info-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent 70%);
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(217, 119, 6, 0.15));
    color: var(--accent);
    font-size: 1.35rem;
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.08);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card strong,
.benefit-item strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
}

.benefits-card {
    padding: 30px;
    border-radius: 34px;
}

.benefits-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.55);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(217, 119, 6, 0.16));
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.08);
}

.cta-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 24px;
    padding: 34px;
    border-radius: 34px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 920px) {
    .site-header__inner {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 4px;
        padding: 10px;
        background: rgba(255, 253, 248, 0.97);
        backdrop-filter: blur(18px);
        border: 1px solid rgba(170, 138, 96, 0.2);
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(92, 74, 48, 0.14);
        z-index: 100;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        justify-content: flex-start;
        border-radius: 12px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 42px;
    }

    .hero-title {
        white-space: normal;
        font-size: clamp(2.2rem, 8vw, 3.6rem);
        margin-bottom: 10px;
    }

    .copy {
        order: 2;
    }

    .visual {
        order: 1;
    }

    .stats {
        order: 3;
    }

    .stats {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .visual {
        align-self: auto;
        padding-top: 0;
    }

    .bottom-mascot {
        width: 79px;
        bottom: 0;
    }

    .bottom-mascot__image {
        width: 68px;
    }

    .bottom-mascot__bubble {
        min-width: 210px;
        max-width: 260px;
        font-size: 0.82rem;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
        width: 40px;
        height: 40px;
        font-size: 1.08rem;
    }

    .service-grid,
    .portfolio-grid,
    .process-grid,
    .benefits-list,
    .cta-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .site-header {
        padding-top: 10px;
    }

    .site-header__inner {
        width: min(100% - 20px, 1180px);
        padding: 10px 12px;
        border-radius: 20px;
    }

    .site-brand {
        gap: 10px;
    }

    .site-brand__logo {
        width: 40px;
        height: 40px;
    }

    .site-brand__text {
        font-size: 1rem;
    }

    .site-nav a {
        min-height: 40px;
        padding: 0 14px;
        font-size: 0.94rem;
    }

    .shell {
        width: min(100% - 20px, 1180px);
        padding: 20px 0 36px;
    }

    .hero,
    .copy,
    .visual,
    .section-heading,
    .section-heading.narrow,
    .service-card,
    .portfolio-card,
    .info-panel,
    .process-card,
    .benefit-item,
    .benefits-card,
    .cta-card,
    .stat {
        text-align: center;
    }

    .hero-points,
    .actions,
    .cta-actions {
        justify-content: center;
        align-items: center;
    }

    .hero-points span,
    .button {
        text-align: center;
    }

    .service-card ul {
        display: inline-block;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }

    .portfolio-card__label,
    .portfolio-card__link,
    .portfolio-tech,
    .portfolio-card__media {
        margin-left: auto;
        margin-right: auto;
    }

    .service-index,
    .service-icon,
    .info-icon,
    .benefit-icon,
    .eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .art-card,
    .art-frame img {
        margin-left: auto;
        margin-right: auto;
    }

    .art-card {
        padding: 12px;
        border-radius: 24px;
    }

    .bottom-mascot {
        width: 61px;
        bottom: max(2px, env(safe-area-inset-bottom));
    }

    .bottom-mascot__image {
        width: 55px;
    }

    .bottom-mascot__bubble {
        min-width: 180px;
        max-width: 220px;
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    .scroll-top {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .note {
        right: 14px;
        bottom: 14px;
        max-width: calc(100% - 28px);
    }

    .service-card,
    .portfolio-card,
    .info-panel,
    .process-card,
    .benefit-item,
    .benefits-card,
    .cta-card {
        padding: 20px;
        border-radius: 24px;
    }

    .section {
        margin-top: 52px;
    }
}
