:root {
    --black: #050505;
    --ink: #151515;
    --white: #ffffff;
    --paper: #f7f7f3;
    --soft: #eceee8;
    --line: #d9ddd2;
    --muted: #59605b;
    --lime: #a8dc00;
    --lime-dark: #557300;
    --max-width: 1200px;
    --shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
    --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mono: "Courier New", Courier, monospace;
    --hand: "Segoe Print", "Bradley Hand", cursive;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--black);
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: 0.015em;
    line-height: 0.98;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3.4rem, 8vw, 7.6rem);
}

h2 {
    font-size: clamp(2.3rem, 5vw, 4.8rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.2;
}

em {
    color: var(--lime-dark);
    font-style: normal;
}

::selection {
    background: var(--lime);
    color: var(--black);
}

.site-main {
    min-height: 60vh;
}

.section {
    position: relative;
    padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.container {
    position: relative;
    z-index: 2;
    width: min(100%, var(--max-width));
    margin-inline: auto;
}

.eyebrow {
    margin-bottom: 0.7rem;
    color: var(--lime-dark);
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-heading {
    max-width: 850px;
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading h2 {
    margin-bottom: 1rem;
}

.section-heading p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    transform: translateY(-160%);
    background: var(--white);
    color: var(--black);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: var(--black);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner {
    display: flex;
    width: min(calc(100% - 2rem), 1380px);
    min-height: 76px;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-family: var(--mono);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1.8rem);
}

.primary-navigation a {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
    color: var(--lime);
}

.primary-navigation .nav-contact {
    min-width: 110px;
    padding: 0.65rem 1.1rem;
    background: var(--lime);
    color: var(--black);
    text-align: center;
}

.primary-navigation .nav-contact:hover,
.primary-navigation .nav-contact:focus-visible {
    background: var(--white);
    color: var(--black);
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: var(--white);
    padding: 0.55rem 0.75rem;
    cursor: pointer;
}

.nav-toggle__label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 0.8rem 1.35rem;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border: 2px solid var(--black);
    background: var(--black);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    background: var(--white);
    color: var(--black);
}

.button--lime {
    border-color: var(--lime);
    background: var(--lime);
    color: var(--black);
}

.button--lime:hover,
.button--lime:focus-visible {
    border-color: var(--white);
    background: var(--white);
}

.button--outline {
    background: transparent;
    color: var(--black);
}

.button--outline:hover,
.button--outline:focus-visible {
    background: var(--black);
    color: var(--white);
}

.paint-panel {
    position: relative;
    isolation: isolate;
}

.paint-panel::before {
    position: absolute;
    z-index: -1;
    inset: 8% -4% 4% 8%;
    content: "";
    background:
        radial-gradient(circle at 12% 22%, var(--lime) 0 3px, transparent 4px),
        radial-gradient(circle at 88% 76%, var(--lime) 0 5px, transparent 6px),
        linear-gradient(112deg, transparent 4%, var(--lime) 5% 91%, transparent 92%);
    clip-path: polygon(
        0 18%, 10% 12%, 23% 17%, 37% 5%, 51% 14%, 68% 3%,
        84% 13%, 100% 8%, 94% 36%, 100% 60%, 91% 88%,
        73% 81%, 59% 96%, 41% 87%, 24% 95%, 10% 78%, 2% 88%
    );
    opacity: 0.94;
    transform: rotate(-2deg);
}

.hand-note {
    font-family: var(--hand);
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.2;
    transform: rotate(-3deg);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.card {
    grid-column: span 4;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    background: rgba(255, 255, 255, 0.82);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.card p {
    color: var(--muted);
}

.card-link {
    color: var(--lime-dark);
    font-weight: 800;
    text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible {
    color: var(--black);
}

.site-footer {
    padding: 0 1.25rem;
    overflow: hidden;
    background: var(--black);
    color: rgba(255, 255, 255, 0.76);
}

.footer-cta,
.footer-grid,
.footer-legal {
    width: min(100%, var(--max-width));
    margin-inline: auto;
}

.footer-cta {
    display: flex;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-cta h2 {
    margin-bottom: 0.55rem;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 4rem);
}

.footer-cta p {
    margin-bottom: 0;
}

.footer-cta .eyebrow {
    margin-bottom: 0.5rem;
    color: var(--lime);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    padding: 3.5rem 0;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 1.25rem;
}

.footer-heading {
    margin-bottom: 1rem;
    color: var(--white);
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 0.55rem;
}

.site-footer a {
    color: inherit;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--lime);
}

.site-footer address {
    font-style: normal;
}

.footer-legal {
    display: flex;
    padding: 1.4rem 0;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.82rem;
}

:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-flex;
    }

    .primary-navigation {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        display: none;
        padding: 1rem;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: var(--black);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: var(--shadow);
    }

    .primary-navigation.is-open {
        display: flex;
    }

    .primary-navigation a {
        padding: 0.8rem;
    }

    .primary-navigation .nav-contact {
        margin-top: 0.5rem;
    }

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

@media (max-width: 720px) {
    body {
        font-size: 16px;
    }

    .section {
        padding-inline: 1rem;
    }

    .card {
        grid-column: span 12;
    }

    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

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

/* === WEB SECURED HOMEPAGE === */

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 4% 88%, rgba(168, 220, 0, 0.16) 0 3px, transparent 4px),
        radial-gradient(circle at 96% 12%, rgba(168, 220, 0, 0.2) 0 4px, transparent 5px),
        linear-gradient(135deg, var(--white), var(--paper));
}

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

.hero::before {
    width: 380px;
    height: 130px;
    right: -80px;
    top: 25px;
    background: var(--lime);
    clip-path: polygon(0 34%, 100% 0, 91% 48%, 100% 75%, 9% 100%);
    opacity: 0.3;
    transform: rotate(-7deg);
}

.hero::after {
    width: 280px;
    height: 95px;
    left: -80px;
    bottom: 10px;
    background: var(--black);
    clip-path: polygon(0 5%, 95% 20%, 100% 88%, 8% 72%);
    transform: rotate(5deg);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 4;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 1.4rem;
}

.hero h1 span {
    display: block;
    color: var(--lime-dark);
}

.hero__lead {
    max-width: 680px;
    margin-bottom: 2rem;
    color: #343b36;
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__note {
    width: max-content;
    margin: 2rem 0 0 auto;
}

.hero__art {
    min-height: 520px;
    display: grid;
    place-items: center;
}

.hero__ink {
    position: relative;
    width: min(100%, 560px);
    min-height: 450px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--black);
    clip-path: polygon(
        2% 10%, 20% 5%, 39% 9%, 57% 2%, 78% 8%, 99% 4%,
        95% 28%, 100% 48%, 96% 68%, 100% 91%, 78% 96%,
        57% 91%, 36% 99%, 17% 92%, 1% 96%, 5% 72%, 0 49%
    );
}

.hero__ink::after {
    position: absolute;
    content: "";
    width: 110%;
    height: 34%;
    right: -8%;
    bottom: 17%;
    background: var(--lime);
    clip-path: polygon(0 30%, 100% 0, 94% 45%, 100% 73%, 4% 100%);
    transform: rotate(-8deg);
}

.hero__ink img {
    position: relative;
    z-index: 3;
    width: min(72%, 390px);
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.22));
}

.hero__code {
    position: absolute;
    z-index: 4;
    top: 12%;
    left: 10%;
    color: var(--lime);
    font-family: var(--mono);
    font-size: 0.86rem;
    line-height: 1.65;
}

.hero__art-note {
    position: absolute;
    z-index: 5;
    right: 8%;
    bottom: 7%;
    margin: 0;
    color: var(--white);
}

.proof-bar {
    position: relative;
    z-index: 5;
    padding: 1.4rem 1.25rem;
    background: var(--black);
    color: var(--white);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.proof-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 0.7rem 1.4rem;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-item:last-child {
    border-right: 0;
}

.proof-icon {
    color: var(--lime);
    font-family: var(--display);
    font-size: 1.6rem;
}

.proof-item strong,
.proof-item span {
    display: block;
}

.proof-item strong {
    font-size: 0.85rem;
    text-transform: uppercase;
}

.proof-item div span {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
    line-height: 1.4;
}

.services {
    background:
        radial-gradient(circle at 95% 92%, rgba(168, 220, 0, 0.6) 0 4px, transparent 5px),
        radial-gradient(circle at 97% 87%, rgba(168, 220, 0, 0.4) 0 7px, transparent 8px),
        var(--paper);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;
    min-height: 330px;
    padding: clamp(1.4rem, 2.4vw, 2.1rem);
    background: rgba(255, 255, 255, 0.8);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-card:hover {
    background: var(--white);
}

.service-number {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 2rem;
    place-items: center;
    border: 2px solid var(--black);
    color: var(--lime-dark);
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 800;
}

.service-card h3 {
    min-height: 3.4rem;
    text-transform: uppercase;
}

.service-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.work-section {
    background: var(--white);
}

.section-heading--row {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.project-card {
    min-width: 0;
}

.project-card > a {
    display: block;
    color: var(--ink);
    text-decoration: none;
}

.project-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--soft);
    border: 1px solid var(--line);
}

.project-card__image::after {
    position: absolute;
    inset: 0;
    content: "";
    border: 8px solid transparent;
    transition: border-color 180ms ease;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 280ms ease;
}

.project-card a:hover img,
.project-card a:focus-visible img {
    transform: scale(1.025);
}

.project-card a:hover .project-card__image::after,
.project-card a:focus-visible .project-card__image::after {
    border-color: var(--lime);
}

.project-card h3 {
    margin: 1rem 0 0.25rem;
}

.project-card > a > span {
    color: var(--lime-dark);
    font-size: 0.85rem;
    font-weight: 800;
}

.local-section {
    overflow: hidden;
    background:
        linear-gradient(104deg, transparent 0 48%, rgba(168, 220, 0, 0.08) 48% 100%),
        var(--paper);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.split-grid h2,
.hosting-panel h2 {
    margin-bottom: 1.4rem;
}

.check-list {
    margin: 1.6rem 0 2rem;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.6rem;
}

.check-list li + li {
    margin-top: 0.55rem;
}

.check-list li::before {
    position: absolute;
    left: 0;
    content: "✓";
    color: var(--lime-dark);
    font-weight: 900;
}

.check-list--compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 1.4rem;
}

.check-list--compact li + li {
    margin-top: 0;
}

.hosting-panel {
    position: relative;
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--white);
    border: 4px solid var(--lime);
    box-shadow: var(--shadow);
}

.hosting-panel::before {
    position: absolute;
    width: 110px;
    height: 26px;
    top: -14px;
    left: 8%;
    content: "";
    background: var(--black);
    transform: rotate(-2deg);
}

.hosting-panel .hand-note {
    margin: 1.5rem 0 0 auto;
    width: max-content;
}

.process-section {
    background: var(--white);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    position: relative;
    padding: 1.5rem;
    border-top: 2px solid var(--black);
}

.process-list li::after {
    position: absolute;
    top: -8px;
    right: -7px;
    width: 14px;
    height: 14px;
    content: "";
    background: var(--lime);
    border-radius: 50%;
}

.process-list li:last-child::after {
    display: none;
}

.process-list li > span {
    display: grid;
    width: 34px;
    height: 34px;
    margin-bottom: 1.2rem;
    place-items: center;
    background: var(--lime);
    color: var(--black);
    border-radius: 50%;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 900;
}

.process-list strong {
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.process-list p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.story-section {
    background:
        radial-gradient(circle at 2% 85%, var(--lime) 0 4px, transparent 5px),
        radial-gradient(circle at 5% 90%, rgba(168, 220, 0, 0.55) 0 8px, transparent 9px),
        var(--paper);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: center;
}

.story-content p:not(.eyebrow) {
    color: var(--muted);
}

.story-photo {
    position: relative;
    max-width: 800px;
    margin: 0;
    padding: 0.8rem;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: rotate(0.7deg);
}

.story-photo::before {
    position: absolute;
    z-index: 2;
    width: 120px;
    height: 30px;
    top: -15px;
    left: 42%;
    content: "";
    background: rgba(168, 220, 0, 0.88);
    transform: rotate(-3deg);
}

.story-photo img {
    width: 100%;
    max-width: 800px;
}

.story-photo figcaption {
    padding: 0.8rem 0.4rem 0.2rem;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.75rem;
}

.insights-section {
    background: var(--white);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.insight-card {
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
}

.insight-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--soft);
}

.insight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-card__body {
    padding: 1.25rem;
}

.insight-card time {
    color: var(--lime-dark);
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.insight-card h3 {
    margin: 0.7rem 0;
}

.insight-card h3 a {
    text-decoration: none;
}

.insight-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 1100px) {
    .hero__grid {
        grid-template-columns: 1fr 0.85fr;
        gap: 3rem;
    }

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

    .service-card:last-child {
        grid-column: span 2;
        min-height: auto;
    }

    .project-grid,
    .insight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .proof-item:nth-child(2) {
        border-right: 0;
    }

    .proof-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 820px) {
    .hero {
        min-height: 0;
    }

    .hero__grid,
    .split-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .hero__art {
        min-height: 410px;
    }

    .hero__ink {
        min-height: 390px;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li {
        padding-left: 4rem;
        border-top: 0;
        border-left: 2px solid var(--black);
    }

    .process-list li::after {
        top: auto;
        right: auto;
        bottom: -7px;
        left: -8px;
    }

    .process-list li > span {
        position: absolute;
        top: 1.25rem;
        left: 0.9rem;
    }
}

@media (max-width: 600px) {
    .hero__art {
        min-height: 330px;
    }

    .hero__ink {
        min-height: 320px;
    }

    .hero__code {
        top: 9%;
        left: 8%;
        font-size: 0.7rem;
    }

    .hero__art-note {
        font-size: 0.9rem;
    }

    .proof-grid,
    .services-grid,
    .project-grid,
    .insight-grid,
    .check-list--compact {
        grid-template-columns: 1fr;
    }

    .proof-item,
    .proof-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .proof-item:last-child {
        border-bottom: 0;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .section-heading--row {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-grid,
    .insight-grid {
        gap: 2rem;
    }

    .story-photo {
        transform: none;
    }
}

/* === WEB SECURED CONTENT TEMPLATES === */

.entry-main,
.archive-main,
.not-found {
    padding: clamp(4rem, 8vw, 7rem) 1.25rem;
    background:
        linear-gradient(135deg, var(--white), var(--paper));
}

.entry-shell,
.archive-main > .container,
.not-found > .container {
    width: min(100%, 1120px);
    margin-inline: auto;
}

.entry-header,
.archive-header {
    max-width: 900px;
    margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.entry-header h1,
.archive-header h1,
.not-found h1 {
    margin-bottom: 1.2rem;
}

.entry-meta,
.archive-card time {
    color: var(--lime-dark);
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.entry-featured-image {
    max-width: 1000px;
    margin: 0 0 3rem;
}

.entry-featured-image img {
    width: 100%;
    max-height: 640px;
    object-fit: cover;
}

.entry-content {
    max-width: 820px;
}

.entry-content > * {
    margin-bottom: 1.4rem;
}

.entry-content h2 {
    margin-top: 3.5rem;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.entry-content h3 {
    margin-top: 2.5rem;
}

.entry-content a {
    color: var(--lime-dark);
    font-weight: 700;
}

.entry-content img {
    height: auto;
}

.entry-content blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-left: 6px solid var(--lime);
    font-size: 1.15rem;
}

.archive-header > p,
.archive-header > div,
.not-found p {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.archive-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
}

.archive-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--soft);
}

.archive-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.archive-card__body {
    padding: 1.5rem;
}

.archive-card h2 {
    margin: 0.7rem 0;
    font-family: var(--body);
    font-size: 1.35rem;
    line-height: 1.2;
    text-transform: none;
}

.archive-card h2 a {
    text-decoration: none;
}

.archive-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.pagination {
    margin-top: 3rem;
}

.pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: grid;
    min-width: 42px;
    min-height: 42px;
    padding: 0.4rem;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--white);
    text-decoration: none;
}

.pagination .current {
    background: var(--lime);
    color: var(--black);
    border-color: var(--lime);
}

.not-found {
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.not-found h1 {
    max-width: 800px;
}

.not-found p {
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }
}

/* === APPROVED WEB SECURED LAYOUT 2026 === */

:root {
    --ws-black: #050505;
    --ws-ink: #161616;
    --ws-white: #fff;
    --ws-paper: #f7f7f3;
    --ws-soft: #eceee7;
    --ws-line: #d8dcd2;
    --ws-grey: #575d58;
    --ws-lime: #a8dc00;
    --ws-lime-dark: #557300;
    --ws-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --ws-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ws-mono: "Courier New", Courier, monospace;
    --ws-hand: "Segoe Print", "Bradley Hand", cursive;
}

body {
    background: var(--ws-paper);
    color: var(--ws-ink);
    font-family: var(--ws-body);
}

body.home {
    overflow-x: hidden;
}

.ws-shell,
.ws-header__inner {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--ws-black);
    color: var(--ws-white);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.ws-header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ws-header__inner {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 34px;
}

.ws-brand {
    display: inline-flex;
    align-items: center;
    color: var(--ws-ink);
    font-size: 1.35rem;
    font-weight: 750;
    letter-spacing: -0.045em;
    text-decoration: none;
}

.ws-brand img {
    width: 62px;
    height: 55px;
    object-fit: contain;
    object-position: center;
    margin-right: -5px;
}

.ws-brand > span > span {
    font-weight: 400;
}

.ws-location {
    display: flex;
    gap: 7px;
    align-items: center;
    margin: 0;
    color: var(--ws-ink);
    font-size: 0.75rem;
    white-space: nowrap;
}

.ws-location > span,
.ws-location b {
    color: var(--ws-lime-dark);
}

.ws-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(17px, 2.2vw, 31px);
}

.ws-navigation a {
    color: var(--ws-ink);
    font-size: 0.82rem;
    font-weight: 650;
    text-decoration: none;
}

.ws-navigation a:hover,
.ws-navigation a:focus-visible {
    color: var(--ws-lime-dark);
}

.ws-navigation__contact {
    position: relative;
    isolation: isolate;
    padding: 12px 24px;
}

.ws-navigation__contact::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 3px -8px;
    background: var(--ws-lime);
    clip-path: polygon(
        3% 15%, 18% 6%, 41% 10%, 65% 3%, 96% 12%,
        91% 47%, 99% 78%, 73% 91%, 43% 86%, 4% 96%,
        9% 64%, 0 40%
    );
    transform: rotate(-1deg);
}

.ws-menu-toggle {
    display: none;
}

.ws-home {
    background:
        radial-gradient(circle at 5% 31%, rgba(168, 220, 0, 0.09), transparent 12%),
        linear-gradient(var(--ws-paper), var(--ws-paper));
}

.ws-home h1,
.ws-home h2,
.ws-home h3,
.ws-home p {
    margin-top: 0;
}

.ws-hero {
    position: relative;
    min-height: 575px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #fafaf7;
}

.ws-hero::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -42px;
    width: 310px;
    height: 110px;
    background: var(--ws-lime);
    opacity: 0.32;
    clip-path: polygon(
        0 54%, 18% 36%, 7% 63%, 33% 30%, 25% 65%,
        58% 18%, 52% 66%, 83% 0, 74% 70%, 100% 22%,
        92% 100%, 25% 88%
    );
}

.ws-hero__art {
    position: absolute;
    inset: 0;
}

.ws-hero__art picture,
.ws-hero__art img {
    display: block;
    width: 100%;
    height: 100%;
}

.ws-hero__art img {
    object-fit: cover;
    object-position: center;
}

.ws-hero__inner {
    position: relative;
    z-index: 2;
    min-height: 575px;
    display: flex;
    align-items: center;
}

.ws-hero__copy {
    width: min(510px, 46%);
    padding: 54px 0 58px;
}

.ws-hero h1 {
    margin: 0 0 10px;
    font-family: var(--ws-display);
    font-size: clamp(4.8rem, 8.5vw, 8.1rem);
    font-weight: 900;
    line-height: 0.75;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.ws-hero h1 span,
.ws-hero h1 strong {
    display: block;
}

.ws-hero h1 strong {
    margin-top: 0.13em;
    color: var(--ws-lime-dark);
    font-weight: inherit;
}

.ws-hero__headline {
    margin: 28px 0 18px;
    font-family: var(--ws-mono);
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.055em;
}

.ws-hero__headline em {
    position: relative;
    z-index: 1;
    font-style: normal;
}

.ws-hero__headline em::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -7px;
    right: -10px;
    bottom: -4px;
    height: 22px;
    border: 3px solid var(--ws-lime-dark);
    border-radius: 50%;
    transform: rotate(-3deg);
}

.ws-hero__summary {
    margin-bottom: 25px;
    font-family: var(--ws-mono);
    font-size: 1rem;
}

.ws-hero__summary strong {
    color: var(--ws-lime-dark);
}

.ws-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.ws-button {
    display: inline-flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 12px 25px;
    color: var(--ws-ink);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease;
}

.ws-button:hover,
.ws-button:focus-visible {
    transform: translateY(-2px);
}

.ws-button--lime {
    position: relative;
    isolation: isolate;
}

.ws-button--lime::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 -8px;
    background: var(--ws-lime);
    clip-path: polygon(
        3% 9%, 22% 2%, 45% 8%, 72% 3%, 97% 11%,
        93% 42%, 100% 72%, 79% 94%, 42% 88%, 4% 98%,
        8% 63%, 0 31%
    );
}

.ws-button--outline {
    border: 1px solid #888d88;
    background: rgba(255, 255, 255, 0.72);
}

.ws-hero__gecko {
    position: absolute;
    top: 19px;
    left: 42%;
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: saturate(1.08);
}

.ws-hero__note {
    position: absolute;
    top: 40px;
    right: 8%;
    color: var(--ws-lime-dark);
    font-family: var(--ws-hand);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.2;
    transform: rotate(-5deg);
}

.ws-service-strip {
    position: relative;
    z-index: 4;
    border-top: 1px solid var(--ws-line);
    border-bottom: 1px solid var(--ws-line);
    background: rgba(255, 255, 255, 0.92);
}

.ws-service-strip__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.ws-service-card {
    min-height: 205px;
    display: flex;
    flex-direction: column;
    padding: 25px 24px 22px;
    border-left: 1px solid var(--ws-line);
    color: var(--ws-ink);
    text-decoration: none;
}

.ws-service-card:last-child {
    border-right: 1px solid var(--ws-line);
}

.ws-service-card__icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border: 3px solid var(--ws-black);
    border-radius: 50%;
    box-shadow: 5px 4px 0 var(--ws-lime);
    font-family: var(--ws-mono);
    font-weight: 900;
}

.ws-service-card strong {
    margin-bottom: 9px;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.ws-service-card p {
    margin-bottom: 8px;
    color: #353a36;
    font-size: 0.73rem;
    line-height: 1.55;
}

.ws-service-card .ws-text-link {
    margin-top: auto;
    color: var(--ws-lime-dark);
    font-size: 1.5rem;
}

.ws-service-card:hover {
    background: rgba(168, 220, 0, 0.08);
}

.ws-story {
    position: relative;
    padding: 74px 0 66px;
    overflow: hidden;
}

.ws-story::before {
    content: "";
    position: absolute;
    right: -25px;
    bottom: 8%;
    width: 170px;
    height: 260px;
    background: var(--ws-lime);
    opacity: 0.18;
    clip-path: polygon(
        45% 0, 68% 18%, 89% 9%, 82% 38%, 100% 53%,
        74% 65%, 92% 91%, 52% 78%, 22% 100%, 30% 65%,
        0 51%, 29% 37%
    );
}

.ws-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
    gap: clamp(45px, 7vw, 100px);
    align-items: center;
}

.ws-eyebrow {
    margin-bottom: 8px;
    color: var(--ws-lime-dark);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ws-story h2,
.ws-section-heading h2,
.ws-trust h2,
.ws-process h2 {
    margin-bottom: 22px;
    font-family: var(--ws-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.ws-story h2 em,
.ws-final-cta h2 em {
    color: var(--ws-lime-dark);
    font-style: normal;
}

.ws-story__lead {
    max-width: 510px;
    font-size: 1.12rem;
    line-height: 1.6;
}

.ws-story h3 {
    margin: 24px 0 8px;
    font-size: 1rem;
}

.ws-story__copy > p:not(.ws-eyebrow):not(.ws-story__lead) {
    max-width: 520px;
    color: #383d39;
    line-height: 1.65;
}

.ws-inline-link,
.ws-section-heading > a,
.ws-hosting__copy a {
    color: var(--ws-lime-dark);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.ws-story__photo {
    position: relative;
    margin: 0;
}

.ws-story__photo::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -15px 18px 10px -15px;
    background: var(--ws-lime);
    opacity: 0.28;
    transform: rotate(-1.5deg);
}

.ws-story__photo img {
    display: block;
    width: 100%;
    max-height: 485px;
    object-fit: cover;
    border: 8px solid var(--ws-white);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    transform: rotate(0.5deg);
}

.ws-hosting {
    border-top: 1px solid var(--ws-line);
    border-bottom: 1px solid var(--ws-line);
    background: var(--ws-white);
}

.ws-hosting__inner {
    display: grid;
    grid-template-columns: 0.65fr 1.15fr 1.1fr 1fr;
    align-items: center;
    gap: 35px;
    min-height: 190px;
}

.ws-hosting__mark {
    align-self: stretch;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, transparent 15%, rgba(168, 220, 0, 0.3) 16% 68%, transparent 69%);
}

.ws-hosting__mark img {
    width: 175px;
    height: 145px;
    object-fit: contain;
}

.ws-hosting h2 {
    margin: 0;
    font-family: var(--ws-display);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.ws-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ws-check-list li {
    position: relative;
    margin: 8px 0;
    padding-left: 25px;
    font-size: 0.78rem;
}

.ws-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ws-lime-dark);
    color: var(--ws-white);
    font-size: 0.68rem;
    font-weight: 900;
}

.ws-hosting__copy {
    padding-left: 28px;
    border-left: 1px solid var(--ws-line);
}

.ws-hosting__copy p {
    font-size: 0.8rem;
    line-height: 1.6;
}

.ws-work,
.ws-trust,
.ws-process,
.ws-insights {
    padding: 62px 0;
}

.ws-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-end;
    margin-bottom: 25px;
}

.ws-section-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.2rem, 3.3vw, 3.35rem);
}

.ws-work__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ws-project {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    color: var(--ws-white);
    background: var(--ws-black);
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.ws-project img {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 300ms ease, opacity 300ms ease;
}

.ws-project > span {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-end;
    padding: 45px 18px 17px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.ws-project strong,
.ws-project small {
    display: block;
}

.ws-project strong {
    max-width: 70%;
    font-size: 1rem;
    text-transform: uppercase;
}

.ws-project small {
    color: var(--ws-lime);
}

.ws-project:hover img {
    opacity: 0.88;
    transform: scale(1.035);
}

.ws-trust {
    border-top: 1px solid var(--ws-line);
    border-bottom: 1px solid var(--ws-line);
    background: rgba(255, 255, 255, 0.68);
}

.ws-trust__grid {
    display: grid;
    grid-template-columns: 1.12fr repeat(3, 1fr);
}

.ws-trust__grid > * {
    padding: 12px 30px;
    border-left: 1px solid var(--ws-line);
}

.ws-trust__grid > :first-child {
    padding-left: 0;
    border-left: 0;
}

.ws-trust h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.ws-trust article strong {
    display: block;
    margin-bottom: 12px;
    color: var(--ws-lime-dark);
    font-size: 1rem;
    text-transform: uppercase;
}

.ws-trust article p {
    color: #353a36;
    font-size: 0.8rem;
    line-height: 1.65;
}

.ws-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
}

.ws-process__steps li {
    position: relative;
    padding: 0 25px 0 0;
}

.ws-process__steps li:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 4px;
    right: 12px;
    color: #7b817b;
    font-family: var(--ws-hand);
    font-size: 1.7rem;
}

.ws-process__steps span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--ws-lime);
    color: var(--ws-black);
    font-size: 0.72rem;
    font-weight: 900;
}

.ws-process__steps strong {
    display: block;
    margin-bottom: 7px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.ws-process__steps p {
    font-size: 0.72rem;
    line-height: 1.5;
}

.ws-insights {
    border-top: 1px solid var(--ws-line);
    background: var(--ws-white);
}

.ws-insights__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.ws-insight-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--ws-line);
    background:
        linear-gradient(145deg, rgba(168, 220, 0, 0.07), transparent 55%),
        var(--ws-paper);
}

.ws-insight-card > p {
    margin-bottom: 11px;
    color: var(--ws-lime-dark);
    font-size: 0.67rem;
    font-weight: 800;
    text-transform: uppercase;
}

.ws-insight-card h3 {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.35;
}

.ws-insight-card h3 a {
    color: var(--ws-ink);
    text-decoration: none;
}

.ws-insight-card .ws-inline-link {
    margin-top: auto;
}

.ws-final-cta {
    position: relative;
    overflow: hidden;
    background: var(--ws-black);
    color: var(--ws-white);
}

.ws-final-cta::before,
.ws-final-cta::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 100%;
    background: var(--ws-lime);
    opacity: 0.2;
}

.ws-final-cta::before {
    left: -190px;
    transform: skewX(-22deg);
}

.ws-final-cta::after {
    right: -190px;
    transform: skewX(22deg);
}

.ws-final-cta__inner {
    position: relative;
    z-index: 2;
    min-height: 130px;
    display: grid;
    grid-template-columns: 1.45fr 1fr auto;
    gap: 38px;
    align-items: center;
}

.ws-final-cta h2 {
    margin: 0;
    font-family: var(--ws-hand);
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.ws-final-cta p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
}

@media (max-width: 1080px) {
    .ws-location {
        display: none;
    }

    .ws-header__inner {
        grid-template-columns: auto 1fr;
    }

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

    .ws-service-card:nth-child(3) {
        border-right: 1px solid var(--ws-line);
    }

    .ws-hosting__inner {
        grid-template-columns: 0.7fr 1.3fr 1fr;
        padding-block: 28px;
    }

    .ws-hosting__copy {
        grid-column: 2 / -1;
        padding: 20px 0 0;
        border-left: 0;
        border-top: 1px solid var(--ws-line);
    }

    .ws-insights__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .ws-shell,
    .ws-header__inner {
        width: min(100% - 34px, 720px);
    }

    .ws-header__inner {
        min-height: 72px;
    }

    .ws-menu-toggle {
        justify-self: end;
        width: 43px;
        height: 43px;
        display: grid;
        place-content: center;
        gap: 5px;
        border: 0;
        background: var(--ws-black);
    }

    .ws-menu-toggle span:not(.screen-reader-text) {
        width: 22px;
        height: 2px;
        display: block;
        background: var(--ws-lime);
    }

    .ws-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        padding: 16px 24px 24px;
        background: var(--ws-black);
    }

    .ws-navigation.is-open {
        display: flex;
        flex-direction: column;
    }

    .ws-navigation a {
        padding: 10px;
        color: var(--ws-white);
    }

    .ws-navigation__contact::before {
        display: none;
    }

    .ws-hero {
        min-height: 760px;
        align-items: flex-start;
    }

    .ws-hero__art {
        top: 290px;
        height: 470px;
    }

    .ws-hero__art img {
        object-position: 70% center;
    }

    .ws-hero__inner {
        min-height: 760px;
        align-items: flex-start;
    }

    .ws-hero__copy {
        width: 100%;
        padding-top: 40px;
    }

    .ws-hero h1 {
        font-size: clamp(4.4rem, 18vw, 7rem);
    }

    .ws-hero__gecko {
        top: 278px;
        left: 5%;
        width: 125px;
    }

    .ws-hero__note {
        display: none;
    }

    .ws-story__grid {
        grid-template-columns: 1fr;
    }

    .ws-story__photo {
        max-width: 720px;
    }

    .ws-work__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ws-project:last-child {
        grid-column: 1 / -1;
    }

    .ws-trust__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ws-trust__heading {
        grid-column: 1 / -1;
    }

    .ws-trust__grid > * {
        padding: 22px;
    }

    .ws-trust__grid > :first-child {
        padding-left: 22px;
    }

    .ws-process__steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ws-process__steps li {
        padding-left: 42px;
    }

    .ws-process__steps span {
        position: absolute;
        left: 0;
    }

    .ws-process__steps li::after {
        display: none;
    }

    .ws-final-cta__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-block: 38px;
    }

    .ws-final-cta .ws-button {
        justify-self: start;
    }
}

@media (max-width: 560px) {
    .ws-shell,
    .ws-header__inner {
        width: min(100% - 26px, 520px);
    }

    .ws-brand {
        font-size: 1.1rem;
    }

    .ws-brand img {
        width: 52px;
        height: 48px;
    }

    .ws-hero {
        min-height: 690px;
    }

    .ws-hero__inner {
        min-height: 690px;
    }

    .ws-hero__art {
        top: 330px;
        height: 360px;
    }

    .ws-hero__art img {
        object-position: 70% center;
    }

    .ws-hero__copy {
        padding-top: 28px;
    }

    .ws-hero h1 {
        font-size: clamp(4rem, 22vw, 5.8rem);
    }

    .ws-hero__headline {
        font-size: 1.35rem;
    }

    .ws-actions {
        gap: 11px;
    }

    .ws-button {
        min-height: 45px;
        padding: 10px 18px;
    }

    .ws-hero__gecko {
        top: 325px;
        width: 92px;
    }

    .ws-service-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-service-card,
    .ws-service-card:nth-child(3) {
        min-height: 190px;
        border-right: 0;
    }

    .ws-service-card:nth-child(even) {
        border-right: 1px solid var(--ws-line);
    }

    .ws-story,
    .ws-work,
    .ws-trust,
    .ws-process,
    .ws-insights {
        padding: 48px 0;
    }

    .ws-story__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .ws-story__photo img {
        max-height: none;
    }

    .ws-hosting__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-block: 35px;
    }

    .ws-hosting__mark {
        display: none;
    }

    .ws-hosting__copy {
        grid-column: auto;
    }

    .ws-section-heading {
        display: block;
    }

    .ws-section-heading > a {
        display: inline-block;
        margin-top: 14px;
    }

    .ws-work__grid,
    .ws-insights__grid,
    .ws-trust__grid {
        grid-template-columns: 1fr;
    }

    .ws-project:last-child,
    .ws-trust__heading {
        grid-column: auto;
    }

    .ws-trust__grid > * {
        padding: 22px 0;
        border-left: 0;
        border-top: 1px solid var(--ws-line);
    }

    .ws-trust__grid > :first-child {
        padding: 0 0 22px;
        border-top: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ws-button,
    .ws-project img {
        transition: none;
    }
}

/* === SOFTER APPROVED HEADING SYSTEM === */

:root {
    --ws-display:
        "Arial Narrow",
        "Helvetica Neue Condensed",
        "Helvetica Neue",
        Arial,
        sans-serif;

    --ws-heading:
        "Trebuchet MS",
        "Segoe UI",
        Arial,
        sans-serif;
}

.ws-hero h1 {
    font-family: var(--ws-display);
    font-weight: 800;
    line-height: 0.79;
    letter-spacing: -0.065em;
    transform: scaleX(0.91);
    transform-origin: left center;
}

.ws-hero h1 span {
    font-weight: 750;
}

.ws-hero h1 strong {
    font-weight: 800;
    letter-spacing: -0.07em;
}

.ws-hero__headline {
    font-family: var(--ws-mono);
    font-weight: 600;
    letter-spacing: -0.06em;
}

.ws-story h2,
.ws-hosting h2,
.ws-section-heading h2,
.ws-trust h2,
.ws-process h2 {
    font-family: var(--ws-heading);
    font-weight: 750;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.ws-story h2 {
    text-transform: none;
}

.ws-hosting h2,
.ws-section-heading h2,
.ws-trust h2,
.ws-process h2 {
    text-transform: uppercase;
}

.ws-story h3,
.ws-insight-card h3,
.ws-project strong,
.ws-service-card strong,
.ws-process__steps strong {
    font-family: var(--ws-heading);
    letter-spacing: -0.025em;
}

.ws-final-cta h2 {
    font-family: var(--ws-hand);
    font-weight: 650;
    letter-spacing: -0.035em;
}

@media (max-width: 820px) {
    .ws-hero h1 {
        transform: scaleX(0.94);
    }
}

/* === APPROVED HOMEPAGE VISUAL REFINEMENT 1 === */

.ws-hero h1 {
    max-width: 470px;
    font-family:
        "Helvetica Neue",
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: clamp(4.5rem, 7.4vw, 7.2rem);
    font-weight: 750;
    line-height: 0.8;
    letter-spacing: -0.075em;
    transform: scaleX(0.88);
}

.ws-hero__headline {
    max-width: 430px;
    font-weight: 600;
}

.ws-hero__summary {
    display: inline-block;
    padding: 5px 9px 5px 0;
    background: rgba(250, 250, 247, 0.82);
}

.ws-hero__gecko {
    width: 165px;
    mix-blend-mode: multiply;
}

.ws-story h2,
.ws-hosting h2,
.ws-section-heading h2,
.ws-trust h2,
.ws-process h2 {
    font-family:
        "Trebuchet MS",
        "Segoe UI",
        Arial,
        sans-serif;
    font-weight: 650;
    letter-spacing: -0.06em;
}

.ws-story::before {
    width: 150px;
    height: 210px;
    border-radius: 48% 52% 44% 56%;
    clip-path: polygon(
        6% 40%, 28% 31%, 17% 9%, 42% 23%, 57% 0,
        63% 28%, 91% 19%, 75% 45%, 100% 57%,
        70% 66%, 79% 94%, 53% 76%, 30% 100%,
        32% 70%, 0 74%, 21% 55%
    );
    opacity: 0.11;
}

.ws-work,
.ws-trust,
.ws-process,
.ws-insights {
    padding-block: 48px;
}

.ws-trust__grid {
    min-height: 0;
    align-items: start;
}

.ws-trust__grid > * {
    padding-top: 4px;
    padding-bottom: 4px;
}

.ws-trust h2 {
    font-size: clamp(1.9rem, 2.7vw, 2.7rem);
    line-height: 1.04;
}

.ws-process .ws-section-heading h2 {
    max-width: 850px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.ws-insight-card {
    min-height: 155px;
}

.ws-final-cta {
    display: none;
}

.site-footer h2,
.site-footer .footer-cta__title {
    font-family:
        "Trebuchet MS",
        "Segoe UI",
        Arial,
        sans-serif;
    font-weight: 650;
    letter-spacing: -0.045em;
}

@media (max-width: 820px) {
    .ws-hero h1 {
        font-size: clamp(4rem, 17vw, 6.5rem);
        transform: scaleX(0.92);
    }
}

@media (max-width: 560px) {
    .ws-hero h1 {
        font-size: clamp(3.7rem, 20vw, 5.2rem);
    }

    .ws-trust__grid > * {
        padding-block: 18px;
    }
}

/* === APPROVED COMPACT FOOTER 2026 === */

.ws-footer {
    position: relative;
    background: var(--ws-black);
    color: var(--ws-white);
}

.ws-footer-cta {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(
            100deg,
            rgba(168, 220, 0, 0.16),
            transparent 22%,
            transparent 80%,
            rgba(168, 220, 0, 0.1)
        ),
        var(--ws-black);
}

.ws-footer-cta::before {
    content: "";
    position: absolute;
    left: -45px;
    top: -35px;
    width: 260px;
    height: 160px;
    border: 4px solid var(--ws-lime);
    border-radius: 50%;
    opacity: 0.24;
    transform: rotate(-9deg);
}

.ws-footer-cta__inner {
    position: relative;
    z-index: 2;
    min-height: 126px;
    display: grid;
    grid-template-columns: minmax(360px, 1.4fr) 1fr auto;
    gap: 35px;
    align-items: center;
}

.ws-footer-cta h2 {
    margin: 0;
    color: var(--ws-white);
    font-family:
        "Trebuchet MS",
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: clamp(1.75rem, 2.6vw, 2.75rem);
    font-weight: 650;
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.ws-footer-cta h2 em {
    color: var(--ws-lime);
    font-style: normal;
}

.ws-footer-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    line-height: 1.55;
}

.ws-footer-cta .ws-button {
    min-width: 215px;
}

.ws-footer__main {
    background:
        radial-gradient(
            circle at 97% 100%,
            rgba(168, 220, 0, 0.13),
            transparent 17%
        ),
        var(--ws-black);
}

.ws-footer__grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(4, 1fr);
    gap: clamp(30px, 4vw, 65px);
    padding-top: 45px;
    padding-bottom: 38px;
}

.ws-footer__brand {
    max-width: 270px;
}

.ws-footer-logo {
    display: inline-flex;
    align-items: center;
    color: var(--ws-white);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.ws-footer-logo img {
    width: 58px;
    height: 48px;
    margin-right: 5px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ws-footer__brand > p {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    line-height: 1.6;
}

.ws-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.ws-footer__column h2 {
    margin: 0 0 8px;
    color: var(--ws-lime);
    font-family: var(--ws-body);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ws-footer__column a,
.ws-footer__column p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
    line-height: 1.45;
    text-decoration: none;
}

.ws-footer__column a:hover,
.ws-footer__column a:focus-visible {
    color: var(--ws-lime);
}

.ws-footer__column small {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.62rem;
}

.ws-footer__contact {
    gap: 10px;
}

.ws-footer__legal {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ws-footer__legal p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
}

.ws-footer__legal nav {
    display: flex;
    gap: 20px;
}

.ws-footer__legal a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
    text-decoration: none;
}

.ws-footer__legal a:hover,
.ws-footer__legal a:focus-visible {
    color: var(--ws-lime);
}

@media (max-width: 1050px) {
    .ws-footer-cta__inner {
        grid-template-columns: 1.4fr 1fr;
        padding-block: 28px;
    }

    .ws-footer-cta .ws-button {
        grid-column: 2;
    }

    .ws-footer__grid {
        grid-template-columns: 1.5fr repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .ws-footer-cta__inner {
        grid-template-columns: 1fr;
        gap: 17px;
        padding-block: 35px;
    }

    .ws-footer-cta .ws-button {
        grid-column: auto;
        justify-self: start;
    }

    .ws-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ws-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .ws-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ws-footer__brand {
        grid-column: auto;
    }

    .ws-footer__legal {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 18px;
    }
}

/* === HEADER PHONE AND KNF PROJECT === */

.ws-navigation__phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 0.76rem !important;
    font-weight: 800 !important;
}

.ws-navigation__phone span {
    color: var(--ws-lime-dark);
    font-size: 0.95rem;
}

.ws-project__knf-art {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 30px 60px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(196, 154, 60, 0.22),
            transparent 26%
        ),
        linear-gradient(135deg, #0d2030, #163248 58%, #1c3d5a);
    color: #f5f0e8;
}

.ws-project__knf-art::before {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(196, 154, 60, 0.38);
    border-radius: 50%;
}

.ws-project__knf-art::after {
    content: "";
    position: absolute;
    right: -35px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(196, 154, 60, 0.25);
    border-radius: 50%;
}

.ws-project__knf-art > small {
    color: #ddb96a;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ws-project__knf-art b {
    margin: 5px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.06em;
}

.ws-project__knf-art b span {
    color: #c49a3c;
}

.ws-project__knf-art p {
    margin: 0;
    color: rgba(245, 240, 232, 0.72);
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ws-project--knf:hover .ws-project__knf-art {
    filter: brightness(1.08);
}

@media (max-width: 1180px) {
    .ws-header__inner {
        gap: 20px;
    }

    .ws-navigation {
        gap: 16px;
    }
}

@media (max-width: 980px) and (min-width: 821px) {
    .ws-navigation__phone {
        width: 34px;
        overflow: hidden;
        gap: 15px;
    }
}

@media (max-width: 820px) {
    .ws-navigation__phone {
        font-size: 0.9rem !important;
    }

    .ws-navigation__phone span {
        color: var(--ws-lime);
    }
}

/* === HERO TYPE AND GREEN GECKO CORRECTION === */

.ws-hero h1 {
    max-width: 500px;
    font-family:
        "Segoe UI",
        "Helvetica Neue",
        Arial,
        sans-serif;
    font-size: clamp(4.1rem, 6.7vw, 6.45rem);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.075em;
    transform: scaleX(0.92);
    transform-origin: left center;
}

.ws-hero h1 span {
    font-weight: 650;
}

.ws-hero h1 strong {
    font-weight: 700;
    letter-spacing: -0.08em;
}

.ws-hero__gecko {
    z-index: 8;
    top: 12px;
    left: 41.5%;
    width: 190px;
    height: 165px;
    padding: 5px;
    object-fit: contain;
    object-position: center;
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    transform: rotate(-5deg);
}

/*
 * A soft paper patch masks the generated white silhouette.
 * The genuine green Web Secured gecko sits above it.
 */
.ws-hero__inner::before {
    content: "";
    position: absolute;
    z-index: 7;
    top: 4px;
    left: 40%;
    width: 225px;
    height: 190px;
    background:
        radial-gradient(
            ellipse at center,
            rgba(248, 248, 245, 0.98) 0 44%,
            rgba(248, 248, 245, 0.84) 58%,
            rgba(248, 248, 245, 0) 76%
        );
    pointer-events: none;
}

@media (max-width: 820px) {
    .ws-hero h1 {
        font-size: clamp(3.9rem, 15.5vw, 5.9rem);
        transform: scaleX(0.94);
    }

    .ws-hero__gecko {
        top: 287px;
        left: 5%;
        width: 125px;
        height: 110px;
    }

    .ws-hero__inner::before {
        top: 275px;
        left: 1%;
        width: 155px;
        height: 135px;
    }
}

@media (max-width: 560px) {
    .ws-hero h1 {
        font-size: clamp(3.6rem, 18vw, 4.9rem);
    }

    .ws-hero__gecko {
        top: 327px;
        width: 105px;
        height: 92px;
    }

    .ws-hero__inner::before {
        top: 316px;
        width: 135px;
        height: 115px;
    }
}

/* === FINAL HERO TYPOGRAPHY AND HALO REMOVAL === */

/* The source skyline has no embedded gecko, so no masking is required. */
.ws-hero__inner::before {
    display: none !important;
    content: none !important;
}

.ws-hero h1 {
    max-width: 455px;
    font-family:
        "Arial Narrow",
        "Helvetica Neue Condensed",
        "Roboto Condensed",
        Arial,
        sans-serif;
    font-size: clamp(3.9rem, 6.15vw, 5.95rem);
    font-weight: 700;
    line-height: 0.84;
    letter-spacing: -0.045em;
    transform: scaleX(0.9);
    transform-origin: left center;
}

.ws-hero h1 span {
    font-weight: 650;
}

.ws-hero h1 strong {
    font-weight: 700;
    letter-spacing: -0.05em;
}

.ws-hero__gecko {
    top: 16px;
    left: 42%;
    width: 175px;
    height: 150px;
    padding: 0;
    filter: none !important;
    mix-blend-mode: multiply !important;
}

@media (max-width: 820px) {
    .ws-hero h1 {
        font-size: clamp(3.7rem, 14.7vw, 5.45rem);
        transform: scaleX(0.92);
    }

    .ws-hero__gecko {
        top: 290px;
        left: 5%;
        width: 118px;
        height: 102px;
    }
}

@media (max-width: 560px) {
    .ws-hero h1 {
        font-size: clamp(3.35rem, 17vw, 4.55rem);
    }

    .ws-hero__gecko {
        top: 330px;
        width: 98px;
        height: 86px;
    }
}

/* === ARTICLE CARD IMAGE LAYOUT 2026 === */

.ws-insight-card {
    min-height: 285px;
    padding: 0;
    overflow: hidden;
    background: var(--ws-paper);
}

.ws-insight-card__image {
    height: 128px;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--ws-line);
    background: #dadfd4;
}

.ws-insight-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 250ms ease, filter 250ms ease;
}

.ws-insight-card:hover .ws-insight-card__image img {
    transform: scale(1.035);
    filter: contrast(1.04);
}

.ws-insight-card__body {
    min-height: 156px;
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
}

.ws-insight-card__body > p {
    margin-bottom: 9px;
    color: var(--ws-lime-dark);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ws-insight-card__body h3 {
    margin-bottom: 14px;
    font-size: 0.94rem;
    line-height: 1.35;
}

.ws-insight-card__body .ws-inline-link {
    margin-top: auto;
}

@media (max-width: 560px) {
    .ws-insight-card__image {
        height: 165px;
    }
}

/* === INTERIOR PAGE AND GRAVITY FORMS REFINEMENT === */

.entry-main {
    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(168, 220, 0, 0.09),
            transparent 24rem
        ),
        #f8f8f5;
    color: #171917;
}

.entry-main .entry-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    padding: clamp(54px, 7vw, 96px) 0;
}

.entry-main .entry-header {
    max-width: 900px;
    margin-bottom: clamp(38px, 5vw, 68px);
    padding-bottom: 30px;
    border-bottom: 1px solid #d9ddd2;
}

.entry-main .entry-header .eyebrow,
.entry-main .ws-eyebrow {
    margin: 0 0 12px;
    color: #719700;
    font-family:
        Inter,
        Aptos,
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.entry-main h1,
.entry-main h2,
.entry-main h3,
.entry-main h4,
.entry-main .gform_title {
    font-family:
        Aptos,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
    font-stretch: normal;
    text-transform: none;
}

.entry-main .entry-header h1 {
    max-width: 880px;
    margin: 0;
    color: #101210;
    font-size: clamp(2.7rem, 5.8vw, 5.25rem);
    font-weight: 730;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-wrap: balance;
}

.entry-main .entry-content {
    max-width: none;
    color: #343a35;
    font-family:
        Inter,
        Aptos,
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: 1.06rem;
    line-height: 1.78;
}

.entry-main .entry-content > .ws-page-intro {
    max-width: 880px;
    margin: 0 0 20px;
    color: #202520;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 520;
    letter-spacing: -0.018em;
    line-height: 1.55;
}

.entry-main .entry-content > p {
    max-width: 820px;
}

.entry-main .entry-content section {
    margin-top: clamp(56px, 7vw, 92px);
    padding-top: clamp(44px, 6vw, 76px);
    border-top: 1px solid #d9ddd2;
}

.entry-main .entry-content section > h2,
.entry-main .entry-content section > div > h2 {
    max-width: 900px;
    margin: 0 0 24px;
    color: #151815;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 690;
    letter-spacing: -0.045em;
    line-height: 1.06;
    text-wrap: balance;
}

.entry-main .entry-content h3 {
    margin: 0 0 12px;
    color: #171a17;
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    font-weight: 720;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.entry-main .ws-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 0;
}

.entry-main .ws-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.entry-main .ws-content-grid article,
.entry-main .ws-project-detail {
    padding: 28px;
    border: 1px solid #d9ddd2;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 35px rgba(10, 20, 10, 0.055);
}

.entry-main .ws-content-grid article p,
.entry-main .ws-project-detail p {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.68;
}

.entry-main .ws-check-list,
.entry-main .ws-numbered-list {
    max-width: 860px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.entry-main .ws-check-list li,
.entry-main .ws-numbered-list li {
    position: relative;
    margin: 0;
    padding: 14px 0 14px 34px;
    border-bottom: 1px solid #e1e4dc;
}

.entry-main .ws-check-list li::before {
    content: "✓";
    position: absolute;
    top: 14px;
    left: 3px;
    color: #78a000;
    font-weight: 900;
}

.entry-main .ws-numbered-list {
    counter-reset: ws-step;
}

.entry-main .ws-numbered-list li {
    counter-increment: ws-step;
    padding-left: 54px;
}

.entry-main .ws-numbered-list li::before {
    content: counter(ws-step, decimal-leading-zero);
    position: absolute;
    top: 13px;
    left: 0;
    color: #719700;
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.04em;
}

.entry-main .ws-page-faq details {
    max-width: 920px;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #d9ddd2;
}

.entry-main .ws-page-faq summary {
    cursor: pointer;
    color: #171a17;
    font-size: 1.08rem;
    font-weight: 720;
}

.entry-main .ws-page-faq details p {
    max-width: 780px;
    margin: 14px 0 0;
}

.entry-main .ws-page-cta {
    padding: clamp(34px, 5vw, 58px);
    border: 0;
    border-radius: 16px;
    background: #090b09;
    color: #f8f8f5;
}

.entry-main .ws-page-cta h2,
.entry-main .ws-page-cta p {
    color: inherit;
}

/* Contact layout */

.entry-main .ws-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: start;
}

.entry-main .ws-contact-form,
.entry-main .ws-contact-details {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid #d9ddd2;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 20, 15, 0.08);
}

.entry-main .ws-contact-details {
    background: #101310;
    color: #eef1e9;
}

.entry-main .ws-contact-details h2,
.entry-main .ws-contact-details h3,
.entry-main .ws-contact-details p,
.entry-main .ws-contact-details a {
    color: inherit;
}

.entry-main .ws-contact-details a:hover,
.entry-main .ws-contact-details a:focus-visible {
    color: #a8dc00;
}

.entry-main .ws-contact-details address {
    font-style: normal;
}

/* Gravity Forms */

.entry-main .gform_wrapper {
    margin-top: 30px;
    color: #252a25;
    font-family:
        Inter,
        Aptos,
        "Segoe UI",
        Arial,
        sans-serif;
}

.entry-main .gform_wrapper form {
    margin: 0;
}

.entry-main .gform_wrapper .gform_fields {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px 18px;
}

.entry-main .gform_wrapper .gfield {
    grid-column: span 12;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.entry-main .gform_wrapper .gfield--width-half {
    grid-column: span 6;
}

.entry-main .gform_wrapper fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.entry-main .gform_wrapper .gfield_label,
.entry-main .gform_wrapper legend.gfield_label {
    display: block;
    margin: 0 0 8px;
    color: #202520;
    font-size: 0.94rem;
    font-weight: 720;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.entry-main .gform_wrapper .gfield_required {
    margin-left: 4px;
    color: #719700;
    font-size: 0.75rem;
}

.entry-main .gform_wrapper input[type="text"],
.entry-main .gform_wrapper input[type="email"],
.entry-main .gform_wrapper input[type="tel"],
.entry-main .gform_wrapper input[type="url"],
.entry-main .gform_wrapper select,
.entry-main .gform_wrapper textarea {
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #bec5b9;
    border-radius: 8px;
    background: #fbfcf9;
    color: #161916;
    font: inherit;
    font-size: 1rem;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background-color 160ms ease;
}

.entry-main .gform_wrapper textarea {
    min-height: 170px;
    resize: vertical;
}

.entry-main .gform_wrapper input:focus,
.entry-main .gform_wrapper select:focus,
.entry-main .gform_wrapper textarea:focus {
    outline: 0;
    border-color: #789f00;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(168, 220, 0, 0.18);
}

.entry-main .gform_wrapper .ginput_complex {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.entry-main .gform_wrapper .ginput_complex > span {
    min-width: 0;
}

.entry-main .gform_wrapper .ginput_complex label {
    display: block;
    margin-top: 6px;
    color: #626962;
    font-size: 0.78rem;
}

.entry-main .gform_wrapper .gfield_description,
.entry-main .gform_wrapper .validation_message {
    margin-top: 7px;
    color: #5f675f;
    font-size: 0.82rem;
    line-height: 1.45;
}

.entry-main .gform_wrapper .gfield_error input,
.entry-main .gform_wrapper .gfield_error textarea,
.entry-main .gform_wrapper .gfield_error select {
    border-color: #b52a2a;
}

.entry-main .gform_wrapper .gfield_error .validation_message {
    color: #9c2020;
    font-weight: 650;
}

.entry-main .gform_wrapper .gform_validation_errors {
    margin-bottom: 24px;
    padding: 16px 18px;
    border: 1px solid #d8a1a1;
    border-radius: 8px;
    background: #fff5f5;
    color: #7f1d1d;
}

.entry-main .gform_wrapper .gform_footer {
    margin: 26px 0 0;
    padding: 0;
}

.entry-main .gform_wrapper .gform_button {
    min-height: 52px;
    margin: 0;
    padding: 13px 24px;
    border: 0;
    border-radius: 7px;
    background: #a8dc00;
    color: #0b0d0b;
    font-family:
        Inter,
        Aptos,
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 160ms ease,
        background-color 160ms ease;
}

.entry-main .gform_wrapper .gform_button:hover,
.entry-main .gform_wrapper .gform_button:focus-visible {
    transform: translateY(-2px);
    background: #b8ea18;
}

.entry-main .gform_wrapper .gform_validation_container,
.entry-main .gform_wrapper .gfield_visibility_hidden,
.entry-main .gform_wrapper .gform-field-label--type-inline + input[name*="gform_unique_id"] {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.entry-main .gform_wrapper .ginput_container_turnstile {
    min-height: 65px;
}

@media (max-width: 900px) {
    .entry-main .ws-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .entry-main .ws-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .entry-main .entry-shell {
        width: min(100% - 28px, 1180px);
        padding: 42px 0 64px;
    }

    .entry-main .entry-header h1 {
        font-size: clamp(2.35rem, 13vw, 3.4rem);
    }

    .entry-main .entry-content section {
        margin-top: 48px;
        padding-top: 38px;
    }

    .entry-main .ws-content-grid {
        grid-template-columns: 1fr;
    }

    .entry-main .gform_wrapper .gfield--width-half {
        grid-column: span 12;
    }

    .entry-main .gform_wrapper .ginput_complex {
        grid-template-columns: 1fr;
    }

    .entry-main .ws-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .entry-main .ws-page-actions .ws-button {
        justify-content: center;
    }
}

/* === ARTISTIC INTERIOR PAGE HERO === */

.entry-main .entry-shell {
    padding-top: clamp(34px, 5vw, 64px);
}

.entry-main .entry-header {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(390px, 0.95fr)
        minmax(420px, 1.05fr);
    align-items: stretch;
    max-width: none;
    min-height: clamp(310px, 32vw, 390px);
    margin-bottom: clamp(48px, 6vw, 78px);
    padding: 0;
    overflow: hidden;
    border: 1px solid #d9ddd2;
    border-radius: 18px;
    background: #f7f7f3;
    box-shadow: 0 18px 52px rgba(12, 18, 12, 0.09);
}

.entry-main .entry-header__copy {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 5vw, 64px);
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(168, 220, 0, 0.14),
            transparent 16rem
        ),
        linear-gradient(
            90deg,
            #f8f8f5 0%,
            #f8f8f5 78%,
            rgba(248, 248, 245, 0) 100%
        );
}

.entry-main .entry-header__copy::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: 30px;
    width: 160px;
    height: 16px;
    opacity: 0.72;
    background: #a8dc00;
    clip-path: polygon(
        0 38%,
        8% 22%,
        21% 34%,
        39% 15%,
        62% 29%,
        79% 12%,
        100% 28%,
        95% 70%,
        76% 62%,
        58% 82%,
        32% 67%,
        10% 84%
    );
    transform: rotate(-3deg);
}

.entry-main .entry-header .eyebrow {
    margin-bottom: 16px;
}

.entry-main .entry-header h1 {
    max-width: 720px;
    font-size: clamp(2.55rem, 5vw, 4.75rem);
    line-height: 0.98;
}

.entry-main .entry-header__art {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            #f8f8f5 0%,
            rgba(248, 248, 245, 0.25) 24%,
            rgba(248, 248, 245, 0) 44%
        ),
        url("../images/edmonton-hero-1200.webp")
        63% center / cover no-repeat;
}

.entry-main .entry-header__art::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.08),
            rgba(0, 0, 0, 0.08)
        );
}

.entry-main .entry-header__art::after {
    content: "";
    position: absolute;
    right: -4%;
    bottom: -7%;
    width: 52%;
    height: 47%;
    background: rgba(168, 220, 0, 0.72);
    clip-path: polygon(
        9% 62%,
        0 45%,
        15% 37%,
        6% 20%,
        32% 27%,
        47% 6%,
        57% 27%,
        83% 12%,
        77% 39%,
        100% 46%,
        82% 60%,
        98% 77%,
        69% 74%,
        57% 96%,
        43% 76%,
        19% 92%,
        24% 70%
    );
    mix-blend-mode: multiply;
    transform: rotate(-7deg);
}

.entry-main .entry-header__paint {
    position: absolute;
    z-index: 2;
    top: 19%;
    left: -5%;
    width: 31%;
    height: 9%;
    opacity: 0.75;
    background: #a8dc00;
    clip-path: polygon(
        0 48%,
        12% 14%,
        28% 35%,
        44% 4%,
        59% 31%,
        78% 10%,
        100% 40%,
        88% 68%,
        64% 57%,
        48% 93%,
        29% 64%,
        8% 86%
    );
    transform: rotate(-8deg);
}

.entry-main .entry-header__gecko {
    position: absolute;
    z-index: 3;
    right: clamp(30px, 6vw, 82px);
    bottom: clamp(18px, 3vw, 40px);
    width: clamp(90px, 10vw, 135px);
    height: auto;
    filter:
        saturate(1.08)
        drop-shadow(0 8px 12px rgba(0, 0, 0, 0.17));
    transform: rotate(-11deg);
}

.entry-main .entry-header__note {
    position: absolute;
    z-index: 4;
    top: clamp(24px, 4vw, 45px);
    right: clamp(24px, 4vw, 52px);
    margin: 0;
    color: #719700;
    font-family:
        "Segoe Print",
        "Bradley Hand",
        cursive;
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    font-weight: 650;
    line-height: 1.22;
    text-align: right;
    transform: rotate(-3deg);
}

.entry-main .entry-header--security .entry-header__art {
    background-position: 70% center;
}

.entry-main .entry-header--hosting .entry-header__art {
    background-position: 57% center;
}

.entry-main .entry-header--our-work .entry-header__art {
    background-position: 67% center;
}

@media (max-width: 900px) {
    .entry-main .entry-header {
        grid-template-columns: minmax(300px, 0.9fr) 1.1fr;
        min-height: 300px;
    }

    .entry-main .entry-header__copy {
        padding: 34px;
    }

    .entry-main .entry-header h1 {
        font-size: clamp(2.35rem, 6vw, 3.65rem);
    }

    .entry-main .entry-header__note {
        display: none;
    }
}

@media (max-width: 680px) {
    .entry-main .entry-header {
        display: block;
        min-height: 0;
    }

    .entry-main .entry-header__copy {
        min-height: 220px;
        padding: 34px 26px;
        background:
            linear-gradient(
                90deg,
                rgba(248, 248, 245, 0.98),
                rgba(248, 248, 245, 0.88)
            );
    }

    .entry-main .entry-header__copy::after {
        right: 18px;
        bottom: 24px;
        width: 120px;
    }

    .entry-main .entry-header__art {
        min-height: 175px;
        background-position: 62% center;
    }

    .entry-main .entry-header__gecko {
        right: 24px;
        bottom: 15px;
        width: 82px;
    }

    .entry-main .entry-header__paint {
        top: 24%;
        left: 5%;
        width: 28%;
    }
}

/* === SOFTER INTERIOR TYPOGRAPHY === */

.entry-main h1,
.entry-main h2,
.entry-main h3,
.entry-main h4,
.entry-main .gform_title {
    font-family:
        "Aptos Display",
        Aptos,
        "Segoe UI Variable Display",
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
    font-stretch: normal;
    text-transform: none;
}

.entry-main .entry-header h1 {
    font-weight: 610;
    letter-spacing: -0.042em;
    line-height: 1.02;
}

.entry-main .entry-content section > h2,
.entry-main .entry-content section > div > h2,
.entry-main .ws-contact-form > h2,
.entry-main .ws-contact-details > h2 {
    font-weight: 590;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.entry-main .entry-content h3,
.entry-main .ws-contact-details h3,
.entry-main .ws-hosting-plan h3 {
    font-weight: 630;
    letter-spacing: -0.022em;
    line-height: 1.28;
}

.entry-main .ws-contact-form > h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 3.8vw, 3.05rem);
}

.entry-main .ws-contact-details > h2 {
    margin-bottom: 32px;
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    white-space: nowrap;
}

.entry-main .entry-header .eyebrow,
.entry-main .ws-eyebrow {
    font-weight: 720;
    letter-spacing: 0.09em;
}

.entry-main .gform_wrapper .gfield_label,
.entry-main .gform_wrapper legend.gfield_label {
    font-weight: 650;
    letter-spacing: -0.008em;
}

.entry-main .gform_wrapper .gfield_required {
    font-weight: 650;
}

.entry-main .ws-contact-details strong {
    font-weight: 650;
}

.entry-main .ws-check-list strong,
.entry-main .ws-numbered-list strong {
    font-weight: 650;
}

.entry-main .ws-page-faq summary {
    font-weight: 630;
    letter-spacing: -0.012em;
}

.entry-main .ws-button,
.entry-main .gform_wrapper .gform_button,
.entry-main .ws-domain-search__field button {
    font-weight: 700;
}

@media (max-width: 420px) {
    .entry-main .ws-contact-details > h2 {
        white-space: normal;
    }
}

/* === TIGHTER INTERIOR HEADER AND FRIENDLIER INTRO === */

.entry-main {
    padding-top: 0;
}

.entry-main .entry-shell {
    padding-top: clamp(22px, 3vw, 38px);
}

.entry-main .entry-header {
    margin-bottom: clamp(28px, 4vw, 46px);
}

.entry-main .entry-content > .ws-page-intro {
    max-width: 850px;
    margin-bottom: 18px;
    color: #3c433d;
    font-family:
        Aptos,
        "Segoe UI Variable Text",
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
    font-size: clamp(1.12rem, 1.65vw, 1.32rem);
    font-weight: 400;
    letter-spacing: -0.014em;
    line-height: 1.62;
}

.entry-main .entry-content > .ws-page-intro + p {
    max-width: 820px;
    margin-top: 0;
    color: #515851;
    font-size: 1.02rem;
    font-weight: 400;
    line-height: 1.72;
}

@media (max-width: 680px) {
    .entry-main .entry-shell {
        padding-top: 18px;
    }

    .entry-main .entry-header {
        margin-bottom: 26px;
    }

    .entry-main .entry-content > .ws-page-intro {
        font-size: 1.08rem;
        line-height: 1.58;
    }
}

/* === STANDARDIZED INTERIOR DESIGN SYSTEM === */

/* General reading rhythm */

.entry-main .entry-content {
    color: #424942;
    font-size: 1rem;
    line-height: 1.72;
}

.entry-main .entry-content p {
    margin-top: 0;
    margin-bottom: 1.25em;
}

.entry-main .entry-content > p,
.entry-main .entry-content section > p {
    max-width: 840px;
}

.entry-main .entry-content section {
    margin-top: clamp(48px, 5vw, 64px);
    padding-top: clamp(42px, 4.5vw, 56px);
}

.entry-main .entry-content section:first-of-type {
    margin-top: 48px;
}

/* Section labels */

.entry-main .entry-header .eyebrow,
.entry-main .ws-eyebrow {
    margin-bottom: 11px;
    color: #688b00;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.085em;
    line-height: 1.35;
    text-transform: uppercase;
}

/* Major section headings */

.entry-main .entry-content section > h2,
.entry-main .entry-content section > div > h2 {
    max-width: 820px;
    margin: 0 0 22px;
    color: #171a17;
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    font-weight: 590;
    letter-spacing: -0.038em;
    line-height: 1.12;
}

/* Supporting headings */

.entry-main .entry-content h3 {
    margin: 0 0 10px;
    color: #1e221e;
    font-size: clamp(1.15rem, 1.7vw, 1.32rem);
    font-weight: 630;
    letter-spacing: -0.018em;
    line-height: 1.3;
}

.entry-main .entry-content h4 {
    color: #252a25;
    font-size: 1rem;
    font-weight: 650;
    letter-spacing: -0.01em;
}

/* Consistent text links */

.entry-main .entry-content a:not(.ws-button) {
    color: #5f8100;
    font-weight: 560;
    text-decoration: underline;
    text-decoration-color: rgba(95, 129, 0, 0.42);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.entry-main .entry-content a:not(.ws-button):hover,
.entry-main .entry-content a:not(.ws-button):focus-visible {
    color: #425b00;
    text-decoration-color: currentColor;
}

/* Lists */

.entry-main .ws-check-list,
.entry-main .ws-numbered-list {
    margin: 24px 0 28px;
}

.entry-main .ws-check-list li,
.entry-main .ws-numbered-list li {
    color: #434a43;
    font-size: 0.98rem;
    line-height: 1.58;
}

.entry-main .ws-check-list li a,
.entry-main .ws-numbered-list li a {
    font-weight: 560;
}

.entry-main .ws-check-list strong,
.entry-main .ws-numbered-list strong {
    color: #2d332d;
    font-weight: 640;
}

.entry-main .ws-numbered-list li::before {
    color: #688b00;
    font-size: 0.76rem;
    font-weight: 750;
}

/* Content cards */

.entry-main .ws-content-grid {
    gap: 16px;
    margin-top: 28px;
}

.entry-main .ws-content-grid article,
.entry-main .ws-project-detail {
    padding: 25px;
}

.entry-main .ws-content-grid article p,
.entry-main .ws-project-detail p {
    color: #4a514a;
    font-size: 0.96rem;
    line-height: 1.62;
}

/* Contact headings */

.entry-main .ws-contact-form > h2 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    font-weight: 590;
}

.entry-main .ws-contact-details > h2 {
    margin-bottom: 26px;
    font-size: clamp(1.75rem, 2.6vw, 2.25rem);
    font-weight: 590;
}

/* FAQs */

.entry-main .ws-page-faq details {
    padding: 17px 0;
}

.entry-main .ws-page-faq summary {
    color: #252a25;
    font-size: 1rem;
    font-weight: 620;
    line-height: 1.45;
}

/* Calls to action */

.entry-main .ws-page-cta {
    padding: clamp(30px, 4vw, 48px);
}

.entry-main .ws-page-cta h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.entry-main .ws-page-cta p {
    max-width: 720px;
}

/* Tablet spacing */

@media (max-width: 900px) {
    .entry-main .entry-content section {
        margin-top: 44px;
        padding-top: 40px;
    }

    .entry-main .entry-content section:first-of-type {
        margin-top: 42px;
    }

    .entry-main .ws-content-grid {
        gap: 14px;
    }
}

/* Mobile spacing */

@media (max-width: 640px) {
    .entry-main .entry-shell {
        padding-bottom: 50px;
    }

    .entry-main .entry-header {
        margin-bottom: 24px;
    }

    .entry-main .entry-content {
        font-size: 0.98rem;
        line-height: 1.66;
    }

    .entry-main .entry-content > .ws-page-intro {
        margin-bottom: 14px;
        font-size: 1.06rem;
        line-height: 1.56;
    }

    .entry-main .entry-content > .ws-page-intro + p {
        margin-bottom: 18px;
        font-size: 0.98rem;
        line-height: 1.64;
    }

    .entry-main .entry-content section,
    .entry-main .entry-content section:first-of-type {
        margin-top: 34px;
        padding-top: 30px;
    }

    .entry-main .entry-content section > h2,
    .entry-main .entry-content section > div > h2 {
        margin-bottom: 17px;
        font-size: clamp(1.75rem, 9vw, 2.2rem);
        line-height: 1.12;
    }

    .entry-main .entry-content h3 {
        margin-bottom: 8px;
        font-size: 1.13rem;
    }

    .entry-main .ws-eyebrow {
        margin-bottom: 9px;
        font-size: 0.7rem;
    }

    .entry-main .ws-content-grid {
        gap: 12px;
        margin-top: 22px;
    }

    .entry-main .ws-content-grid article,
    .entry-main .ws-project-detail {
        padding: 21px;
    }

    .entry-main .ws-check-list,
    .entry-main .ws-numbered-list {
        margin: 18px 0 22px;
    }

    .entry-main .ws-check-list li,
    .entry-main .ws-numbered-list li {
        padding-top: 11px;
        padding-bottom: 11px;
        font-size: 0.94rem;
    }

    .entry-main .ws-check-list li::before {
        top: 11px;
    }

    .entry-main .ws-numbered-list li::before {
        top: 10px;
    }

    .entry-main .ws-page-faq details {
        padding: 14px 0;
    }

    .entry-main .ws-page-cta {
        padding: 25px 21px;
    }

    .entry-main .ws-contact-form,
    .entry-main .ws-contact-details {
        padding: 22px 19px;
    }
}

/* === HOSTING COMMERCE CARDS === */

.entry-main .ws-hosting-plans {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.entry-main .ws-hosting-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 25px 21px;
    border: 1px solid #d8ddd2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(13, 20, 13, 0.07);
}

.entry-main .ws-hosting-plan--featured {
    border: 2px solid #8db800;
    box-shadow: 0 16px 40px rgba(105, 140, 0, 0.16);
}

.entry-main .ws-hosting-plan__badge {
    align-self: flex-start;
    margin: -40px 0 13px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #a8dc00;
    color: #121512;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.entry-main .ws-hosting-plan__for {
    min-height: 2.5em;
    margin-bottom: 8px;
    color: #687068;
    font-size: 0.76rem;
    font-weight: 650;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.entry-main .ws-hosting-plan h3 {
    min-height: 2.4em;
    font-size: 1.25rem;
}

.entry-main .ws-hosting-plan__price {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    margin: 0;
    color: #171a17;
    line-height: 1;
}

.entry-main .ws-hosting-plan__price strong {
    font-size: 2.55rem;
    font-weight: 620;
    letter-spacing: -0.055em;
}

.entry-main .ws-hosting-plan__price span {
    padding-bottom: 4px;
    color: #687068;
    font-size: 0.82rem;
}

.entry-main .ws-hosting-plan__annual {
    min-height: 2.5em;
    margin: 9px 0 16px;
    color: #687068;
    font-size: 0.79rem;
}

.entry-main .ws-hosting-plan ul {
    flex: 1;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.entry-main .ws-hosting-plan li {
    position: relative;
    padding: 7px 0 7px 21px;
    border-bottom: 1px solid #edf0e9;
    font-size: 0.86rem;
    line-height: 1.45;
}

.entry-main .ws-hosting-plan li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #719700;
    font-weight: 800;
}

.entry-main .ws-hosting-plan .ws-button {
    justify-content: center;
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.entry-main .ws-hosting-commerce__note {
    max-width: 850px;
    margin: 20px auto 0;
    color: #687068;
    font-size: 0.78rem;
    text-align: center;
}

.entry-main .ws-domain-search {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(380px, 1.2fr);
    gap: 38px;
    align-items: center;
    margin-top: 38px;
    padding: 34px;
    border-radius: 16px;
    background: #101310;
    color: #f6f8f2;
}

.entry-main .ws-domain-search h3,
.entry-main .ws-domain-search p {
    color: inherit;
}

.entry-main .ws-domain-search h3 {
    font-size: 1.8rem;
}

.entry-main .ws-domain-search label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 650;
}

.entry-main .ws-domain-search__field {
    display: flex;
    gap: 9px;
}

.entry-main .ws-domain-search__field input {
    flex: 1;
    min-width: 0;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid #727a6e;
    border-radius: 8px;
    background: #fff;
    color: #171a17;
    font: inherit;
}

.entry-main .ws-domain-search__field input:focus {
    outline: 0;
    border-color: #a8dc00;
    box-shadow: 0 0 0 4px rgba(168, 220, 0, 0.2);
}

.entry-main .ws-domain-search__field button {
    min-height: 52px;
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    background: #a8dc00;
    color: #101310;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 1050px) {
    .entry-main .ws-hosting-plans {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 16px;
    }
}

@media (max-width: 760px) {
    .entry-main .ws-domain-search {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 580px) {
    .entry-main .ws-hosting-plans {
        grid-template-columns: 1fr;
    }

    .entry-main .ws-hosting-plan {
        padding: 22px 19px;
    }

    .entry-main .ws-domain-search {
        margin-top: 28px;
        padding: 24px 20px;
    }

    .entry-main .ws-domain-search__field {
        flex-direction: column;
    }

    .entry-main .ws-domain-search__field button {
        width: 100%;
    }
}

/* === CTA CONTRAST AND HOSTING PRICE REPAIR === */

.entry-main .entry-content .ws-page-cta {
    background: #0d100d;
    color: #f7f8f4;
}

.entry-main .entry-content .ws-page-cta .ws-eyebrow {
    color: #a8dc00;
}

.entry-main .entry-content .ws-page-cta h2,
.entry-main .entry-content .ws-page-cta h3,
.entry-main .entry-content .ws-page-cta p {
    color: #f7f8f4;
}

.entry-main .entry-content .ws-page-cta .ws-button--lime {
    background: #a8dc00;
    color: #111411;
    text-decoration: none;
}

.entry-main .entry-content .ws-page-cta .ws-button--lime:hover,
.entry-main .entry-content .ws-page-cta .ws-button--lime:focus-visible {
    background: #b9eb1d;
    color: #0b0d0b;
}

.entry-main .ws-hosting-plan__price strong {
    color: #171a17;
}

.entry-main .ws-hosting-plan--featured .ws-button--lime {
    background: #a8dc00;
    color: #111411;
    text-decoration: none;
}

.entry-main .ws-hosting-plan--featured .ws-button--lime:hover,
.entry-main .ws-hosting-plan--featured .ws-button--lime:focus-visible {
    background: #b9eb1d;
    color: #0b0d0b;
}

/* === BUSINESS HOSTING CARD ALIGNMENT === */

/*
 * Keep the recommended package visually prominent without allowing
 * its badge to push the plan name, price and features out of alignment.
 */
.ws-hosting-plan {
    position: relative;
}

.ws-hosting-plan__badge {
    position: absolute;
    top: -14px;
    left: 22px;
    z-index: 2;
    margin: 0;
    box-shadow: 0 5px 14px rgba(111, 149, 0, 0.16);
}

/* Keep the featured card content aligned with the other plans. */
.ws-hosting-plan--featured,
.ws-hosting-plan:has(.ws-hosting-plan__badge) {
    padding-top: inherit;
}

@media (max-width: 700px) {
    .ws-hosting-plan__badge {
        top: -12px;
        left: 18px;
    }

    .ws-hosting-plan:has(.ws-hosting-plan__badge) {
        margin-top: 14px;
    }
}

/* === PERSONALITY UNDERLINE REFINEMENT === */

/*
 * Retain the hand-drawn brand detail without allowing the oval
 * to cross through the word like a strikethrough.
 */
.ws-hero__headline em {
    position: relative;
    display: inline-block;
    z-index: 1;
    overflow: visible;
}

.ws-hero__headline em::after {
    content: "";
    position: absolute;
    inset: auto -0.08em -0.16em -0.08em;
    width: auto;
    height: 0.34em;
    border: 2px solid var(--lime-dark);
    border-top-color: transparent;
    border-radius: 50%;
    transform: rotate(-2deg);
    transform-origin: center;
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 700px) {
    .ws-hero__headline em::after {
        bottom: -0.12em;
        height: 0.3em;
        border-width: 2px;
    }
}

/* === SITE-WIDE FINAL CONTENT SPACING === */

/*
 * Normalize the boundary between interior content and the footer CTA.
 * This prevents page, section and final-child spacing from accumulating.
 */
.entry-main {
    padding-bottom: clamp(38px, 4vw, 58px) !important;
}

.entry-main .entry-shell {
    padding-bottom: 0 !important;
}

.entry-main .entry-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.entry-main .entry-content > :last-child {
    margin-bottom: 0 !important;
}

.entry-main .entry-content > section:last-child:not(.ws-page-cta) {
    padding-bottom: 0;
}

.entry-main .entry-content > :last-child > :last-child {
    margin-bottom: 0;
}

@media (max-width: 700px) {
    .entry-main {
        padding-bottom: 30px !important;
    }

    .entry-main .entry-content > section:last-child:not(.ws-page-cta) {
        padding-bottom: 0;
    }
}

/* === WHY CHOOSE US WRITING ANIMATION === */

.ws-trust-script {
    min-height: 1.15em;
    margin: 0 0 20px;
    color: var(--ws-lime-dark);
    font-family: var(--ws-hand);
    font-size: clamp(2.15rem, 3.5vw, 3.7rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.055em;
    transform: rotate(-3deg);
    transform-origin: left center;
}

.ws-trust-script span {
    display: inline-block;
    min-width: 11.5ch;
}

.ws-trust-script span.is-writing::after {
    content: "";
    display: inline-block;
    width: 0.08em;
    height: 0.85em;
    margin-left: 0.08em;
    background: currentColor;
    transform: rotate(7deg);
    animation: ws-writing-cursor 650ms steps(1, end) infinite;
    vertical-align: -0.08em;
}

.ws-trust-script span.is-written::after {
    content: "";
    display: inline-block;
    width: 1.1em;
    height: 0.12em;
    margin-left: 0.15em;
    border-radius: 50%;
    background: currentColor;
    transform: rotate(-7deg);
    vertical-align: 0.12em;
}

@keyframes ws-writing-cursor {
    0%,
    48% {
        opacity: 1;
    }

    49%,
    100% {
        opacity: 0;
    }
}

@media (max-width: 700px) {
    .ws-trust-script {
        margin-bottom: 15px;
        font-size: clamp(2.1rem, 12vw, 3.15rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ws-trust-script {
        transform: none;
    }

    .ws-trust-script span.is-writing::after {
        animation: none;
    }
}

/* === GOOGLE REVIEW TRUST LINE === */

.ws-trust__rating {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 10px;
    margin: clamp(18px, 2vw, 26px) 0 0;
    padding: 10px 14px;
    border: 1px solid rgba(112, 153, 20, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    line-height: 1.25;
}

.ws-trust__stars {
    color: var(--lime-dark);
    font-size: 0.92rem;
    letter-spacing: 0.08em;
}

.ws-trust__rating strong {
    font-size: 0.9rem;
    font-weight: 700;
}

.ws-trust__rating small {
    color: var(--muted);
    font-size: 0.82rem;
}

@media (max-width: 700px) {
    .ws-trust__rating {
        gap: 5px 8px;
        margin-top: 16px;
        padding: 9px 12px;
    }

    .ws-trust__rating small {
        flex-basis: 100%;
        padding-left: 1px;
    }
}

/* === OUR WORK DESIGN EXAMPLES === */

.ws-design-examples__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
    margin-top: clamp(26px, 3vw, 40px);
}

.ws-design-example {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(21, 29, 19, 0.07);
}

.ws-design-example__image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--paper-soft);
    border-bottom: 1px solid var(--line);
}

.ws-design-example__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 320ms ease;
}

.ws-design-example:hover .ws-design-example__image img {
    transform: scale(1.018);
}

.ws-design-example figcaption {
    padding: clamp(18px, 2.2vw, 26px);
}

.ws-design-example figcaption > span {
    display: block;
    margin-bottom: 8px;
    color: var(--lime-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.ws-design-example h3 {
    margin: 0 0 9px;
}

.ws-design-example p {
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .ws-design-example__image img {
        transition: none;
    }

    .ws-design-example:hover .ws-design-example__image img {
        transform: none;
    }
}

@media (max-width: 700px) {
    .ws-design-examples__grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 24px;
    }

    .ws-design-example {
        border-radius: 15px;
    }

    .ws-design-example figcaption {
        padding: 18px;
    }
}

/* === WEB SECURED BALANCED ARTICLE HERO === */

/*
 * Articles retain the editorial split layout while using the left
 * column for meaningful introductory information rather than empty space.
 */
.single-post .entry-header {
    display: grid;
    grid-template-columns:
        minmax(230px, 0.72fr)
        minmax(0, 1.28fr);
    grid-template-rows: auto 1fr auto;
    column-gap: clamp(40px, 6vw, 86px);
    row-gap: 18px;
    align-items: center;
    min-height: 0;
    padding:
        clamp(38px, 5vw, 68px)
        clamp(28px, 4vw, 58px);
}

.single-post .entry-header .eyebrow {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin: 0;
}

.single-post .entry-header h1 {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    max-width: 760px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.01;
}

.single-post .entry-header .entry-summary {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    max-width: 34ch;
    margin: 0;
    color: #4e574f;
    font-family:
        Inter,
        Aptos,
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: clamp(0.96rem, 1.2vw, 1.08rem);
    font-weight: 450;
    letter-spacing: -0.01em;
    line-height: 1.62;
}

.single-post .entry-header .entry-meta {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    margin: 0;
}

@media (max-width: 900px) {
    .single-post .entry-header {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto;
        gap: 18px;
        padding:
            clamp(32px, 7vw, 52px)
            clamp(24px, 6vw, 42px);
    }

    .single-post .entry-header .eyebrow,
    .single-post .entry-header h1,
    .single-post .entry-header .entry-summary,
    .single-post .entry-header .entry-meta {
        grid-column: 1;
        grid-row: auto;
        align-self: auto;
    }

    .single-post .entry-header h1 {
        max-width: 820px;
        font-size: clamp(2.55rem, 8vw, 4.5rem);
    }

    .single-post .entry-header .entry-summary {
        max-width: 62ch;
    }
}

@media (max-width: 520px) {
    .single-post .entry-header {
        gap: 15px;
        padding: 28px 22px 30px;
    }

    .single-post .entry-header h1 {
        font-size: clamp(2.25rem, 11vw, 3.3rem);
        line-height: 1.02;
        letter-spacing: -0.048em;
    }

    .single-post .entry-header .entry-summary {
        font-size: 0.96rem;
        line-height: 1.55;
    }
}
