:root {
    color-scheme: light;
    --background: #f2eadc;
    --surface: #fbf7ef;
    --surface-muted: #e7ddcd;
    --ink: #15130f;
    --ink-soft: #2a251c;
    --text-muted: #625d55;
    --gold: #c99b4d;
    --gold-dark: #765527;
    --border: rgba(21, 19, 15, 0.14);
    --border-inverse: rgba(251, 247, 239, 0.18);
    --page-gutter: clamp(1.25rem, 5vw, 4.5rem);
    --section-space: clamp(5.5rem, 10vw, 9.5rem);
    --content-max: 80rem;
    --text-max: 42.5rem;
    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2.25rem;
    --shadow-soft: 0 1.5rem 4rem rgba(21, 19, 15, 0.08);
    --font-sans: Inter, Aptos, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Arial Nova', Aptos, var(--font-sans);
}

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

html {
    min-width: 20rem;
    color: var(--ink);
    background: var(--background);
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    min-width: 20rem;
    min-height: 100vh;
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--background);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

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

button {
    font: inherit;
}

p,
h1,
h2,
h3,
dl,
dd,
blockquote,
figure {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

address {
    font-style: normal;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    text-wrap: balance;
}

h1 {
    max-width: 14ch;
    font-size: clamp(3rem, 6.5vw, 6.75rem);
    font-weight: 760;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

h2 {
    max-width: 15ch;
    font-size: clamp(2.5rem, 4.6vw, 4.75rem);
    font-weight: 740;
    letter-spacing: -0.055em;
    line-height: 1;
}

h3 {
    font-size: clamp(1.45rem, 2.2vw, 2.2rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
}

p {
    max-width: 65ch;
}

.container {
    width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.8rem 1rem;
    color: var(--surface);
    background: var(--ink);
    border-radius: var(--radius-sm);
    transform: translateY(-160%);
}

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

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

.icon {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.sparkle {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    color: var(--gold);
}

.sparkle::before,
.sparkle::after {
    position: absolute;
    inset: 0;
    background: currentColor;
    content: '';
}

.sparkle::before {
    clip-path: polygon(50% 0, 59% 41%, 100% 50%, 59% 59%, 50% 100%, 41% 59%, 0 50%, 41% 41%);
}

.sparkle::after {
    inset: 25%;
    background: var(--surface);
    clip-path: polygon(50% 0, 59% 41%, 100% 50%, 59% 59%, 50% 100%, 41% 59%, 0 50%, 41% 41%);
}

.sparkle-tiny {
    width: 0.75rem;
    height: 0.75rem;
}

.sparkle-small {
    width: 1.4rem;
    height: 1.4rem;
}

.sparkle-large {
    width: 4.5rem;
    height: 4.5rem;
}

.eyebrow,
.section-marker {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    max-width: none;
    margin-bottom: 1.4rem;
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.72rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 760;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    transition:
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.button .icon,
.text-link .icon,
.contact-action > .icon {
    transition: transform 180ms ease;
}

.button:hover .icon,
.text-link:hover .icon,
.contact-action:hover > .icon {
    transform: translateX(0.2rem);
}

.button:active {
    transform: translateY(1px);
}

.button[aria-disabled='true'],
.button:disabled,
.button.is-loading {
    cursor: not-allowed;
    opacity: 0.52;
    pointer-events: none;
}

.button-primary {
    color: var(--surface);
    background: var(--ink);
}

.button-primary:hover {
    background: var(--ink-soft);
}

.button-accent {
    color: var(--ink);
    background: var(--gold);
}

.button-accent:hover {
    background: #d6aa60;
}

.button-secondary {
    color: var(--ink);
    background: transparent;
    border-color: var(--border);
}

.button-secondary:hover {
    background: var(--surface);
    border-color: rgba(21, 19, 15, 0.28);
}

.text-link {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    min-height: 2.75rem;
    color: inherit;
    font-size: 0.95rem;
    font-weight: 740;
    text-decoration: underline;
}

/* Header */

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    color: var(--ink);
    background: rgba(242, 234, 220, 0.82);
    border-bottom: 1px solid transparent;
    transition:
        background-color 240ms ease,
        border-color 240ms ease,
        backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
    background: rgba(251, 247, 239, 0.92);
    border-color: var(--border);
    backdrop-filter: blur(1rem);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    min-height: 5rem;
}

.header-brand {
    display: block;
    width: 7.4rem;
    height: 3.8rem;
    padding: 0.25rem 0.45rem;
    background: var(--ink);
    border-radius: var(--radius-sm);
}

.header-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    gap: clamp(1rem, 2vw, 2rem);
    align-items: center;
    justify-content: center;
}

.desktop-nav a,
.footer-column a {
    position: relative;
    min-height: 2.75rem;
    color: inherit;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 2.75rem;
    text-decoration: none;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0.42rem;
    left: 0;
    height: 1px;
    background: var(--gold-dark);
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.header-cta {
    min-height: 2.75rem;
    padding-inline: 0.95rem;
    font-size: 0.8rem;
}

.locale-switcher {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.locale-switcher a,
.locale-switcher > span {
    display: grid;
    min-width: 2.4rem;
    min-height: 2.75rem;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    border-radius: calc(var(--radius-sm) - 0.2rem);
}

.locale-switcher > span {
    color: var(--surface);
    background: var(--ink);
}

.locale-switcher a:hover {
    background: var(--surface-muted);
}

/* Hero */

.hero {
    min-height: clamp(42rem, 78vh, 50rem);
    padding-top: clamp(4.5rem, 9vw, 8rem);
    overflow: hidden;
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(21, 19, 15, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 19, 15, 0.04) 1px, transparent 1px);
    background-size: 4rem 4rem;
    content: '';
    mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.hero-copy {
    grid-column: 1 / span 7;
}

.hero h1 {
    max-width: 12ch;
}

.hero-description {
    max-width: 37rem;
    margin-top: 1.75rem;
    color: var(--text-muted);
    font-size: clamp(1.1rem, 1.7vw, 1.3rem);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.trust-line {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    margin-top: 1.75rem;
    color: var(--ink-soft);
    font-size: 0.87rem;
    font-weight: 650;
}

.brand-signature {
    margin-top: 1rem;
    color: var(--gold-dark);
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
}

.hero-media {
    grid-column: 8 / -1;
}

.product-visual {
    position: relative;
    min-height: 32rem;
    isolation: isolate;
}

.product-visual::before {
    position: absolute;
    z-index: -2;
    inset: 7% -15% 3% 3%;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    content: '';
    transform: rotate(2deg);
}

.product-window {
    position: absolute;
    inset: 3.5rem 0 3rem 2rem;
    overflow: hidden;
    color: var(--surface);
    background: var(--ink);
    border: 1px solid rgba(201, 155, 77, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.window-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    min-height: 3.2rem;
    padding: 0 1rem;
    color: rgba(251, 247, 239, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-inverse);
}

.window-dots {
    display: flex;
    gap: 0.35rem;
}

.window-dots i {
    width: 0.45rem;
    height: 0.45rem;
    background: rgba(251, 247, 239, 0.3);
    border-radius: 50%;
}

.window-mark {
    display: flex;
    justify-content: flex-end;
}

.window-layout {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    min-height: 25rem;
}

.window-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    padding-top: 1.2rem;
    background: rgba(251, 247, 239, 0.04);
    border-right: 1px solid var(--border-inverse);
}

.window-sidebar span {
    width: 1.1rem;
    height: 0.25rem;
    background: rgba(251, 247, 239, 0.24);
    border-radius: 1rem;
}

.window-sidebar .sidebar-logo {
    width: 1.35rem;
    height: 1.35rem;
    margin-bottom: 0.8rem;
    background: var(--gold);
    border-radius: var(--radius-sm);
    clip-path: polygon(50% 0, 59% 41%, 100% 50%, 59% 59%, 50% 100%, 41% 59%, 0 50%, 41% 41%);
}

.window-main {
    padding: 1.5rem;
}

.window-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.window-heading small,
.window-heading strong {
    display: block;
}

.window-heading small {
    color: rgba(251, 247, 239, 0.55);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.window-heading strong {
    margin-top: 0.2rem;
    font-size: 1.15rem;
}

.window-heading > span {
    padding: 0.35rem 0.55rem;
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 740;
    border: 1px solid rgba(201, 155, 77, 0.35);
    border-radius: var(--radius-sm);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 18rem;
    border-top: 1px solid var(--border-inverse);
    border-left: 1px solid var(--border-inverse);
}

.calendar-grid > span {
    min-width: 0;
    border-right: 1px solid var(--border-inverse);
    border-bottom: 1px solid var(--border-inverse);
}

.calendar-item {
    position: relative;
}

.calendar-item::after {
    position: absolute;
    inset: 0.55rem;
    background: var(--surface-muted);
    border-radius: 0.3rem;
    content: '';
}

.calendar-item-gold::after {
    background: var(--gold);
}

.calendar-item-ink::after {
    background: #675f51;
}

.calendar-item-soft::after {
    background: #d4c7b3;
}

.status-card {
    position: absolute;
    z-index: 2;
    min-width: 11.5rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 1rem 2.5rem rgba(21, 19, 15, 0.16);
}

.status-card small,
.status-card strong {
    display: block;
}

.status-card small {
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 760;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-card strong {
    margin-top: 0.2rem;
    font-size: 0.95rem;
}

.status-card-review {
    top: 0;
    right: -1rem;
}

.status-card-review > span {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.status-card-review i {
    width: 1.6rem;
    height: 0.3rem;
    background: var(--surface-muted);
    border-radius: 1rem;
}

.status-card-review i:first-child {
    background: var(--gold);
}

.status-card-approved {
    right: -1.5rem;
    bottom: 0;
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.status-card-approved > .icon {
    width: 2.1rem;
    height: 2.1rem;
    padding: 0.45rem;
    color: var(--ink);
    background: var(--gold);
    border-radius: 50%;
}

/* Positioning */

.positioning {
    color: var(--surface);
    background: var(--ink);
}

.positioning-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
}

.positioning .section-marker {
    grid-column: 1 / span 2;
    align-self: start;
    color: var(--gold);
}

.positioning-copy {
    grid-column: 3 / span 7;
}

.positioning-copy h2 {
    max-width: 14ch;
}

.positioning-copy > p {
    max-width: 39rem;
    margin-top: 2rem;
    color: rgba(251, 247, 239, 0.72);
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

.positioning blockquote {
    grid-column: 10 / -1;
    align-self: end;
    padding-top: 1rem;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.45;
    border-top: 1px solid rgba(201, 155, 77, 0.45);
}

/* Product showcase */

.product-showcase {
    background: var(--surface);
}

.product-intro {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
}

.product-intro > div:first-child {
    grid-column: 1 / span 7;
}

.product-intro-copy {
    grid-column: 8 / -1;
    align-self: end;
}

.product-intro-copy > p:first-child {
    color: var(--text-muted);
    font-size: 1.15rem;
}

.relationship-statement {
    margin-top: 1rem;
    padding-left: 1rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 700;
    border-left: 3px solid var(--gold);
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    align-items: center;
    margin-top: 1.6rem;
}

.product-system {
    display: grid;
    grid-template-columns: minmax(16rem, 0.78fr) minmax(0, 1.22fr);
    margin-top: clamp(3.5rem, 7vw, 6rem);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.product-brand-panel {
    padding: clamp(2rem, 5vw, 4.5rem);
    color: var(--surface);
    background: var(--ink);
}

.product-brand-panel img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.product-brand-panel > p {
    margin-top: 2.5rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-brand-panel ul {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.2rem;
    list-style: none;
}

.product-brand-panel li {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    color: rgba(251, 247, 239, 0.78);
    font-size: 0.92rem;
}

.product-brand-panel li .icon {
    width: 1rem;
    color: var(--gold);
}

.workflow-flow {
    display: grid;
    background: linear-gradient(rgba(21, 19, 15, 0.035) 1px, transparent 1px), var(--background);
    background-size: 100% 4rem;
    list-style: none;
}

.workflow-flow li {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1.4rem;
    align-items: center;
    padding: 1.35rem clamp(1.5rem, 4vw, 3rem);
    border-bottom: 1px solid var(--border);
    transition:
        padding-left 220ms ease,
        background-color 220ms ease;
}

.workflow-flow li:last-child {
    border-bottom: 0;
}

.workflow-flow li:hover {
    padding-left: calc(clamp(1.5rem, 4vw, 3rem) + 0.45rem);
    background: rgba(251, 247, 239, 0.58);
}

.workflow-flow span {
    color: var(--gold-dark);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 760;
}

.workflow-flow strong {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.7rem);
}

/* Principles */

.principles {
    background: var(--background);
}

.section-heading {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
}

.section-heading .eyebrow {
    grid-column: 1 / span 3;
}

.section-heading h2 {
    grid-column: 4 / span 7;
}

.principle-list {
    margin-top: clamp(3rem, 6vw, 5rem);
    list-style: none;
    border-top: 1px solid var(--border);
}

.principle-list li {
    display: grid;
    grid-template-columns: 1fr 4fr 4fr;
    gap: 2rem;
    align-items: start;
    padding-block: clamp(1.75rem, 3.5vw, 3rem);
    border-bottom: 1px solid var(--border);
}

.principle-list > li > span {
    color: var(--gold-dark);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 780;
}

.principle-list p {
    color: var(--text-muted);
}

/* Credibility */

.credibility {
    background: var(--surface-muted);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 6rem);
}

.credibility-heading {
    grid-column: 1 / span 6;
}

.credibility-heading > p:last-child {
    max-width: 36rem;
    margin-top: 1.8rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.fact-list {
    grid-column: 7 / -1;
    border-top: 1px solid var(--border);
}

.fact-list > div {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 1.5rem;
    padding-block: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.fact-list dt {
    font-weight: 760;
}

.fact-list dd {
    color: var(--text-muted);
}

/* About */

.about {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 6rem);
}

.about-copy {
    grid-column: 1 / span 7;
}

.about-copy .body-large {
    margin-top: 2rem;
    color: var(--ink-soft);
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

.about-copy > p:not(.eyebrow, .body-large, .relationship-statement) {
    margin-top: 1.2rem;
    color: var(--text-muted);
}

.relationship-dark {
    margin-top: 1.5rem;
}

.identity-panel {
    grid-column: 8 / -1;
    align-self: start;
    padding: clamp(1.75rem, 4vw, 3rem);
    color: var(--surface);
    background: var(--ink-soft);
    border-radius: var(--radius-lg);
}

.identity-mark {
    margin-bottom: 4rem;
}

.identity-panel > p {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.identity-address,
.footer-address,
.company-identity-block address,
.legal-identity-panel address {
    display: grid;
    line-height: 1.55;
}

.identity-address {
    margin-top: 1.5rem;
    color: rgba(251, 247, 239, 0.78);
}

.identity-address strong {
    margin-bottom: 0.4rem;
    color: var(--surface);
}

.identity-panel > a {
    display: inline-block;
    min-height: 2.75rem;
    margin-top: 1rem;
    color: var(--surface);
    font-weight: 700;
    line-height: 2.75rem;
}

/* Contact */

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

.contact-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(2rem, 6vw, 6rem);
}

.contact-heading {
    grid-column: 1 / span 6;
}

.contact-heading .eyebrow {
    color: var(--gold);
}

.contact-heading > p:not(.eyebrow, .contact-note) {
    margin-top: 1.5rem;
    color: rgba(251, 247, 239, 0.72);
    font-size: 1.2rem;
}

.contact-note {
    margin-top: 1rem;
    color: rgba(251, 247, 239, 0.58);
    font-size: 0.88rem;
}

.contact-actions {
    grid-column: 7 / -1;
    display: grid;
    gap: 0.75rem;
}

.contact-action {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    min-height: 6.5rem;
    padding: 1.1rem 1.25rem;
    text-decoration: none;
    border: 1px solid var(--border-inverse);
    border-radius: var(--radius-md);
    transition:
        background-color 180ms ease,
        border-color 180ms ease;
}

.contact-action:hover {
    background: rgba(251, 247, 239, 0.05);
    border-color: rgba(201, 155, 77, 0.55);
}

.contact-action-icon {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    color: var(--ink);
    background: var(--gold);
    border-radius: var(--radius-sm);
    place-items: center;
}

.contact-action small,
.contact-action strong,
.contact-action em {
    display: block;
}

.contact-action small {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-action strong {
    margin-top: 0.15rem;
    font-size: 1.05rem;
}

.contact-action em {
    margin-top: 0.2rem;
    color: rgba(251, 247, 239, 0.58);
    font-size: 0.82rem;
    font-style: normal;
}

.company-identity-block {
    margin-top: 1.2rem;
    padding: 1.5rem;
    color: var(--ink);
    background: var(--surface);
    border-radius: var(--radius-md);
}

.company-identity-block address strong {
    margin-bottom: 0.4rem;
}

.company-identity-block > a {
    display: inline-block;
    min-height: 2.75rem;
    margin-top: 0.75rem;
    font-weight: 760;
    line-height: 2.75rem;
}

.company-identity-block > p {
    margin-top: 1rem;
    padding-top: 1rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    border-top: 1px solid var(--border);
}

/* Footer */

.site-footer {
    padding-top: clamp(4rem, 8vw, 7rem);
    color: var(--surface);
    background: var(--ink-soft);
    border-top: 1px solid rgba(201, 155, 77, 0.35);
}

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

.footer-brand > a {
    display: block;
    width: 9rem;
}

.footer-brand img {
    width: 100%;
    height: auto;
}

.footer-brand > p {
    max-width: 28rem;
    margin-top: 1.4rem;
    color: rgba(251, 247, 239, 0.68);
}

.footer-brand .footer-relationship {
    color: var(--gold);
    font-size: 0.82rem;
}

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

.footer-column h2 {
    max-width: none;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--surface);
}

.footer-column span {
    max-width: 17rem;
    margin-top: 0.7rem;
    color: rgba(251, 247, 239, 0.52);
    font-size: 0.78rem;
    line-height: 1.5;
}

.footer-identity {
    grid-column: 1 / -1;
    display: flex;
    gap: 2rem;
    align-items: end;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-inverse);
}

.footer-address {
    color: rgba(251, 247, 239, 0.68);
}

.footer-address strong {
    color: var(--surface);
}

.footer-identity > a {
    min-height: 2.75rem;
    font-weight: 730;
    line-height: 2.75rem;
}

.footer-bottom {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-block: 1.2rem;
    color: rgba(251, 247, 239, 0.54);
    font-size: 0.78rem;
    border-top: 1px solid var(--border-inverse);
}

.locale-switcher-footer {
    border-color: var(--border-inverse);
}

.locale-switcher-footer a:hover {
    color: var(--ink);
}

/* Legal pages */

.legal-page {
    min-height: 70vh;
    background: var(--surface);
}

.legal-layout {
    width: min(58rem, calc(100% - (2 * var(--page-gutter))));
}

.breadcrumbs {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.breadcrumbs a {
    min-height: 2.75rem;
    line-height: 2.75rem;
}

.legal-header {
    padding-block: clamp(3rem, 7vw, 6rem);
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    max-width: 13ch;
}

.legal-header > p:not(.eyebrow) {
    max-width: 42rem;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 1.15rem;
}

.legal-header > small {
    display: block;
    margin-top: 1.2rem;
    color: var(--text-muted);
}

.legal-content {
    display: grid;
    gap: 0;
}

.legal-content > section {
    padding-block: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    max-width: none;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    letter-spacing: -0.035em;
}

.legal-content p {
    margin-top: 1rem;
    color: var(--text-muted);
}

.legal-identity-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: end;
    margin-top: 1.8rem;
    padding: 1.5rem;
    color: var(--surface);
    background: var(--ink);
    border-radius: var(--radius-md);
}

.legal-identity-panel address strong {
    margin-bottom: 0.35rem;
}

.legal-identity-panel > a {
    min-height: 2.75rem;
    font-weight: 740;
    line-height: 2.75rem;
}

.legal-identity-panel > p {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 1rem;
    color: rgba(251, 247, 239, 0.68);
    font-size: 0.82rem;
    border-top: 1px solid var(--border-inverse);
}

/* Progressive motion */

html.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(1.15rem);
    transition:
        opacity 480ms ease,
        transform 480ms ease;
}

html.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.status-card {
    animation: visual-float 6s ease-in-out infinite;
}

.status-card-approved {
    animation-delay: -2.5s;
}

@keyframes visual-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.35rem);
    }
}

/* Responsive */

@media (max-width: 68rem) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .header-inner {
        grid-template-columns: auto 1fr;
    }

    .header-actions {
        justify-self: end;
    }

    .hero-grid {
        gap: 2.5rem;
    }

    .hero-copy {
        grid-column: 1 / span 7;
    }

    .hero-media {
        grid-column: 8 / -1;
    }

    .product-visual {
        min-height: 28rem;
    }

    .product-window {
        left: 0;
    }

    .status-card-review {
        right: 0;
    }

    .status-card-approved {
        right: -0.5rem;
    }

    .positioning .section-marker {
        grid-column: 1 / span 3;
    }

    .positioning-copy {
        grid-column: 4 / -1;
    }

    .positioning blockquote {
        grid-column: 4 / span 6;
        margin-top: 2rem;
    }

    .product-intro > div:first-child {
        grid-column: 1 / span 6;
    }

    .product-intro-copy {
        grid-column: 7 / -1;
    }

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

    .footer-column:nth-of-type(4) {
        grid-column: 2 / -1;
    }
}

@media (max-width: 52rem) {
    :root {
        --section-space: clamp(4.5rem, 12vw, 6.5rem);
    }

    h1 {
        font-size: clamp(3rem, 11vw, 5rem);
    }

    .hero {
        min-height: auto;
        padding-top: 4rem;
    }

    .hero-grid,
    .positioning-grid,
    .product-intro,
    .section-heading,
    .credibility-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .hero-copy,
    .hero-media,
    .positioning .section-marker,
    .positioning-copy,
    .positioning blockquote,
    .product-intro > div:first-child,
    .product-intro-copy,
    .section-heading .eyebrow,
    .section-heading h2,
    .credibility-heading,
    .fact-list,
    .about-copy,
    .identity-panel,
    .contact-heading,
    .contact-actions {
        grid-column: 1 / -1;
    }

    .hero-media {
        margin-top: 1.5rem;
    }

    .product-visual {
        min-height: 30rem;
        max-width: 38rem;
        margin-inline: auto;
    }

    .positioning blockquote {
        max-width: 31rem;
    }

    .product-intro-copy {
        margin-top: 1rem;
    }

    .product-system {
        grid-template-columns: 1fr;
    }

    .product-brand-panel {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.5rem 2.5rem;
        align-items: start;
    }

    .product-brand-panel > p,
    .product-brand-panel ul {
        grid-column: 2;
    }

    .product-brand-panel > p {
        margin-top: 0;
    }

    .product-brand-panel ul {
        margin-top: -0.8rem;
    }

    .section-heading h2 {
        max-width: 14ch;
    }

    .principle-list li {
        grid-template-columns: 3rem 1fr;
    }

    .principle-list p {
        grid-column: 2;
    }

    .fact-list {
        margin-top: 1rem;
    }

    .identity-panel,
    .contact-actions {
        margin-top: 1rem;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:nth-of-type(4) {
        grid-column: auto;
    }
}

@media (max-width: 36rem) {
    :root {
        --page-gutter: 1.1rem;
    }

    .header-inner {
        min-height: 4.5rem;
    }

    .header-brand {
        width: 6.2rem;
        height: 3.2rem;
    }

    .hero {
        padding-top: 3rem;
        padding-bottom: 4rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .trust-line {
        align-items: flex-start;
    }

    .product-visual {
        min-height: 21rem;
    }

    .product-window {
        inset: 2rem 0 2rem 0;
    }

    .window-layout {
        grid-template-columns: 2.5rem 1fr;
        min-height: 18.5rem;
    }

    .window-main {
        padding: 1rem;
    }

    .calendar-grid {
        min-height: 12rem;
    }

    .status-card {
        min-width: 9.5rem;
        padding: 0.8rem;
    }

    .status-card-review {
        top: -0.5rem;
    }

    .status-card-approved {
        bottom: -0.25rem;
    }

    .positioning blockquote {
        grid-column: 1 / -1;
    }

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

    .product-actions .button {
        width: 100%;
    }

    .product-brand-panel {
        grid-template-columns: 1fr;
    }

    .product-brand-panel img {
        width: 8rem;
        height: 8rem;
    }

    .product-brand-panel > p,
    .product-brand-panel ul {
        grid-column: 1;
    }

    .product-brand-panel ul {
        margin-top: 0;
    }

    .workflow-flow li {
        grid-template-columns: 2.5rem 1fr;
        gap: 0.7rem;
    }

    .principle-list li {
        grid-template-columns: 2.4rem 1fr;
        gap: 1rem;
    }

    .fact-list > div {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .contact-action {
        grid-template-columns: auto 1fr;
    }

    .contact-action > .icon {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.2rem;
    }

    .footer-brand,
    .footer-identity {
        grid-column: 1 / -1;
    }

    .footer-identity,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-column:nth-of-type(4) {
        grid-column: 1 / -1;
    }

    .legal-identity-panel {
        grid-template-columns: 1fr;
    }

    .legal-identity-panel > p {
        grid-column: 1;
    }
}

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

    html.reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .site-footer,
    .skip-link {
        display: none;
    }

    .section {
        padding-block: 2rem;
    }

    body,
    .legal-page {
        color: #000;
        background: #fff;
    }
}
