/*
Theme Name: Konfiq Site
Theme URI: https://konfiq.com/
Author: Vidan Holding ApS
Description: Lightweight service website for Konfiq configurator asset production.
Version: 0.3.3
Requires at least: 6.5
Requires PHP: 8.1
Text Domain: konfiq-site
*/

:root {
    --ink: #101410;
    --ink-soft: #283029;
    --paper: #f3f0e7;
    --paper-deep: #e8e4d8;
    --white: #fffef9;
    --lime: #b7ff63;
    --lime-deep: #91df3b;
    --sand: #e7d5bc;
    --blue: #c7d8ff;
    --muted: #60675f;
    --line: rgba(16, 20, 16, 0.15);
    --line-light: rgba(255, 255, 255, 0.18);
    --shadow: 0 24px 70px rgba(16, 20, 16, 0.13);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --shell: 1240px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #2c67ff;
    outline-offset: 4px;
}

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

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

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

.skip-link:focus {
    z-index: 10000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 12px 18px;
    margin: 0;
    overflow: visible;
    clip: auto;
    color: var(--ink);
    background: var(--lime);
    border-radius: 999px;
    font-weight: 750;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    background: rgba(243, 240, 231, 0.92);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 8px 28px rgba(16, 20, 16, 0.06);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
}

.brand__mark {
    color: var(--lime);
}

.brand__word {
    font-size: 27px;
    font-weight: 840;
    letter-spacing: -0.065em;
    line-height: 1;
}

.site-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.site-nav > a:not(.button) {
    position: relative;
    color: #303630;
    font-size: 14px;
    font-weight: 680;
    text-decoration: none;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1.5px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 1.5px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform 180ms ease;
}

.button {
    display: inline-flex;
    min-height: 54px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 780;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button--small {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 13px;
}

.button--dark {
    color: var(--white);
    background: var(--ink);
}

.button--dark:hover {
    background: #29302a;
    box-shadow: 0 10px 24px rgba(16, 20, 16, 0.17);
}

.button--accent {
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 12px 30px rgba(183, 255, 99, 0.17);
}

.button--accent:hover {
    background: #c6ff83;
    box-shadow: 0 15px 34px rgba(183, 255, 99, 0.23);
}

.button--full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: inherit;
    font-size: 14px;
    font-weight: 780;
    text-decoration: none;
}

.text-link span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    transition: transform 160ms ease;
}

.text-link:hover span {
    transform: translate(2px, 2px);
}

.eyebrow {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.68);
}

.hero {
    position: relative;
    padding: 56px 0 78px;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    top: -140px;
    right: -140px;
    width: 520px;
    height: 520px;
    content: "";
    background: rgba(183, 255, 99, 0.24);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(560px, 1.16fr);
    gap: 66px;
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 590px;
}

.hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(58px, 5.9vw, 88px);
    font-weight: 820;
    letter-spacing: -0.058em;
    line-height: 0.95;
}

.hero__lead {
    max-width: 590px;
    margin: 30px 0 0;
    color: #454c45;
    font-size: clamp(18px, 1.55vw, 22px);
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-top: 36px;
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 0;
    margin: 34px 0 0;
    color: #555d55;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.hero__proof li {
    display: flex;
    gap: 7px;
    align-items: center;
    white-space: nowrap;
}

.hero__proof li span {
    display: grid;
    width: 18px;
    height: 18px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    place-items: center;
    font-size: 11px;
}

.hero__visual {
    position: relative;
}

.hero__image-frame {
    position: relative;
    overflow: hidden;
    background: #eeece6;
    border: 1px solid rgba(16, 20, 16, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transform: rotate(1.4deg);
}

.hero__image-frame::after {
    position: absolute;
    inset: 0;
    content: "";
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
    border-radius: inherit;
    pointer-events: none;
}

.hero__image-frame img {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    object-fit: cover;
    object-position: 53% center;
}

.asset-chip {
    position: absolute;
    z-index: 2;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px 10px 10px;
    color: var(--white);
    background: rgba(16, 20, 16, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(16, 20, 16, 0.24);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.asset-chip__number {
    display: grid;
    width: 31px;
    height: 31px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    place-items: center;
    font-size: 10px;
    font-weight: 850;
}

.asset-chip--top {
    top: 28px;
    left: -26px;
}

.asset-chip--bottom {
    right: -18px;
    bottom: 38px;
}

.intro-strip {
    color: var(--white);
    background: var(--ink);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-strip__inner {
    display: flex;
    min-height: 92px;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
}

.intro-strip p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.intro-strip__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: flex-end;
}

.intro-strip__tags span {
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section {
    padding: 108px 0;
}

.section-heading {
    display: grid;
    margin-bottom: 60px;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 80px;
    align-items: end;
}

.section-heading h2,
.process__header h2,
.delivery-panel h2,
.faq h2,
.contact h2 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    letter-spacing: -0.064em;
    line-height: 0.99;
}

.section-heading > p,
.faq__heading > p,
.delivery-panel__copy > p,
.contact__copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 520px;
    padding: 34px;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(16, 20, 16, 0.13);
    border-radius: var(--radius-md);
}

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

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

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

.service-card__number {
    color: rgba(16, 20, 16, 0.52);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.service-card__media {
    position: relative;
    margin: 14px -8px 22px;
}

.service-card__media img {
    display: block;
    width: 100%;
    height: auto;
}

.service-card h3 {
    margin: auto 0 12px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.service-card p {
    margin: 0 0 24px;
    color: rgba(16, 20, 16, 0.7);
    font-size: 14px;
}

.service-card ul {
    display: grid;
    gap: 8px;
    padding: 18px 0 0;
    margin: 0;
    border-top: 1px solid rgba(16, 20, 16, 0.18);
    font-size: 12px;
    font-weight: 700;
    list-style: none;
}

.service-card li::before {
    margin-right: 8px;
    content: "↳";
}

.examples {
    color: var(--white);
    background: var(--ink);
}

.section-heading--light > p {
    color: rgba(255, 255, 255, 0.6);
}

.example-feature {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.62fr);
    background: #f1f3f6;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
}

.example-feature__image img {
    width: 100%;
    height: 100%;
    min-height: 490px;
    object-fit: cover;
}

.example-feature__copy {
    display: flex;
    padding: 42px;
    color: var(--ink);
    background: var(--lime);
    flex-direction: column;
    justify-content: flex-end;
}

.label {
    margin: 0 0 auto;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.example-feature__copy h3 {
    margin: 90px 0 18px;
    font-size: clamp(32px, 2.6vw, 42px);
    letter-spacing: -0.055em;
    line-height: 1;
}

.example-feature__copy p:last-child {
    margin: 0;
    color: rgba(16, 20, 16, 0.72);
    font-size: 14px;
}

.example-grid {
    display: grid;
    margin-top: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.example-card {
    overflow: hidden;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
}

.example-card__image {
    overflow: hidden;
    background: #e9ebe8;
}

.example-card__image img {
    width: 100%;
    aspect-ratio: 1.52 / 1;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.example-card:hover .example-card__image img {
    transform: scale(1.025);
}

.example-card__copy {
    display: flex;
    min-height: 112px;
    padding: 26px 30px;
    gap: 18px;
    align-items: center;
    background: #1a201a;
}

.example-card__copy span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    place-items: center;
    font-size: 10px;
    font-weight: 850;
}

.example-card__copy h3 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.02em;
}

.examples__more {
    margin: 36px 0 0;
    text-align: center;
}

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

.process__header {
    max-width: 780px;
    margin-bottom: 70px;
}

.process-list {
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.process-list li {
    display: grid;
    min-height: 155px;
    padding: 32px 0;
    grid-template-columns: 100px minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.process-list__number {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.process-list li > div {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
    gap: 70px;
    align-items: center;
}

.process-list h3 {
    margin: 0;
    font-size: clamp(27px, 3vw, 40px);
    letter-spacing: -0.05em;
}

.process-list p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
}

.delivery-panel {
    padding: 0;
    background: var(--white);
}

.delivery-panel__grid {
    display: grid;
    padding: 88px;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 1fr);
    gap: 72px;
    align-items: center;
    background: var(--lime);
    border-radius: var(--radius-lg);
}

.delivery-panel h2 {
    font-size: clamp(36px, 3.4vw, 54px);
}

.delivery-panel__copy > p {
    max-width: 590px;
    margin: 25px 0 28px;
    color: rgba(16, 20, 16, 0.72);
}

.delivery-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(16, 20, 16, 0.12);
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(16, 20, 16, 0.17);
    transform: rotate(1.2deg);
}

.delivery-card__top {
    display: flex;
    min-height: 68px;
    padding: 0 24px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
}

.delivery-card__status {
    padding: 6px 10px;
    color: #1d5c15;
    background: #dfffd6;
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
}

.delivery-card ul {
    padding: 10px 24px 18px;
    margin: 0;
    list-style: none;
}

.delivery-card li {
    display: grid;
    min-height: 72px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.delivery-card li:last-child {
    border-bottom: 0;
}

.file-icon {
    display: grid;
    width: 38px;
    height: 38px;
    color: var(--ink);
    background: var(--paper-deep);
    border-radius: 9px;
    place-items: center;
    font-size: 8px;
    font-weight: 900;
}

.delivery-card li > div {
    display: flex;
    flex-direction: column;
}

.delivery-card strong {
    font-size: 13px;
}

.delivery-card small,
.delivery-card li > span:last-child {
    color: var(--muted);
    font-size: 10px;
}

.faq {
    background: var(--white);
}

.faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
    gap: 100px;
}

.faq__heading {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    align-self: start;
}

.faq__heading h2 {
    margin-bottom: 25px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    min-height: 100px;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(20px, 2vw, 25px);
    font-weight: 750;
    letter-spacing: -0.025em;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    font-size: 19px;
    font-weight: 400;
    transition: transform 180ms ease, background 180ms ease;
}

.faq-list details[open] summary span {
    background: var(--lime);
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 720px;
    padding: 0 70px 30px 0;
    margin: 0;
    color: var(--muted);
}

.contact {
    color: var(--white);
    background: var(--ink);
}

.contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    gap: 110px;
    align-items: start;
}

.contact__copy {
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.contact__copy > p {
    max-width: 580px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.65);
}

.contact__mail {
    display: flex;
    gap: 26px;
    align-items: center;
    margin-top: 54px;
}

.contact__mail-text {
    display: flex;
    flex-direction: column;
}

.contact__portrait {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    object-fit: cover;
}

.contact__mail span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact__mail a {
    margin-top: 6px;
    color: var(--lime);
    font-size: 20px;
    font-weight: 750;
}

.contact-card {
    padding: 38px;
    color: var(--ink);
    background: var(--white);
    border-radius: var(--radius-md);
}

.contact-card form {
    display: grid;
    gap: 22px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

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

.contact-card label:not(.checkbox):not(.honeypot):not(.choice-card) {
    display: grid;
    gap: 8px;
}

.contact-card [data-platform-field][hidden] {
    display: none !important;
}

.contact-card label > span:first-child {
    font-size: 11px;
    font-weight: 800;
}

.contact-card input[type="text"],
.contact-card input[type="email"],
.contact-card input[type="url"],
.contact-card select,
.contact-card textarea {
    width: 100%;
    padding: 14px 15px;
    background: #f7f5ef;
    border: 1px solid rgba(16, 20, 16, 0.18);
    border-radius: 10px;
    outline: none;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-card input[type="text"],
.contact-card input[type="email"],
.contact-card input[type="url"],
.contact-card select {
    height: 50px;
}

.contact-card select {
    cursor: pointer;
}

.contact-card textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
    background: var(--white);
    border-color: #3970ff;
    box-shadow: 0 0 0 3px rgba(57, 112, 255, 0.12);
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
    color: #8f958e;
}

.form-fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

.form-fieldset legend {
    padding: 0;
    font-size: 11px;
    font-weight: 800;
}

.form-help {
    display: block;
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.45;
}

.choice-grid {
    display: grid;
    margin-top: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.choice-card {
    display: grid;
    min-height: 54px;
    padding: 12px 13px;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    background: #f7f5ef;
    border: 1px solid rgba(16, 20, 16, 0.18);
    border-radius: 10px;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.choice-card--wide {
    grid-column: 1 / -1;
}

.choice-card:hover,
.choice-card:focus-within,
.choice-card:has(input:checked) {
    background: var(--white);
    border-color: #3970ff;
}

.choice-card:focus-within {
    box-shadow: 0 0 0 3px rgba(57, 112, 255, 0.12);
}

.choice-card input {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: var(--ink);
}

.choice-card span {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.checkbox {
    display: grid;
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--muted);
    font-size: 11px;
    cursor: pointer;
}

.checkbox input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--ink);
}

.checkbox a {
    color: var(--ink);
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-note {
    margin: -10px 0 0;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}

.form-notice {
    display: grid;
    gap: 4px;
    padding: 15px 17px;
    margin-bottom: 22px;
    border-radius: 11px;
    font-size: 12px;
}

.form-notice--success {
    color: #194d17;
    background: #e3ffdd;
    border: 1px solid #b6e5ac;
}

.form-notice--error {
    color: #781f1f;
    background: #fff0ef;
    border: 1px solid #f2c2be;
}

.site-footer {
    padding: 56px 0 30px;
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.site-footer__top,
.site-footer__bottom {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.site-footer__top {
    min-height: 110px;
}

.brand--footer {
    color: var(--white);
}

.brand--footer .brand__word {
    font-size: 44px;
}

.site-footer__top p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
}

.site-footer__bottom {
    min-height: 74px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.site-footer__bottom p,
.site-footer__bottom nav {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
}

.site-footer__bottom nav {
    display: flex;
    gap: 22px;
}

.page-main {
    min-height: 65vh;
    padding: 100px 0 130px;
    background: var(--white);
}

.prose {
    max-width: 850px;
}

.prose h1 {
    max-width: 800px;
    margin: 0 0 50px;
    font-size: clamp(48px, 7vw, 82px);
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.prose h2 {
    margin: 54px 0 16px;
    font-size: 30px;
    letter-spacing: -0.035em;
}

.prose h3 {
    margin: 38px 0 12px;
    font-size: 22px;
}

.prose p,
.prose li {
    color: var(--ink-soft);
}

.prose p {
    margin: 0 0 20px;
}

.prose ul {
    display: grid;
    gap: 8px;
    padding-left: 22px;
}

.prose a:not(.button) {
    color: #1e57d8;
}

.launch-placeholder {
    padding: 16px 18px;
    color: #762a19;
    background: #fff0d9;
    border: 1px solid #efc691;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .hero__grid {
        grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
        gap: 44px;
    }

    .hero__proof {
        flex-wrap: wrap;
    }

    .service-card {
        min-height: 500px;
        padding: 28px;
    }

    .delivery-panel__grid {
        padding: 70px;
        gap: 60px;
    }

    .contact__grid {
        gap: 70px;
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 72px;
    }

    .site-nav {
        gap: 20px;
    }

    .site-nav > a:not(.button) {
        font-size: 12px;
    }

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

    .hero__grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__visual {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    .hero__image-frame img {
        aspect-ratio: 1.48 / 1;
    }

    .section {
        padding: 100px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-heading > p {
        max-width: 660px;
    }

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

    .service-card {
        min-height: 0;
        padding: 32px;
    }

    .service-card__media {
        width: min(100%, 420px);
        margin: 6px 0 20px;
    }

    .service-card h3 {
        margin-top: 0;
    }

    .example-feature {
        grid-template-columns: 1fr;
    }

    .example-feature__image img {
        min-height: 0;
        aspect-ratio: 1.6 / 1;
    }

    .example-feature__copy h3 {
        margin-top: 70px;
    }

    .process-list li > div {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .delivery-panel__grid {
        padding: 60px;
        grid-template-columns: 1fr;
    }

    .delivery-card {
        transform: none;
    }

    .faq__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq__heading,
    .contact__copy {
        position: static;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact__copy {
        max-width: 760px;
    }
}

@media (max-width: 760px) {
    :root {
        --radius-lg: 24px;
    }

    .shell {
        width: min(calc(100% - 32px), var(--shell));
    }

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

    .menu-toggle {
        display: block;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        transform: translateY(3.25px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-3.25px) rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        z-index: 10;
        top: 100%;
        right: 0;
        left: 0;
        display: flex;
        height: calc(100svh - var(--header-height));
        padding: 45px 24px 36px;
        align-items: stretch;
        justify-content: flex-start;
        background: var(--paper);
        border-top: 1px solid var(--line);
        flex-direction: column;
        opacity: 0;
        overflow-y: auto;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .admin-bar .site-nav {
        height: calc(100svh - var(--header-height) - 46px);
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav > a:not(.button) {
        padding: 10px 0;
        font-size: 28px;
        letter-spacing: -0.035em;
    }

    .site-nav .button {
        margin-top: auto;
    }

    .hero {
        padding: 52px 0 72px;
    }

    .hero h1 {
        font-size: clamp(46px, 13.5vw, 66px);
    }

    .hero__lead {
        margin-top: 24px;
        font-size: 18px;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .text-link {
        justify-content: center;
    }

    .hero__proof {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__image-frame {
        border-radius: 22px;
        transform: none;
    }

    .hero__image-frame img {
        aspect-ratio: 1.05 / 1;
        object-position: 56% center;
    }

    .asset-chip {
        transform: scale(0.9);
    }

    .asset-chip--top {
        top: 16px;
        left: -8px;
    }

    .asset-chip--bottom {
        right: -8px;
        bottom: 18px;
    }

    .intro-strip__inner {
        min-height: 0;
        padding: 30px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .intro-strip__tags {
        justify-content: flex-start;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .process__header h2,
    .delivery-panel h2,
    .faq h2,
    .contact h2 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .service-card {
        padding: 26px;
    }

    .service-card__media {
        width: min(100%, 340px);
        margin: 2px 0 16px;
    }

    .example-feature__image img {
        aspect-ratio: 1.12 / 1;
        object-position: 66% center;
    }

    .example-feature__copy {
        padding: 30px;
    }

    .example-feature__copy h3 {
        margin-top: 50px;
    }

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

    .example-card__image img {
        aspect-ratio: 1.18 / 1;
    }

    .process__header {
        margin-bottom: 45px;
    }

    .process-list li {
        min-height: 0;
        padding: 28px 0;
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .process-list h3 {
        font-size: 27px;
    }

    .delivery-panel {
        padding-inline: 0;
    }

    .delivery-panel__grid {
        width: 100%;
        padding: 60px 24px;
        border-radius: 0;
    }

    .delivery-card ul {
        padding-inline: 16px;
    }

    .faq__grid {
        gap: 45px;
    }

    .faq-list summary {
        min-height: 86px;
        font-size: 19px;
    }

    .faq-list details p {
        padding-right: 0;
    }

    .contact-card {
        padding: 24px;
    }

    .form-grid--two {
        grid-template-columns: 1fr;
    }

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

    .choice-card--wide {
        grid-column: auto;
    }

    .site-footer__top,
    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__top {
        padding-bottom: 30px;
    }

    .site-footer__bottom {
        padding-top: 26px;
    }

    .site-footer__bottom nav {
        flex-wrap: wrap;
    }

    .page-main {
        padding: 75px 0 100px;
    }
}

@media (max-width: 420px) {
    .asset-chip--top {
        left: -4px;
    }

    .asset-chip--bottom {
        right: -4px;
    }

    .asset-chip {
        padding-right: 10px;
        font-size: 9px;
    }

    .intro-strip__tags span {
        font-size: 9px;
    }
}

@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;
    }
}

@media print {
    .site-header,
    .site-footer,
    .contact,
    .hero__actions {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* Video landing page (page-video.php) */

.video-page {
    background: var(--white);
}

.video-hero {
    position: relative;
    padding: 74px 0 44px;
    overflow: hidden;
    background: var(--paper);
}

.video-hero::before {
    position: absolute;
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
    content: "";
    background: rgba(183, 255, 99, 0.24);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.video-hero .shell {
    position: relative;
}

.video-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(44px, 5.6vw, 84px);
    font-weight: 820;
    letter-spacing: -0.07em;
    line-height: 0.94;
}

.video-hero__lead {
    max-width: 720px;
    margin: 26px 0 0;
    color: #454c45;
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
}

.video-stage {
    padding: 0 0 96px;
    background: linear-gradient(180deg, var(--paper) 0, var(--paper) 180px, var(--white) 180px);
}

.video-frame {
    overflow: hidden;
    background: var(--ink);
    border: 1px solid rgba(16, 20, 16, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.video-frame video,
.video-card__player video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: var(--ink);
}

.video-caption {
    display: grid;
    max-width: 980px;
    margin-top: 26px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.video-caption p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.video-caption__meta {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.video-badge {
    display: grid;
    width: 38px;
    height: 38px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 50%;
    place-items: center;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0;
}

.video-more {
    color: var(--white);
    background: var(--ink);
}

.video-more .section-heading h2 {
    max-width: 820px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.video-card {
    overflow: hidden;
    border: 1px solid var(--line-light);
    border-radius: var(--radius-md);
    background: #1a201a;
}

.video-card__player {
    background: #0b0e0b;
}

.video-card__copy {
    padding: 26px 30px 30px;
}

.video-card__copy .video-caption__meta {
    color: rgba(255, 255, 255, 0.6);
}

.video-card__copy h3 {
    margin: 16px 0 10px;
    font-size: 22px;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.video-card__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.6;
}

.video-points {
    background: var(--white);
}

.video-cta {
    padding-top: 0;
    background: var(--white);
}

.video-cta__panel {
    display: grid;
    padding: 80px 95px;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 60px;
    align-items: center;
    background: var(--lime);
    border-radius: var(--radius-lg);
}

.video-cta__copy h2 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(38px, 4.4vw, 64px);
    font-weight: 800;
    letter-spacing: -0.064em;
    line-height: 0.99;
}

.video-cta__copy p {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgba(16, 20, 16, 0.72);
}

.video-cta__actions {
    display: flex;
    gap: 26px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .video-hero {
        padding: 62px 0 36px;
    }

    .video-stage {
        padding-bottom: 80px;
    }

    .video-caption {
        grid-template-columns: 1fr;
        gap: 14px;
    }

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

    .video-cta__panel {
        padding: 60px;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .video-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .video-hero {
        padding: 46px 0 28px;
    }

    .video-hero h1 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .video-hero__lead {
        margin-top: 20px;
        font-size: 17px;
    }

    .video-stage {
        padding-bottom: 64px;
        background: linear-gradient(180deg, var(--paper) 0, var(--paper) 90px, var(--white) 90px);
    }

    .video-frame {
        border-radius: 18px;
    }

    .video-card__copy {
        padding: 22px 22px 26px;
    }

    .video-cta {
        padding-inline: 0;
    }

    .video-cta__panel {
        width: 100%;
        padding: 54px 24px;
        border-radius: 0;
    }

    .video-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .video-cta__actions .text-link {
        justify-content: center;
    }
}

/* ---------------------------------------------------------------------------
   Gallery configurator
   --------------------------------------------------------------------------- */

:root {
    --q-green: #3f9d54;
    --q-green-soft: #e4f6e6;
    --q-yellow: #c58a12;
    --q-yellow-soft: #fdf2dc;
    --q-red: #c8442c;
    --q-red-soft: #fceae5;
}

/* Teaser on the front page */

.gallery-teaser {
    color: var(--white);
    background: var(--ink);
}

.gallery-teaser__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.92fr);
    gap: 90px;
    align-items: center;
}

.gallery-teaser__copy h2 {
    max-width: 620px;
    margin: 14px 0 0;
    font-size: clamp(38px, 3.8vw, 60px);
    font-weight: 800;
    letter-spacing: -0.058em;
    line-height: 1;
}

.gallery-teaser__copy > p {
    max-width: 560px;
    margin: 26px 0 34px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 17px;
    line-height: 1.65;
}

.gallery-teaser__visual {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(190px, 0.65fr);
    gap: 28px;
    align-items: center;
}

.gallery-teaser__frame {
    padding: 14px;
    background: #f6f4ee;
    border-radius: 6px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    transform: rotate(-1.4deg);
}

.gallery-teaser__frame img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.gallery-teaser__scale {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.gallery-teaser__scale li {
    display: flex;
    gap: 10px;
    align-items: baseline;
    justify-content: space-between;
    padding: 11px 14px;
    border-left: 3px solid currentColor;
    border-radius: 0 10px 10px 0;
    font-size: 12px;
    font-weight: 750;
}

.gallery-teaser__scale li[data-status="green"] {
    color: #8ddc9d;
    background: rgba(141, 220, 157, 0.12);
}

.gallery-teaser__scale li[data-status="yellow"] {
    color: #efc45f;
    background: rgba(239, 196, 95, 0.13);
}

.gallery-teaser__scale li[data-status="red"] {
    color: #ef8367;
    background: rgba(239, 131, 103, 0.14);
}

.gallery-teaser__scale em {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
}

/* Gallery page hero */

.gallery-hero {
    position: relative;
    padding: 56px 0 72px;
    overflow: hidden;
}

.gallery-hero::before {
    position: absolute;
    top: -160px;
    right: -120px;
    width: 520px;
    height: 520px;
    content: "";
    background: rgba(183, 255, 99, 0.24);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.gallery-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 72px;
    align-items: center;
}

.gallery-hero h1 {
    max-width: 640px;
    margin: 14px 0 0;
    font-size: clamp(46px, 4.9vw, 74px);
    font-weight: 820;
    letter-spacing: -0.058em;
    line-height: 0.98;
}

.gallery-hero__lead {
    max-width: 580px;
    margin: 26px 0 0;
    color: #454c45;
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.6;
}

.gallery-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-top: 34px;
}

.gallery-hero__visual {
    position: relative;
}

.gallery-hero__frame {
    padding: 18px;
    background: var(--ink);
    border-radius: 6px;
    box-shadow: var(--shadow);
    transform: rotate(1.6deg);
}

.gallery-hero__frame img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

/* Quality explainer */

.gallery-quality {
    color: var(--white);
    background: var(--ink);
}

.quality-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quality-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
}

.quality-card__top {
    display: flex;
    gap: 11px;
    align-items: center;
}

.quality-card h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.quality-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.quality-card--green .quality-dot {
    background: #8ddc9d;
}

.quality-card--yellow .quality-dot {
    background: #efc45f;
}

.quality-card--red .quality-dot {
    background: #ef8367;
}

.quality-card__range {
    margin: 16px 0 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quality-card--green .quality-card__range {
    color: #8ddc9d;
}

.quality-card--yellow .quality-card__range {
    color: #efc45f;
}

.quality-card--red .quality-card__range {
    color: #ef8367;
}

.quality-card p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.6;
}

.quality-note {
    display: grid;
    gap: 44px;
    padding-top: 46px;
    margin-top: 46px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quality-note h3 {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.quality-note p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
}

/* Horizontal steps */

.steps-rail {
    padding-bottom: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.steps-rail__track {
    display: flex;
    gap: 16px;
    width: max-content;
    padding-inline: max(24px, calc((100vw - var(--shell)) / 2));
}

.step-card {
    display: flex;
    width: 320px;
    min-height: 250px;
    padding: 28px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(16, 20, 16, 0.13);
    border-radius: var(--radius-md);
    scroll-snap-align: start;
}

.step-card__number {
    color: rgba(16, 20, 16, 0.42);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.step-card h3 {
    margin: auto 0 11px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.step-card p {
    margin: 0;
    color: rgba(16, 20, 16, 0.68);
    font-size: 13.5px;
    line-height: 1.6;
}

/* AR block */

.gallery-ar__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(400px, 1.14fr);
    gap: 76px;
    align-items: center;
}

.gallery-ar h2 {
    max-width: 560px;
    margin: 14px 0 0;
    font-size: clamp(36px, 3.6vw, 56px);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.gallery-ar__copy > p {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.gallery-ar__points {
    display: grid;
    gap: 9px;
    padding: 24px 0 0;
    margin: 24px 0 0;
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 720;
    list-style: none;
}

.gallery-ar__points li::before {
    margin-right: 9px;
    content: "\2193";
    transform: rotate(-45deg);
    display: inline-block;
}

.gallery-ar__visual {
    position: relative;
    margin: 0;
}

.gallery-ar__visual img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(16, 20, 16, 0.12);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

/* The tracking overlay sits exactly on the frame in the photograph. */

.ar-frame {
    position: absolute;
    left: 38.5%;
    top: 11.9%;
    width: 25.4%;
    height: 44.4%;
    pointer-events: none;
}

.ar-frame__corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 3px solid var(--lime-deep);
}

.ar-frame__corner--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; border-top-left-radius: 4px; }
.ar-frame__corner--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; border-top-right-radius: 4px; }
.ar-frame__corner--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; border-bottom-left-radius: 4px; }
.ar-frame__corner--br { bottom: 0; right: 0; border-left: 0; border-top: 0; border-bottom-right-radius: 4px; }

.ar-badge {
    position: absolute;
    left: 51.2%;
    top: 59.5%;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 15px;
    color: var(--white);
    background: rgba(16, 20, 16, 0.92);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transform: translateX(-50%);
    box-shadow: 0 10px 26px rgba(16, 20, 16, 0.28);
}

.ar-badge__dot {
    width: 9px;
    height: 9px;
    background: var(--lime);
    border-radius: 50%;
}

.ar-caption {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 12.5px;
}

@media (max-width: 620px) {
    .ar-frame__corner {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }

    .ar-badge {
        padding: 6px 11px;
        font-size: 11px;
    }
}

.gallery-cta .delivery-panel__grid {
    background: var(--lime);
}

@media (max-width: 1180px) {
    .gallery-teaser__grid,
    .gallery-hero__grid,
    .gallery-ar__grid {
        gap: 52px;
    }
}

@media (max-width: 960px) {
    .gallery-hero__grid,
    .gallery-teaser__grid,
    .gallery-ar__grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .gallery-hero__visual,
    .gallery-teaser__visual {
        width: min(100%, 680px);
        margin-inline: auto;
    }

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

    .quality-note {
        gap: 34px;
        grid-template-columns: 1fr;
    }

}

@media (max-width: 760px) {
    .gallery-teaser__visual {
        grid-template-columns: 1fr;
    }

    .live-grid,
    .motif-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        width: min(84vw, 320px);
    }
}

/* Live configurator cards */

.live-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.live-card {
    display: flex;
}

.live-card__link {
    display: flex;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(16, 20, 16, 0.13);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.live-card__link:hover,
.live-card__link:focus-visible {
    border-color: rgba(16, 20, 16, 0.4);
    box-shadow: 0 22px 50px rgba(16, 20, 16, 0.14);
    transform: translateY(-3px);
}

.live-card__media {
    display: block;
    overflow: hidden;
    background: var(--paper-deep);
}

.live-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.live-card__body {
    display: flex;
    padding: 26px;
    flex: 1;
    flex-direction: column;
}

.live-card__kicker {
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.live-card__title {
    margin: 12px 0 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.live-card__text {
    margin: 0 0 20px;
    color: rgba(16, 20, 16, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.live-card__cta {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    margin-top: auto;
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.25em;
}

/* Motif wall */

.gallery-motifs {
    color: var(--white);
    background: var(--ink);
}

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

.motif {
    margin: 0;
}

.motif__frame {
    padding: 12px;
    background: #f6f4ee;
    border-radius: 4px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
}

.motif__frame img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.motif figcaption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 14px;
}

.motif figcaption strong {
    font-size: 14px;
    font-weight: 780;
}

.motif figcaption span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.frame-strip {
    display: grid;
    gap: 20px;
    padding-top: 40px;
    margin-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    align-items: center;
}

.frame-strip__label {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.frame-strip ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.frame-strip li {
    display: flex;
    padding: 9px 16px 9px 10px;
    gap: 9px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 720;
}

.frame-strip__swatch {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.frame-strip__note {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* Teaser motif strip on the front page */

.gallery-teaser__motifs {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-teaser__motifs img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 1180px) {
    .motif-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

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

    .frame-strip {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

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

/* Size ladder: one file, five sizes, the reading changing */

.ladder {
    display: grid;
    gap: 32px;
    padding-top: 44px;
    margin-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    align-items: start;
}

.ladder__intro h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.ladder__intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.65;
}

.ladder__thumb {
    max-width: 168px;
    padding: 10px;
    margin: 22px 0 0;
    background: #f6f4ee;
    border-radius: 4px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.ladder__thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.ladder__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ladder__row {
    display: grid;
    gap: 16px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    grid-template-columns: 104px minmax(0, 1fr) 74px 68px;
    align-items: center;
}

.ladder__size {
    font-size: 14px;
    font-weight: 780;
    white-space: nowrap;
}

.ladder__bar {
    display: block;
    height: 7px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 999px;
}

.ladder__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
}

.ladder__dpi {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.ladder__status {
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-align: right;
    text-transform: uppercase;
}

.ladder__row--green .ladder__bar span { background: #7ddc7d; }
.ladder__row--green .ladder__status   { color: #7ddc7d; }
.ladder__row--yellow .ladder__bar span { background: #e8c45c; }
.ladder__row--yellow .ladder__status   { color: #e8c45c; }
.ladder__row--red .ladder__bar span { background: #e88a7a; }
.ladder__row--red .ladder__status   { color: #e88a7a; }
.ladder__row--red { border-color: rgba(232, 138, 122, 0.42); }

@media (max-width: 960px) {
    .ladder {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .ladder__row {
        gap: 10px 14px;
        grid-template-columns: 100px minmax(0, 1fr) 66px;
    }

    .ladder__status {
        grid-column: 2 / -1;
        text-align: left;
    }
}

@media (max-width: 560px) {
    .ladder__row {
        grid-template-columns: 1fr auto;
    }

    .ladder__bar {
        grid-column: 1 / -1;
        order: 3;
    }

    .ladder__status {
        grid-column: 1 / -1;
        order: 4;
    }
}

/* Layer card: the framed piece pulled apart */

.layer-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 26px 60px rgba(16, 20, 16, 0.16);
}

.layer-card__top {
    display: flex;
    padding: 20px 24px;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(16, 20, 16, 0.09);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.layer-card__status {
    padding: 5px 12px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.layer-card__figure {
    margin: 0;
    padding: 6px 18px 0;
}

.layer-card__figure img {
    display: block;
    width: 100%;
    height: auto;
}

.layer-card__list {
    display: grid;
    gap: 0;
    padding: 4px 24px 22px;
    margin: 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    list-style: none;
    counter-reset: layer;
}

.layer-card__list li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 10px 0 0;
    border-top: 2px solid rgba(16, 20, 16, 0.13);
}

.layer-card__list li:first-child {
    border-top-color: var(--lime-deep);
}

.layer-card__list span {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.layer-card__list small {
    color: rgba(16, 20, 16, 0.55);
    font-size: 11px;
    line-height: 1.35;
}

@media (max-width: 1180px) {
    .quality-note {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }
}

@media (max-width: 760px) {
    .quality-note {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .layer-card__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 18px;
    }
}

@media (max-width: 420px) {
    .layer-card__list {
        grid-template-columns: 1fr;
    }
}
