:root {
    --navy: #071f49;
    --navy-2: #0c3169;
    --teal: #007889;
    --teal-2: #0aa4ad;
    --gold: #b8872a;
    --ink: #102033;
    --muted: #5e6b7a;
    --line: #d9e3ea;
    --soft: #f3f8fa;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(7, 31, 73, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
    line-height: 1.8;
    background: var(--white);
    letter-spacing: 0;
}

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

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

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

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(217, 227, 234, 0.7);
    backdrop-filter: blur(16px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 28px rgba(7, 31, 73, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: var(--navy);
    font-weight: 700;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 8px;
    font-family: Georgia, serif;
    font-size: 19px;
    line-height: 1;
}

.brand-name {
    font-size: 13px;
    line-height: 1.35;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.site-nav a {
    position: relative;
    padding: 6px 0;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

.site-nav .nav-contact {
    padding: 9px 14px;
    color: var(--white);
    background: var(--navy);
    border-radius: 8px;
}

.site-nav .nav-contact::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.nav-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
}

.hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: min(720px, calc(100svh - 56px));
    padding: 134px 0 64px;
    overflow: hidden;
    background: #f8f7f1;
}

.hero__image {
    --hero-overlay: linear-gradient(90deg, rgba(248, 247, 241, 0.98) 0%, rgba(248, 247, 241, 0.9) 38%, rgba(248, 247, 241, 0.38) 66%, rgba(248, 247, 241, 0.12) 100%);
    position: absolute;
    inset: 0;
    background-image: var(--hero-overlay), url("../img/hero-experience.jpg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

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

.eyebrow {
    margin: 0 0 14px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--navy);
    line-height: 1.35;
}

h1 {
    max-width: 760px;
    font-size: 50px;
}

.hero__lead {
    max-width: 660px;
    margin: 24px 0 0;
    color: #263b54;
    font-size: 18px;
    font-weight: 600;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.3;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

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

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

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

.proof-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    gap: 1px;
    margin: 46px 0 0;
    padding: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(7, 31, 73, 0.08);
}

.proof-list div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
}

.proof-list dt {
    color: var(--navy);
    font-size: 22px;
    font-weight: 800;
}

.proof-list dd {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.section {
    padding: 92px 0;
}

.section--tint {
    background: var(--soft);
}

.section--intro {
    padding-top: 86px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 64px;
    align-items: start;
}

.section-heading h2 {
    font-size: 34px;
}

.section-heading p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.section-heading .section-heading__secondary-eyebrow {
    margin: 24px 0 8px;
}

.section-heading p.section-heading__market-text {
    margin-top: 0;
}

.section-heading--center {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading--center p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
}

.text-block p {
    margin: 0;
    color: #2d3e52;
    font-weight: 600;
}

.text-block p + p {
    margin-top: 18px;
}

.about-assets {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    margin-top: 40px;
}

.about-diagram {
    width: 100%;
    min-width: 0;
    margin: 0;
}

.field-diagram {
    --diagram-cx: 50%;
    --diagram-cy: 50%;
    --diagram-half: 48px;
    --diagram-gap: 18px;
    position: relative;
    width: 100%;
    aspect-ratio: 1.18;
    padding: 24px 22px;
    background: #f8f7f1;
    border: 1px solid rgba(217, 227, 234, 0.6);
    border-radius: 8px;
}

.field-diagram__label {
    position: absolute;
    z-index: 1;
    color: #e97725;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.field-diagram__label--top {
    top: 17%;
    left: var(--diagram-cx);
    transform: translateX(-50%);
}

.field-diagram__label--left {
    top: var(--diagram-cy);
    left: calc(var(--diagram-cx) - var(--diagram-half) - var(--diagram-gap));
    transform: translate(-100%, -50%);
}

.field-diagram__label--right {
    top: var(--diagram-cy);
    left: calc(var(--diagram-cx) + var(--diagram-half) + var(--diagram-gap));
    transform: translateY(-50%);
}

.field-diagram__label--bottom {
    top: calc(var(--diagram-cy) + var(--diagram-half) + 18px);
    left: var(--diagram-cx);
    transform: translateX(-50%);
}

.field-diagram__orbit {
    position: absolute;
    top: calc(var(--diagram-cy) - var(--diagram-half));
    left: calc(var(--diagram-cx) - var(--diagram-half));
    width: calc(var(--diagram-half) * 2);
    aspect-ratio: 1;
    border: 2px solid rgba(233, 119, 37, 0.74);
    border-radius: 50%;
}

.field-diagram__node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #f8f7f1;
    border: 3px solid #e97725;
    border-radius: 50%;
}

.field-diagram__node--top {
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
}

.field-diagram__node--right {
    top: 50%;
    right: -9px;
    transform: translateY(-50%);
}

.field-diagram__node--bottom {
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
}

.field-diagram__node--left {
    top: 50%;
    left: -9px;
    transform: translateY(-50%);
}

.brand-strip {
    min-width: 0;
    overflow-x: auto;
    background: var(--white);
    border: 1px solid rgba(217, 227, 234, 0.7);
    border-radius: 8px;
}

.brand-strip img {
    width: 100%;
    max-width: none;
}

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

.concept-card,
.strength-card,
.service-card,
.market-item,
.process-step,
.case-card,
.contact-form,
.company-table,
.menu-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(7, 31, 73, 0.06);
}

.concept-card {
    padding: 24px;
}

.concept-card span,
.number,
.service-card__label {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    color: var(--white);
    background: var(--teal);
    border-radius: 8px;
    font-weight: 800;
}

.concept-card h3,
.strength-card h3,
.service-card h3,
.market-item h3,
.process-step h3 {
    font-size: 20px;
}

.concept-card p,
.strength-card p,
.service-card p,
.market-item p,
.process-step p,
.case-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
}

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

.strength-card {
    padding: 26px;
}

.strength-visual {
    margin-top: 34px;
}

.strength-visual img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.number {
    background: var(--navy);
}

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

.service-card {
    padding: 28px;
}

.service-card h3 small {
    display: block;
    margin-top: 3px;
    color: var(--teal);
    font-size: 16px;
}

.service-card ul,
.contact-points {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li,
.contact-points li {
    position: relative;
    padding-left: 18px;
    color: #33475d;
    font-size: 14px;
    font-weight: 700;
}

.service-card li + li,
.contact-points li + li {
    margin-top: 8px;
}

.service-card li::before,
.contact-points li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--gold);
    border-radius: 999px;
}

.menu-panel {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 30px;
    margin-top: 22px;
    padding: 28px;
}

.menu-panel h3 {
    font-size: 24px;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin: 0;
    padding-left: 22px;
    color: #263b54;
    font-size: 14px;
    font-weight: 700;
}

.service-scenes {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 0.95fr;
    gap: 18px;
    margin-top: 24px;
}

.service-scenes img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.markets {
    overflow: hidden;
}

.market-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) 300px;
    gap: 36px 54px;
    align-items: center;
}

.market-copy h2 {
    font-size: 34px;
}

.market-copy p {
    margin: 18px 0 0;
    font-weight: 600;
}

.market-visual {
    position: relative;
}

.market-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.market-item {
    padding: 22px;
}

.section--deep {
    color: var(--white);
    background: var(--navy);
}

.section--deep h2,
.section--deep h3,
.section--deep .eyebrow {
    color: var(--white);
}

.section--deep .section-heading p:not(.eyebrow) {
    color: #c4d6e6;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.process-step {
    position: relative;
    min-height: 260px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.96);
}

.process-step span {
    display: block;
    margin-bottom: 14px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
}

.section--deep .process-step h3 {
    color: var(--navy);
}

.case-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 54px;
    align-items: start;
}

.case-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: var(--line);
    overflow: hidden;
}

.case-card > div {
    padding: 26px;
    background: var(--white);
}

.case-card__label {
    display: inline-block;
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
}

.case-scenes {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.case-scenes__grid img,
.people-visuals img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.case-overview {
    min-width: 0;
    padding: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.case-overview__heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.case-overview__heading span {
    color: #f06b00;
    font-size: 15px;
    font-weight: 900;
}

.case-overview__heading h3 {
    font-size: 24px;
}

.case-overview__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
    min-width: 0;
}

.case-note {
    position: relative;
    min-width: 0;
    min-height: 410px;
    padding: 54px 22px 24px;
    background: #ffffff;
    border: 5px solid #9e9e9e;
    border-radius: 8px;
    box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08), 0 16px 26px rgba(7, 31, 73, 0.12);
}

.case-note::before {
    position: absolute;
    top: 12px;
    right: 18px;
    left: 18px;
    height: 18px;
    content: "";
    background-image: radial-gradient(circle, #b9b9b9 0 5px, transparent 5.6px);
    background-position: left center;
    background-repeat: repeat-x;
    background-size: 24px 18px;
}

.case-note h4 {
    margin: 0 0 20px;
    padding: 8px 12px;
    color: #ffffff;
    background: linear-gradient(90deg, #ff8a18, #ff6b00);
    border-radius: 3px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
}

.case-note p,
.case-note li {
    color: #263b54;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.case-note p {
    margin: 0;
}

.case-note p + p,
.case-note li + li {
    margin-top: 12px;
}

.case-note ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.case-note li {
    position: relative;
    padding-left: 1.2em;
}

.case-note li::before {
    position: absolute;
    left: 0;
    content: "・";
    font-weight: 900;
}

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

.case-scenes__grid img {
    height: 240px;
}

.people-section {
    overflow: hidden;
}

.people-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 54px;
    align-items: center;
}

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

.people-visuals__wide {
    grid-column: 1 / -1;
    height: 300px;
}

.people-visuals img:not(.people-visuals__wide) {
    height: 360px;
}

.company-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.company-table {
    overflow: hidden;
}

.company-table dl {
    margin: 0;
}

.company-table div {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
    border-bottom: 0;
}

.company-table dt,
.company-table dd {
    margin: 0;
    padding: 18px 22px;
}

.company-table dt {
    color: var(--navy);
    background: #eaf3f6;
    font-weight: 900;
}

.company-table dd {
    color: #263b54;
    background: var(--white);
    font-weight: 700;
}

.contact-section {
    background: linear-gradient(135deg, #071f49 0%, #0b2f66 58%, #007889 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.contact-copy h2,
.contact-copy .eyebrow {
    color: var(--white);
}

.contact-copy p,
.contact-points li {
    color: #d6e5ef;
    font-weight: 600;
}

.contact-copy p {
    margin: 18px 0 0;
}

.contact-form {
    padding: 30px;
}

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

.contact-form label {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    color: var(--navy);
    font-weight: 900;
}

.form-grid label {
    margin-top: 0;
}

.contact-form em {
    color: #b1423b;
    font-size: 12px;
    font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--ink);
    background: #fbfdfe;
    border: 1px solid #cbd8e0;
    border-radius: 8px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 120, 137, 0.12);
}

.checkbox-label {
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    font-weight: 700;
}

.checkbox-label input {
    width: 18px;
    min-height: 18px;
    margin-top: 5px;
}

.form-hidden {
    position: absolute;
    left: -9999px;
}

.form-message {
    margin: 0 0 18px;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.form-message--success {
    color: #0d5a35;
    background: #e8f7ef;
    border: 1px solid #bfe5cf;
}

.form-message--error {
    color: #8a2c26;
    background: #fff0ee;
    border: 1px solid #f0c6c1;
}

.contact-form .button {
    margin-top: 22px;
}

.contact-form.is-submitting {
    opacity: 0.72;
    pointer-events: none;
}

.site-footer {
    padding: 32px 0;
    background: #061832;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #d4e0ea;
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1040px) {
    .site-nav {
        gap: 14px;
        font-size: 13px;
    }

    h1 {
        font-size: 42px;
    }

    .concept-grid,
    .strength-grid,
    .market-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid,
    .process-line,
    .service-scenes,
    .case-scenes,
    .people-layout {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: auto;
    }

    .menu-panel,
    .about-assets,
    .company-layout,
    .case-layout,
    .contact-layout,
    .market-layout,
    .split {
        grid-template-columns: minmax(0, 1fr);
    }

    .market-visual {
        max-width: 360px;
    }

    .strength-visual img,
    .people-visuals__wide {
        height: 300px;
    }

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

    .case-note {
        min-height: 340px;
    }

    .service-scenes img {
        height: 260px;
    }
}

@media (max-width: 820px) {
    .header-inner {
        min-height: 68px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 68px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

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

    .site-nav a {
        padding: 12px;
    }

    .site-nav .nav-contact {
        text-align: center;
    }

    .hero {
        min-height: 640px;
        padding: 112px 0 48px;
    }

    .hero__image {
        --hero-overlay: linear-gradient(90deg, rgba(248, 247, 241, 0.99) 0%, rgba(248, 247, 241, 0.94) 62%, rgba(248, 247, 241, 0.62) 100%);
        background-position: 65% center;
    }

    h1 {
        font-size: 36px;
    }

    .hero__lead {
        font-size: 16px;
    }

    .proof-list,
    .form-grid,
    .case-card,
    .case-scenes__grid,
    .case-overview__cards,
    .company-table div,
    .menu-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .case-overview {
        padding: 22px;
    }

    .case-note {
        min-height: auto;
    }

    .case-scenes__grid img,
    .people-visuals img:not(.people-visuals__wide) {
        height: 280px;
    }

    .section {
        padding: 70px 0;
    }

    .section-heading h2,
    .market-copy h2 {
        font-size: 28px;
    }

    .about-diagram {
        max-width: 320px;
        margin-inline: auto;
    }

    .field-diagram__label {
        font-size: 20px;
    }

    .brand-strip img {
        width: 720px;
    }

    .company-table dt,
    .company-table dd {
        padding: 14px 16px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .brand-name {
        font-size: 12px;
    }

    .hero {
        min-height: 620px;
    }

    h1 {
        font-size: 31px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .concept-grid,
    .strength-grid,
    .market-list,
    .people-visuals {
        grid-template-columns: minmax(0, 1fr);
    }

    .strength-visual img,
    .service-scenes img,
    .case-scenes__grid img,
    .people-visuals__wide,
    .people-visuals img:not(.people-visuals__wide) {
        height: 240px;
    }

    .case-overview {
        padding: 16px;
    }

    .case-overview__heading h3 {
        font-size: 20px;
    }

    .case-note {
        padding: 50px 18px 20px;
        border-width: 4px;
    }

    .field-diagram__label {
        font-size: 19px;
    }

    .field-diagram {
        --diagram-cx: 50%;
        --diagram-half: 42px;
        --diagram-gap: 14px;
        padding: 22px 16px;
    }

    .contact-form {
        padding: 22px;
    }

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