:root {
    --navy: #0D1F3C;
    --navy-strong: #0A1730;
    --white: #FFFFFF;
    --light: #F8F7F4;
    --line: #D6DBE3;
    --text: #142033;
    --muted: #5D6778;
    --logistics: #1D9E75;
    --logistics-soft: rgba(29, 158, 117, 0.12);
    --housekeeping: #534AB7;
    --housekeeping-soft: rgba(83, 74, 183, 0.12);
    --retail: #0D7F5F;
    --retail-light: #E6F4F0;
    --retail-mid: #0B6E52;
    --retail-soft: rgba(13, 127, 95, 0.12);
    --shell: 1200px;
    --radius: 28px;
    --header-height: 88px;
    --shadow: 0 18px 48px rgba(13, 31, 60, 0.08);
    --shadow-deep: 0 28px 64px rgba(13, 31, 60, 0.14);
    --font-display: 'Fraunces', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

.narrow {
    max-width: 760px;
}

/* ─── Header ─────────────────────────────────────── */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(214, 219, 227, 0.8);
    transition: box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(13, 31, 60, 0.06);
    background: rgba(255, 255, 255, 0.97);
}

.header-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

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

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 6px;
}

.brand-copy strong {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
}

.brand-copy span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

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

.site-nav a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--muted);
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 2px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--navy);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-nav a.is-active::after {
    background: var(--navy);
    height: 2.5px;
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.nav-toggle:hover {
    border-color: var(--navy);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--navy);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ─── Hero ───────────────────────────────────────── */

.hero,
.subhero {
    position: relative;
    overflow: hidden;
}

.hero-home {
    padding: calc(var(--header-height) + 56px) 0 72px;
    min-height: calc(100svh - 16px);
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(83, 74, 183, 0.2), transparent),
        radial-gradient(ellipse 50% 60% at 10% 70%, rgba(29, 158, 117, 0.18), transparent),
        linear-gradient(150deg, #0A1730 0%, #0D1F3C 60%, #101828 100%);
    color: var(--white);
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
    z-index: 0;
}

/* Geometric dot grid pattern */
.hero-home::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 0%, transparent 70%);
}

.subhero::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(13, 31, 60, 0.06);
    pointer-events: none;
}

.hero-aurora {
    display: none;
}

.hero-shell,
.subhero-shell {
    position: relative;
    z-index: 1;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
    gap: 48px;
    align-items: end;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow,
.section-label,
.panel-kicker,
.mini-label,
.service-tag {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.72);
}

.accent-text-logistics {
    color: var(--logistics);
}

.accent-text-housekeeping {
    color: var(--housekeeping);
}

/* ─── Typography ─────────────────────────────────── */

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

h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6.5vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
    font-weight: 800;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    line-height: 1.0;
    letter-spacing: -0.02em;
    font-weight: 800;
}

h3 {
    font-size: clamp(1.2rem, 4.5vw, 1.5rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.lede,
.section-intro,
.section-side,
.detail-copy p,
.cta-actions p,
.contact-primary p,
.contact-card p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: inherit;
}

.hero-copy .lede {
    max-width: 600px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* ─── Buttons ────────────────────────────────────── */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13, 31, 60, 0.14);
}

.button-primary {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
    background: transparent;
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

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

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

/* ─── Hero Panel ─────────────────────────────────── */

.hero-panel {
    padding: 32px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.panel-kicker {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-metric-grid {
    display: grid;
    gap: 24px;
}

.hero-metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-metric-grid strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--white);
}

.hero-metric-grid span {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
}

/* ─── Subhero ────────────────────────────────────── */

.subhero {
    padding: calc(var(--header-height) + 48px) 0 56px;
    background: linear-gradient(180deg, var(--white), var(--light));
}

.subhero-copy {
    max-width: 760px;
}

.subhero .eyebrow {
    color: var(--navy);
}

.subhero .lede {
    margin-top: 24px;
    color: var(--muted);
}

/* ─── Sections ───────────────────────────────────── */

.section {
    padding: 96px 0;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background:
        radial-gradient(circle at 6% 18%, rgba(29, 158, 117, 0.12), transparent 30%),
        radial-gradient(circle at 94% 82%, rgba(83, 74, 183, 0.12), transparent 28%),
        var(--navy);
    color: var(--white);
}

.section-dark .section-label-light,
.cta-section .section-label-light {
    color: rgba(255, 255, 255, 0.65);
}

.section-dark .section-side-light {
    color: rgba(255, 255, 255, 0.72);
}

.section-label {
    margin-bottom: 18px;
    color: var(--muted);
}

.section-intro {
    margin-top: 22px;
    color: var(--muted);
}

.section-intro + .section-intro {
    margin-top: 18px;
}

/* ─── Manifesto Editorial ────────────────────────── */

.manifesto-editorial {
    position: relative;
    padding-left: 32px;
}

.manifesto-editorial::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(to bottom, var(--logistics), var(--housekeeping));
    border-radius: 2px;
}

.manifesto-editorial h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    color: var(--navy);
    margin-bottom: 28px;
}

.manifesto-pullquote {
    font-size: 1.18rem;
    line-height: 1.72;
    color: var(--text);
    font-weight: 500;
}

.manifesto-pullquote + p {
    margin-top: 18px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--muted);
}

/* ─── Grid Layouts ───────────────────────────────── */

.split-heading,
.detail-grid,
.about-grid,
.contact-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: start;
}

.split-heading {
    margin-bottom: 44px;
}

.section-side,
.detail-copy p,
.about-copy p {
    color: var(--muted);
}

.detail-copy,
.about-copy {
    display: grid;
    gap: 18px;
}

.service-columns,
.feature-grid,
.process-grid,
.case-grid,
.two-column-lines {
    display: grid;
    gap: 24px;
}

/* ─── Service Cards ──────────────────────────────── */

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

.service-column,
.feature-block,
.case-row,
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.service-column {
    padding: 32px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.service-column::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accent-logistics {
    border-top: 4px solid var(--logistics);
}

.accent-housekeeping {
    border-top: 4px solid var(--housekeeping);
}

.service-column.accent-logistics::after {
    background: var(--logistics);
}

.service-column.accent-housekeeping::after {
    background: var(--housekeeping);
}

.service-column:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 31, 60, 0.14);
}

.service-column.accent-logistics:hover {
    box-shadow: 0 20px 48px rgba(29, 158, 117, 0.14);
}

.service-column.accent-housekeeping:hover {
    box-shadow: 0 20px 48px rgba(83, 74, 183, 0.14);
}

.service-tag {
    margin-bottom: 18px;
}

.service-column h3,
.feature-block h3,
.process-step h3,
.case-meta h3,
.contact-primary h2 {
    margin-bottom: 14px;
}

.line-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.line-list li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.65;
}

.line-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 10px;
    height: 2px;
    background: var(--navy);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-weight: 800;
    color: var(--navy);
    transition: gap 0.2s ease, color 0.2s ease;
}

.text-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.text-link:hover {
    gap: 10px;
}

.text-link:hover::after {
    transform: translateX(2px);
}

/* ─── Feature Grid ───────────────────────────────── */

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

.feature-block {
    padding: 28px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(13, 31, 60, 0.1);
    border-color: rgba(13, 31, 60, 0.16);
}

.feature-block p,
.process-step p,
.case-grid p,
.contact-card p {
    color: var(--muted);
    line-height: 1.7;
}

.feature-dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.feature-dark:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.feature-dark p,
.feature-dark h3 {
    color: var(--white);
}

/* ─── Process Grid ───────────────────────────────── */

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

.process-step {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step span {
    display: inline-flex;
    margin-bottom: 18px;
    font-size: 0.92rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.58);
}

/* ─── Case Studies ───────────────────────────────── */

.case-stack {
    display: grid;
    gap: 24px;
}

.case-row {
    padding: 32px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.case-row:hover {
    box-shadow: var(--shadow-deep);
    transform: translateY(-3px);
}

.case-metric {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.case-metric-number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--navy);
}

.case-metric-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
    max-width: 160px;
    line-height: 1.4;
}

.pill-logistics .case-metric-number,
.case-row:has(.pill-logistics) .case-metric-number {
    color: var(--logistics);
}

.case-row:has(.pill-housekeeping) .case-metric-number {
    color: var(--housekeeping);
}

.case-metric-logistics .case-metric-number {
    color: var(--logistics);
}

.case-metric-housekeeping .case-metric-number {
    color: var(--housekeeping);
}

.case-row:has(.pill-retail) .case-metric-number {
    color: var(--retail);
}

/* ─── Retail ─────────────────────────────────────── */

.accent-text-retail { color: var(--retail); }

.pill-retail {
    background: var(--retail-light);
    color: var(--retail-mid);
}

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

.button-retail:hover {
    background: var(--retail-mid);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.case-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pill-logistics {
    color: var(--logistics);
    background: var(--logistics-soft);
}

.pill-housekeeping {
    color: var(--housekeeping);
    background: var(--housekeeping-soft);
}

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

.mini-label {
    color: var(--navy);
    margin-bottom: 10px;
}

/* ─── Testimonials ───────────────────────────────── */

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

.testimonial-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 36px 32px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-deep);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--light);
    pointer-events: none;
    user-select: none;
}

.testimonial-quote {
    font-size: 1.06rem;
    line-height: 1.72;
    color: var(--text);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.testimonial-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--navy);
}

.testimonial-role {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ─── Sectors ────────────────────────────────────── */

.sectors-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.sector-item:hover {
    border-color: rgba(13, 31, 60, 0.18);
    box-shadow: 0 10px 28px rgba(13, 31, 60, 0.07);
    transform: translateY(-2px);
}

.sector-icon {
    width: 40px;
    height: 40px;
    color: var(--navy);
    opacity: 0.75;
}

.sector-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.4;
}

/* ─── About ──────────────────────────────────────── */

.about-grid {
    align-items: center;
}

/* ─── CTA ────────────────────────────────────────── */

.cta-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(83, 74, 183, 0.22), transparent 32%),
        radial-gradient(circle at 8% 90%, rgba(29, 158, 117, 0.18), transparent 30%),
        linear-gradient(135deg, var(--navy), var(--navy-strong));
    color: var(--white);
}

.cta-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 36px;
    align-items: center;
}

.cta-actions {
    display: grid;
    gap: 22px;
}

/* ─── Contact ────────────────────────────────────── */

.contact-layout {
    gap: 28px;
}

.contact-primary {
    display: grid;
    gap: 18px;
}

.contact-link {
    display: inline-flex;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--navy);
}

.contact-detail {
    display: grid;
    gap: 18px;
}

.contact-card {
    padding: 28px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
    box-shadow: 0 16px 40px rgba(13, 31, 60, 0.1);
    transform: translateY(-3px);
}

/* ─── Contact Form ───────────────────────────────── */

.contact-form {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    font-size: 1rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235D6778' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13, 31, 60, 0.08);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.form-note {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

.form-success {
    display: none;
    padding: 20px 24px;
    border: 1px solid var(--logistics);
    border-radius: 14px;
    background: var(--logistics-soft);
    color: var(--logistics);
    font-weight: 600;
    font-size: 0.96rem;
}

.form-success.is-visible {
    display: block;
}

/* ─── Footer ─────────────────────────────────────── */

.site-footer {
    padding: 56px 0 40px;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.3fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.brand-footer img {
    width: 54px;
    height: 54px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-linkedin:hover {
    color: var(--navy);
}

.footer-col-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 14px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-nav a {
    color: var(--muted);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--navy);
}

.footer-office address {
    font-style: normal;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0 0 10px;
}

.footer-office a {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.footer-office a:hover {
    color: var(--navy);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    grid-column: 1 / -1;
    font-size: 0.8125rem;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--muted);
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--navy);
}

/* ─── Cookie Banner ───────────────────────────── */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 680px;
    background: var(--navy);
    color: var(--white);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-deep);
    z-index: 1000;
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(12px);
}

.cookie-banner.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    color: rgba(255,255,255,0.8);
}

.cookie-banner a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-accept {
    white-space: nowrap;
    background: var(--white);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}

.cookie-accept:hover {
    opacity: 0.85;
}

/* ─── Reveal Animation ───────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Stagger for grid children */
.feature-grid .feature-block:nth-child(2),
.process-grid .process-step:nth-child(2),
.process-rhythm .process-rhythm-step:nth-child(2),
.service-story .service-story-row:nth-child(2) { transition-delay: 90ms; }

.feature-grid .feature-block:nth-child(3),
.process-grid .process-step:nth-child(3),
.process-rhythm .process-rhythm-step:nth-child(3),
.service-story .service-story-row:nth-child(3) { transition-delay: 180ms; }

.feature-grid .feature-block:nth-child(4),
.feature-grid .feature-block:nth-child(5),
.feature-grid .feature-block:nth-child(6) { transition-delay: 270ms; }

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Counter ────────────────────────────────────── */

.count-up {
    display: inline;
}

/* Home Refresh */

.page-home {
    background:
        radial-gradient(circle at top left, rgba(29, 158, 117, 0.08), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #ffffff 42%, #f5f7fb 100%);
}

.page-home .site-header {
    background: rgba(255, 253, 249, 0.84);
    border-bottom-color: rgba(214, 219, 227, 0.55);
}

.page-home .hero-home {
    min-height: calc(100svh - 24px);
    padding: calc(var(--header-height) + 34px) 0 56px;
    background:
        radial-gradient(circle at 15% 18%, rgba(29, 158, 117, 0.22), transparent 26%),
        radial-gradient(circle at 85% 14%, rgba(83, 74, 183, 0.18), transparent 24%),
        linear-gradient(150deg, #0A1730 0%, #0D1F3C 65%, #101828 100%);
    color: var(--white);
}

.page-home .hero-home::before,
.page-home .hero-home::after {
    display: block;
}

.hero-home-shell {
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
}

.page-home .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.page-home .hero-copy .lede {
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
}

.page-home .hero-proof {
    border-top-color: rgba(255, 255, 255, 0.12);
}

.page-home .hero-proof strong {
    color: var(--white);
}

.page-home .hero-proof > div > span {
    color: rgba(255, 255, 255, 0.65);
}

.hero-secondary {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
    background: transparent;
}

.hero-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.72;
    pointer-events: none;
}

.hero-orb-one {
    width: 320px;
    height: 320px;
    top: 86px;
    right: 9%;
    background: rgba(29, 158, 117, 0.14);
}

.hero-orb-two {
    width: 240px;
    height: 240px;
    bottom: 72px;
    left: 4%;
    background: rgba(83, 74, 183, 0.1);
}

.hero-proof {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(13, 31, 60, 0.1);
}

.hero-proof strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--navy);
}

.hero-proof > div > span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-visual {
    position: relative;
    min-height: 640px;
}

.hero-visual-main,
.hero-visual-detail {
    position: absolute;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13, 31, 60, 0.12);
}

.hero-visual-main {
    inset: 0 40px 64px 0;
    background: linear-gradient(180deg, #ffffff, #eef3f8);
}

.hero-visual-main img,
.hero-visual-detail img,
.editorial-frame img,
.service-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-editorial-image img {
    width: 100%;
    height: 115%;
    margin-top: -7.5%;
    object-fit: cover;
    object-position: center center;
}

.hero-visual-detail {
    background: #fff;
}

.hero-visual-detail-top {
    top: 18px;
    right: 0;
    width: 230px;
    height: 220px;
}

.hero-visual-detail-bottom {
    left: 28px;
    bottom: 0;
    width: 250px;
    height: 210px;
}

.operational-band {
    overflow: hidden;
    border-top: 1px solid rgba(13, 31, 60, 0.08);
    border-bottom: 1px solid rgba(13, 31, 60, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
}

.operational-track {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: max-content;
    padding: 16px 0;
    animation: marquee 28s linear infinite;
}

.operational-track span {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    white-space: nowrap;
}

.operational-track span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--logistics), var(--housekeeping));
}

.home-intro-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.95fr);
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

.home-intro-visual {
    position: relative;
    min-height: 540px;
}

.editorial-frame {
    position: absolute;
    border-radius: 34px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-deep);
}

.editorial-frame-large {
    inset: 0 68px 34px 0;
}

.editorial-frame-small {
    width: 244px;
    height: 250px;
    right: 0;
    bottom: 0;
}

.service-story {
    display: grid;
    gap: 34px;
}

.service-story-row {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: 34px 0;
    border-top: 1px solid rgba(13, 31, 60, 0.08);
}

.service-story-row:last-child {
    border-bottom: 1px solid rgba(13, 31, 60, 0.08);
}

.service-story-row-alt {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
}

.service-story-row-alt .service-story-media {
    order: 2;
}

.service-story-row-alt .service-story-copy {
    order: 1;
}

.service-story-media {
    height: 340px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #eef3f8);
    box-shadow: 0 20px 48px rgba(13, 31, 60, 0.1);
}

.service-story-copy {
    display: grid;
    gap: 18px;
}

.service-story-copy > p:not(.service-tag) {
    color: var(--muted);
    line-height: 1.75;
}

.process-rhythm-section {
    position: relative;
    overflow: hidden;
}

.process-rhythm-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 20%, rgba(29, 158, 117, 0.16), transparent 24%),
        radial-gradient(circle at 88% 82%, rgba(83, 74, 183, 0.18), transparent 22%);
    pointer-events: none;
}

.process-rhythm {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.process-rhythm-step {
    padding: 34px 28px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.process-rhythm-step span {
    display: inline-flex;
    margin-bottom: 22px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.56);
}

.process-rhythm-step p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.case-editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(280px, 0.95fr);
    gap: 24px;
}

.case-editorial-card,
.case-editorial-image {
    min-height: 320px;
    border-radius: 32px;
    overflow: hidden;
}

.case-editorial-card {
    display: grid;
    align-content: end;
    gap: 18px;
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(13, 31, 60, 0.08);
    box-shadow: 0 20px 48px rgba(13, 31, 60, 0.08);
}

.case-editorial-number {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--navy);
}

.case-editorial-card:first-child .case-editorial-number {
    color: var(--logistics);
}

.case-editorial-card:nth-child(2) .case-editorial-number {
    color: var(--housekeeping);
}

.case-editorial-card p {
    color: var(--muted);
    line-height: 1.7;
}

.case-editorial-image {
    background: linear-gradient(180deg, #ffffff, #eef3f8);
    box-shadow: 0 20px 48px rgba(13, 31, 60, 0.08);
}

.cta-shell-light {
    padding: 42px 0 8px;
}

.cta-light-button {
    background: var(--navy);
    color: var(--white);
}

.cta-light-button:hover {
    box-shadow: 0 18px 40px rgba(13, 31, 60, 0.18);
}

/* ─── Home CTA Section ───────────────────────────── */

.home-cta-section {
    background:
        radial-gradient(circle at 12% 20%, rgba(29, 158, 117, 0.18), transparent 28%),
        radial-gradient(circle at 88% 80%, rgba(83, 74, 183, 0.2), transparent 26%),
        linear-gradient(150deg, #0A1730 0%, #0D1F3C 60%, #101828 100%);
    color: var(--white);
}

.home-cta-section .section-label {
    color: rgba(255, 255, 255, 0.55);
}

.home-cta-section .cta-shell-light {
    padding: 0;
}

.home-cta-section h2 {
    color: var(--white);
}

.home-cta-section .cta-actions p {
    color: rgba(255, 255, 255, 0.72);
}

.home-cta-section .cta-light-button {
    background: var(--white);
    color: var(--navy);
}

.home-cta-section .cta-light-button:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* ─── Service Photo Strip ────────────────────────── */

.service-photo-strip {
    height: 440px;
    overflow: hidden;
    position: relative;
}

.service-photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    transition: transform 0.6s ease;
}

.service-photo-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(13, 31, 60, 0.08) 0%,
        transparent 30%,
        transparent 70%,
        rgba(13, 31, 60, 0.12) 100%);
    pointer-events: none;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ─── Responsive ─────────────────────────────────── */

@media (max-width: 980px) {
    .hero-shell,
    .split-heading,
    .detail-grid,
    .about-grid,
    .contact-layout,
    .cta-shell,
    .service-columns,
    .feature-grid,
    .process-grid,
    .case-grid,
    .two-column-lines,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-home {
        min-height: auto;
    }

    .hero-panel {
        max-width: 560px;
    }

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

    .hero-proof,
    .home-intro-shell,
    .service-story-row,
    .service-story-row-alt,
    .process-rhythm,
    .case-editorial-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 540px;
    }

    .service-story-row-alt .service-story-media,
    .service-story-row-alt .service-story-copy {
        order: initial;
    }

    .case-editorial-image {
        min-height: 280px;
    }
}

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

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        backdrop-filter: blur(18px);
    }

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

    .site-nav a {
        padding: 10px 6px;
        min-height: 44px;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero-home,
    .subhero,
    .section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .page-home .hero-home {
        min-height: auto;
    }

    .hero-home::before,
    .subhero::before {
        inset: 12px;
    }

    .header-shell {
        min-height: 78px;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    h1 {
        font-size: clamp(2.6rem, 11vw, 4.2rem);
    }

    h2 {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .footer-shell {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .manifesto-editorial {
        padding-left: 20px;
    }

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

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

    .case-metric-number {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .page-home .hero-home {
        padding-top: 104px;
    }

    .hero-proof {
        gap: 16px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-visual-main {
        inset: 0 0 56px 0;
    }

    .hero-visual-detail-top {
        width: 172px;
        height: 164px;
    }

    .hero-visual-detail-bottom {
        left: 12px;
        width: 176px;
        height: 146px;
    }

    .home-intro-visual {
        min-height: 420px;
    }

    .editorial-frame-large {
        inset: 0 28px 26px 0;
    }

    .editorial-frame-small {
        width: 176px;
        height: 182px;
    }

    .service-story-media {
        height: 280px;
    }

    .operational-track span {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 480px) {
    .shell {
        width: min(calc(100% - 24px), var(--shell));
    }

    .hero-home,
    .subhero,
    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .sectors-strip {
        grid-template-columns: 1fr 1fr;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-visual-detail-top,
    .hero-visual-detail-bottom {
        display: none;
    }

    .home-intro-visual {
        min-height: 320px;
    }

    .editorial-frame-small {
        display: none;
    }

    .process-rhythm-step,
    .case-editorial-card {
        padding: 24px 18px;
    }

    .testimonial-card {
        padding: 24px 20px 20px;
    }

    .form-field input,
    .form-field select {
        min-height: 48px;
    }

    .footer-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .service-story-media {
        height: 220px;
    }

    .operational-track span {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .lede,
    .section-intro {
        font-size: 1rem;
    }
}

/* ─── Reduced Motion ─────────────────────────────── */

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

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

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
