:root {
    --adp-bg: #f7f2ea;
    --adp-bg-soft: #fffaf2;
    --adp-ink: #17201f;
    --adp-muted: #697370;
    --adp-line: rgba(23, 32, 31, 0.14);
    --adp-line-strong: rgba(23, 32, 31, 0.26);
    --adp-card: rgba(255, 255, 255, 0.72);
    --adp-card-solid: #fffdf9;
    --adp-accent: #6b4dff;
    --adp-accent-2: #00a896;
    --adp-accent-soft: rgba(107, 77, 255, 0.1);
    --adp-radius-lg: 34px;
    --adp-radius-md: 22px;
    --adp-radius-sm: 14px;
    --adp-shadow: 0 30px 80px rgba(28, 31, 30, 0.1);
    --adp-container: min(1180px, calc(100vw - 40px));
    --adp-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--adp-ink);
    background:
        radial-gradient(circle at 8% 12%, rgba(107, 77, 255, 0.13), transparent 28rem),
        radial-gradient(circle at 86% 18%, rgba(0, 168, 150, 0.14), transparent 26rem),
        linear-gradient(135deg, #f7f2ea 0%, #fbf7ef 46%, #f2efe9 100%);
    font-family: var(--adp-font);
    line-height: 1.65;
    overflow-x: hidden;
}

body.adp-menu-open {
    overflow: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
    z-index: 100000;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: #fff;
    background: var(--adp-ink);
    border-radius: 999px;
}

.adp-container {
    width: var(--adp-container);
    margin-inline: auto;
}

.adp-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    border-bottom: 1px solid transparent;
}

.admin-bar .adp-site-header {
    top: 32px;
}

.adp-site-header.is-scrolled {
    padding: 10px 0;
    background: rgba(247, 242, 234, 0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-color: var(--adp-line);
}

.adp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.adp-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.adp-brand-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.05em;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--adp-ink), var(--adp-accent));
    box-shadow: 0 12px 30px rgba(107, 77, 255, 0.23);
}

.adp-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.adp-brand-text strong {
    font-size: 0.95rem;
}

.adp-brand-text small {
    color: var(--adp-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.custom-logo-link img {
    max-height: 56px;
    width: auto;
}

.adp-primary-nav {
    display: flex;
    align-items: center;
}

.adp-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.adp-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 14px;
    color: rgba(23, 32, 31, 0.74);
    font-size: 0.94rem;
    font-weight: 650;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: 0.2s ease;
}

.adp-menu a:hover,
.adp-menu .current-menu-item > a {
    color: var(--adp-ink);
    background: rgba(255, 255, 255, 0.66);
    border-color: var(--adp-line);
}

.adp-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    background: var(--adp-card-solid);
    border: 1px solid var(--adp-line);
    border-radius: 16px;
    cursor: pointer;
}

.adp-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--adp-ink);
    border-radius: 99px;
}

.adp-main {
    position: relative;
}

.adp-main::before {
    content: "";
    position: absolute;
    top: 680px;
    left: max(18px, calc((100vw - 1180px) / 2 + 18px));
    width: 1px;
    height: calc(100% - 760px);
    background: linear-gradient(to bottom, transparent, var(--adp-line-strong), var(--adp-line), transparent);
    pointer-events: none;
}

.adp-hero {
    position: relative;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    padding: 76px 0 88px;
    overflow: hidden;
}

.adp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--adp-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--adp-line) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 72%);
    pointer-events: none;
}

.adp-hero-orbit {
    position: absolute;
    width: 720px;
    height: 720px;
    right: -220px;
    top: 3%;
    border: 1px solid rgba(107, 77, 255, 0.18);
    border-radius: 50%;
}

.adp-hero-orbit::before,
.adp-hero-orbit::after {
    content: "";
    position: absolute;
    inset: 72px;
    border: 1px dashed rgba(0, 168, 150, 0.23);
    border-radius: 50%;
}

.adp-hero-orbit::after {
    inset: 164px;
    border-style: solid;
    border-color: rgba(23, 32, 31, 0.12);
}

.adp-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.adp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--adp-accent);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.adp-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.adp-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.7rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
}

.adp-hero-lead {
    max-width: 690px;
    margin: 26px 0 0;
    color: var(--adp-muted);
    font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.adp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.adp-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
    cursor: pointer;
}

.adp-button::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 46%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 0.52s ease;
}

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

.adp-button:hover::before {
    transform: translateX(120%);
}

.adp-button:focus-visible {
    outline: 3px solid rgba(107, 77, 255, 0.24);
    outline-offset: 3px;
}

.adp-button.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--adp-ink), var(--adp-accent));
    box-shadow: 0 16px 40px rgba(107, 77, 255, 0.22);
}

.adp-button.primary:hover {
    box-shadow: 0 20px 52px rgba(107, 77, 255, 0.32);
}

.adp-button.ghost {
    background: rgba(255, 255, 255, 0.74);
    border-color: var(--adp-line);
}

.adp-button.ghost:hover {
    color: var(--adp-accent);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(107, 77, 255, 0.34);
    box-shadow: 0 16px 34px rgba(23, 32, 31, 0.08);
}

.adp-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 720px;
    margin: 42px 0 0;
}

.adp-metrics div {
    padding: 20px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid var(--adp-line);
    border-radius: 22px;
}

.adp-metrics dt {
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.adp-metrics dd {
    margin: 8px 0 0;
    color: var(--adp-muted);
    font-size: 0.9rem;
}

.adp-hero-card,
.adp-line-card {
    position: relative;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 32, 31, 0.13);
    box-shadow: 0 22px 54px rgba(28, 31, 30, 0.085);
}

.adp-hero-card {
    padding: 28px;
    border-radius: 38px;
    overflow: hidden;
}

.adp-card-lines {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(23, 32, 31, 0.08);
    border-radius: 28px;
    pointer-events: none;
}

.adp-profile-image-wrap {
    position: relative;
    display: grid;
    place-items: center;
    width: 152px;
    height: 152px;
    margin-bottom: 26px;
    overflow: hidden;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--adp-accent-soft), rgba(0,168,150,0.14));
    border: 1px solid var(--adp-line);
}

.adp-profile-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adp-profile-image-wrap span {
    font-size: 4rem;
    font-weight: 900;
    color: var(--adp-accent);
}

.adp-card-kicker {
    color: var(--adp-accent-2);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.adp-hero-card h2 {
    margin: 6px 0 4px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.adp-hero-card > p:not(.adp-card-kicker) {
    color: var(--adp-muted);
    margin-top: 0;
}

.adp-card-meta {
    display: grid;
    gap: 10px;
    margin: 24px 0;
}

.adp-card-meta span {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid var(--adp-line);
    border-radius: 16px;
    color: rgba(23, 32, 31, 0.76);
}

.adp-hero-card blockquote {
    margin: 0;
    padding: 22px;
    background: rgba(23, 32, 31, 0.04);
    border-left: 3px solid var(--adp-accent);
    border-radius: 18px;
}

.adp-hero-card blockquote p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.adp-hero-card cite {
    display: block;
    margin-top: 8px;
    color: var(--adp-muted);
    font-style: normal;
}

.adp-section {
    position: relative;
    padding: clamp(72px, 10vw, 130px) 0;
}

.adp-section::before {
    content: "";
    position: absolute;
    left: max(13px, calc((100vw - 1180px) / 2 + 13px));
    top: 50%;
    width: 11px;
    height: 11px;
    background: var(--adp-bg);
    border: 2px solid var(--adp-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(107, 77, 255, 0.08);
}

.adp-contact::before {
    top: clamp(86px, 10vw, 132px);
}

.adp-section-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
    gap: clamp(26px, 5vw, 70px);
    align-items: start;
}

.adp-section-heading {
    position: sticky;
    top: 120px;
}

.adp-section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.adp-section-heading > p:last-child {
    margin: 18px 0 0;
    color: var(--adp-muted);
}

.adp-line-card {
    border-radius: var(--adp-radius-lg);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.adp-service-card:hover,
.adp-article-card:hover,
.adp-certificate-card:hover,
.adp-testimonial-card:hover,
.adp-timeline-item:hover,
.adp-project-card:hover {
    transform: translateY(-3px);
    border-color: rgba(107, 77, 255, 0.28);
    box-shadow: 0 26px 60px rgba(28, 31, 30, 0.11);
}

.adp-line-card::before,
.adp-line-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.adp-line-card::before {
    inset: 18px;
    border: 1px solid rgba(23, 32, 31, 0.06);
    border-radius: calc(var(--adp-radius-lg) - 10px);
}

.adp-line-card::after {
    top: 0;
    left: 34px;
    width: 1px;
    height: 28px;
    background: var(--adp-accent);
}

.adp-about-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 30px;
    padding: clamp(24px, 4vw, 40px);
}

.adp-about-text p:first-child {
    margin-top: 0;
}

.adp-about-text p {
    color: rgba(23, 32, 31, 0.78);
    font-size: 1.02rem;
}

.adp-signature {
    display: inline-flex;
    margin-top: 14px;
    color: var(--adp-ink) !important;
    font-size: 1.18rem !important;
    font-weight: 800;
    border-bottom: 2px solid var(--adp-accent-2);
}

.adp-about-visual img,
.adp-placeholder-portrait {
    width: 100%;
    min-height: 360px;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    border: 1px solid var(--adp-line);
}

.adp-placeholder-portrait {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(107,77,255,0.15), rgba(0,168,150,0.13)),
        linear-gradient(45deg, transparent 46%, rgba(23,32,31,0.08) 48%, rgba(23,32,31,0.08) 52%, transparent 54%);
    background-size: auto, 28px 28px;
}

.adp-placeholder-portrait span {
    color: rgba(23, 32, 31, 0.18);
    font-size: 5rem;
    font-weight: 900;
}

.adp-highlight-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.adp-highlight-grid article {
    position: relative;
    padding: 22px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid var(--adp-line);
    border-radius: 22px;
}

.adp-highlight-grid article span {
    display: block;
    width: 34px;
    height: 4px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, var(--adp-accent), var(--adp-accent-2));
    border-radius: 999px;
}

.adp-highlight-grid h3,
.adp-service-card h3,
.adp-skill-group h3,
.adp-project-card h3,
.adp-article-card h3,
.adp-certificate-card h3,
.adp-timeline-item h3 {
    margin: 0 0 10px;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.adp-highlight-grid p,
.adp-service-card div,
.adp-article-card div,
.adp-project-body div,
.adp-timeline-item div,
.adp-certificate-card p {
    color: rgba(23, 32, 31, 0.72);
}

.adp-card-grid {
    display: grid;
    gap: 18px;
}

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

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

.adp-service-card,
.adp-article-card,
.adp-certificate-card,
.adp-testimonial-card,
.adp-timeline-item {
    padding: 28px;
}

.adp-service-card > p:first-child,
.adp-project-body > p:first-child {
    margin: 0 0 22px;
    color: var(--adp-accent);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.adp-skill-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 28px;
}

.adp-skill-group {
    padding: 24px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--adp-line);
    border-radius: 24px;
}

.adp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.adp-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    color: rgba(23, 32, 31, 0.78);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--adp-line);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
}

.adp-tags.small span {
    min-height: 28px;
    padding: 4px 10px;
    font-size: 0.78rem;
}

.adp-timeline {
    display: grid;
    gap: 18px;
}

.adp-timeline-item {
    padding-left: 42px;
}

.adp-timeline-item time {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--adp-accent-2);
    font-weight: 850;
}

.adp-muted {
    color: var(--adp-muted) !important;
}

.adp-project-grid {
    display: grid;
    gap: 20px;
}

.adp-project-card {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
    overflow: hidden;
}

.adp-project-media {
    display: grid;
    place-items: center;
    min-height: 248px;
    overflow: hidden;
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(107, 77, 255, 0.14), rgba(0, 168, 150, 0.13)),
        repeating-linear-gradient(45deg, rgba(23,32,31,0.06) 0 1px, transparent 1px 14px);
    border: 1px solid var(--adp-line);
}

.adp-project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.adp-project-card:hover .adp-project-media img {
    transform: scale(1.05);
}

.adp-project-media span {
    color: rgba(23, 32, 31, 0.22);
    font-size: 4rem;
    font-weight: 950;
    text-transform: uppercase;
}

.adp-project-body {
    align-self: center;
    padding: 10px 10px 10px 0;
}

.adp-project-body h3 {
    font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.adp-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--adp-accent);
    font-weight: 900;
    transition: gap 0.2s ease, color 0.2s ease;
}

.adp-text-link:hover {
    gap: 12px;
    color: var(--adp-accent-2);
}

.adp-text-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.adp-socials svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.adp-cert-media {
    display: grid;
    place-items: center;
    height: 164px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(23, 32, 31, 0.045);
    border: 1px solid var(--adp-line);
}

.adp-cert-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adp-cert-media span {
    color: var(--adp-muted);
    font-weight: 800;
}

.adp-testimonial-card {
    margin: 0;
}

.adp-testimonial-card blockquote {
    margin: 0;
    color: rgba(23, 32, 31, 0.78);
    font-size: 1.06rem;
}

.adp-testimonial-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 20px;
}

.adp-testimonial-card span {
    color: var(--adp-muted);
}

.adp-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: start;
}

.adp-contact .adp-section-heading {
    position: relative;
    top: auto;
}

.adp-contact-note {
    max-width: 520px;
    color: var(--adp-muted);
}

.adp-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.adp-socials a {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: var(--adp-ink);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(23, 32, 31, 0.16);
    border-radius: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 34px rgba(28, 31, 30, 0.06);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.adp-socials a::before {
    content: '';
    position: absolute;
    inset: auto 12px -18px 12px;
    height: 34px;
    background: linear-gradient(135deg, var(--adp-accent), var(--adp-accent-2));
    border-radius: 999px;
    filter: blur(16px);
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.adp-socials a svg {
    position: relative;
    z-index: 1;
}

.adp-socials a:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.03);
    background: linear-gradient(135deg, var(--adp-ink), var(--adp-accent));
    border-color: rgba(107, 77, 255, 0.34);
    box-shadow: 0 22px 45px rgba(107, 77, 255, 0.2);
}

.adp-socials a:hover::before {
    opacity: 0.7;
    transform: translateY(-4px);
}

.adp-contact-form {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 34px);
}

.adp-contact-form label {
    display: grid;
    gap: 7px;
}

.adp-contact-form span {
    color: rgba(23, 32, 31, 0.72);
    font-size: 0.86rem;
    font-weight: 800;
}

.adp-contact-form input,
.adp-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    color: var(--adp-ink);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--adp-line);
    border-radius: 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.adp-contact-form input:focus,
.adp-contact-form textarea:focus {
    border-color: rgba(107, 77, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(107, 77, 255, 0.1);
}

.adp-hp {
    position: absolute;
    left: -9999px;
}

.adp-form-message {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 800;
}

.adp-form-message.success {
    color: #006b5f;
    background: rgba(0, 168, 150, 0.12);
    border: 1px solid rgba(0, 168, 150, 0.28);
}

.adp-form-message.error {
    color: #8b1e2d;
    background: rgba(255, 80, 105, 0.1);
    border: 1px solid rgba(255, 80, 105, 0.25);
}

.adp-site-footer {
    padding: 34px 0;
    color: rgba(23, 32, 31, 0.68);
    border-top: 1px solid var(--adp-line);
}

.adp-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.adp-footer-inner p {
    margin: 0;
}

.adp-back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: var(--adp-ink);
    border: 0;
    border-radius: 18px;
    box-shadow: var(--adp-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
    cursor: pointer;
}

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

.adp-content-section {
    padding-top: 120px;
}

.adp-content-layout {
    display: grid;
    gap: 24px;
}

.adp-content-layout.narrow {
    max-width: 900px;
}

.adp-post-card,
.adp-page-content,
.adp-single-content,
.adp-comments,
.adp-not-found {
    padding: clamp(24px, 5vw, 48px);
}

.adp-post-card h1,
.adp-page-content h1,
.adp-single-content h1,
.adp-not-found h1 {
    margin-top: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.adp-entry-content a,
.adp-entry-summary a {
    color: var(--adp-accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.adp-featured-image {
    margin: 28px 0;
    overflow: hidden;
    border-radius: 28px;
}

.adp-hero-copy,
.adp-hero-card,
.adp-section {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.38s ease, transform 0.38s ease;
}

.adp-hero-copy.is-visible,
.adp-hero-card.is-visible,
.adp-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

@media (max-width: 1024px) {
    .adp-hero-grid,
    .adp-section-grid,
    .adp-contact-grid {
        grid-template-columns: 1fr;
    }

    .adp-section-heading {
        position: relative;
        top: auto;
    }

    .adp-card-grid.three,
    .adp-skill-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .adp-project-card {
        grid-template-columns: 1fr;
    }

    .adp-project-body {
        padding: 0;
    }

    .adp-main::before,
    .adp-section::before {
        display: none;
    }
}

@media (max-width: 782px) {
    .admin-bar .adp-site-header {
        top: 0;
    }
}

@media (max-width: 760px) {
    :root {
        --adp-container: min(100vw - 28px, 1180px);
    }

    .adp-site-header {
        padding: 12px 0;
    }

    .adp-menu-toggle {
        display: block;
    }

    .adp-primary-nav {
        position: fixed;
        inset: 74px 14px auto 14px;
        display: block;
        padding: 14px;
        background: rgba(255, 253, 249, 0.96);
        border: 1px solid var(--adp-line);
        border-radius: 24px;
        box-shadow: var(--adp-shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.2s ease;
    }

    .admin-bar .adp-primary-nav {
        inset-block-start: 74px;
    }

    .adp-primary-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .adp-menu {
        display: grid;
        gap: 6px;
    }

    .adp-menu a {
        width: 100%;
        justify-content: center;
        background: rgba(23, 32, 31, 0.035);
    }

    .adp-hero {
        min-height: auto;
        padding: 46px 0 70px;
    }

    .adp-hero h1 {
        font-size: clamp(3rem, 16vw, 4.6rem);
    }

    .adp-metrics,
    .adp-card-grid.two,
    .adp-card-grid.three,
    .adp-skill-board,
    .adp-highlight-grid,
    .adp-about-content {
        grid-template-columns: 1fr;
    }

    .adp-about-visual {
        order: -1;
    }

    .adp-about-visual img,
    .adp-placeholder-portrait {
        min-height: 280px;
    }

    .adp-section {
        padding: 72px 0;
    }

    .adp-footer-inner {
        display: grid;
    }
}

@media (max-width: 480px) {
    .adp-hero-actions,
    .adp-button {
        width: 100%;
    }

    .adp-button {
        justify-content: center;
    }

    .adp-hero-card,
    .adp-service-card,
    .adp-article-card,
    .adp-certificate-card,
    .adp-testimonial-card,
    .adp-timeline-item {
        padding: 22px;
    }
}
