.about-lawata-page {
    --about-red: #b51212;
    --about-red-dark: #760707;
    --about-gold: #ffd106;
    --about-ink: #241414;
    --about-muted: #6f5656;
    --about-cream: #fff7f0;
    --about-soft: #fff0eb;
    --about-border: rgba(124, 20, 20, 0.14);
    --about-shadow: 0 24px 54px rgba(96, 12, 12, 0.13);
    --about-ease: cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    min-height: 100vh;
    padding-top: 74px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fff7f1 0%, #fffdfa 38%, #fff1eb 100%);
    color: var(--about-ink);
}

.about-lawata-page *,
.about-lawata-page *::before,
.about-lawata-page *::after {
    box-sizing: border-box;
    min-width: 0;
}

.about-lawata-page a {
    text-decoration: none;
}

.about-hero {
    position: relative;
    min-height: calc(100svh - 74px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(95, 5, 5, 0.96) 0%, rgba(119, 10, 10, 0.9) 42%, rgba(119, 10, 10, 0.55) 100%),
        url('../images/about/img-bg.webp') center / cover no-repeat;
    color: #ffffff;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: auto -8% -46px -8%;
    height: 124px;
    background: #fff7f1;
    transform: rotate(-2deg);
    transform-origin: center;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 18%;
    right: -120px;
    width: 380px;
    height: 380px;
    border: 48px solid rgba(255, 209, 6, 0.16);
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(35deg);
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
    gap: clamp(32px, 5vw, 76px);
    align-items: center;
    padding: clamp(54px, 8vw, 96px) 0 clamp(78px, 10vw, 126px);
}

.about-kicker,
.about-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--about-gold);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-kicker::before,
.about-section-label::before {
    content: '';
    width: 24px;
    height: 4px;
    border-radius: 99px;
    background: currentColor;
}

.about-hero h1 {
    max-width: 780px;
    margin: 14px 0 18px;
    color: #ffffff;
    font-size: clamp(46px, 7vw, 92px);
    font-weight: 950;
    line-height: 0.96;
    letter-spacing: 0;
    text-wrap: balance;
}

.about-hero p {
    max-width: 670px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.65;
}

.about-hero__actions,
.about-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    transition:
        transform 0.22s var(--about-ease),
        box-shadow 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

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

.about-btn--primary {
    background: linear-gradient(135deg, var(--about-gold), #ffb000);
    color: #401212;
    box-shadow: 0 18px 34px rgba(255, 177, 0, 0.26);
}

.about-btn--ghost {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.about-btn--light {
    background: #ffffff;
    color: var(--about-red-dark);
    box-shadow: 0 16px 30px rgba(73, 5, 5, 0.18);
}

.about-hero__visual {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --glow-x: 50%;
    --glow-y: 42%;
    position: relative;
    isolation: isolate;
    min-height: 340px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 209, 6, 0.34), transparent 34%),
        rgba(255, 255, 255, 0.92);
    box-shadow: 0 36px 80px rgba(42, 4, 4, 0.26);
    transform-style: preserve-3d;
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transition: transform 0.26s var(--about-ease), box-shadow 0.26s ease;
    will-change: transform;
}

.about-hero__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.68), transparent 34%);
    opacity: 0.42;
    pointer-events: none;
    mix-blend-mode: screen;
    transition: opacity 0.24s ease;
}

.about-hero__visual.is-active {
    box-shadow: 0 42px 88px rgba(42, 4, 4, 0.32);
}

.about-hero__visual.is-active::before {
    opacity: 0.72;
}

.about-hero__visual img {
    position: relative;
    z-index: 1;
    width: min(82%, 390px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 26px rgba(124, 20, 20, 0.18));
    transform: translateZ(24px);
}

.about-hero__badge {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 2px;
    max-width: 190px;
    padding: 12px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--about-red-dark), var(--about-red));
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(121, 7, 7, 0.28);
}

.about-hero__badge strong {
    font-size: 18px;
    line-height: 1.1;
}

.about-hero__badge span {
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.about-anchor-rail {
    position: sticky;
    top: 74px;
    z-index: 20;
    width: min(100% - 48px, 1180px);
    margin: -42px auto 0;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 40px rgba(96, 12, 12, 0.13);
    backdrop-filter: blur(18px);
}

.about-anchor-rail a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #4a2525;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--about-ease);
}

.about-anchor-rail a:hover,
.about-anchor-rail a:focus-visible {
    background: var(--about-red-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.about-section,
.about-contact-band {
    scroll-margin-top: 128px;
}

.about-section {
    padding: clamp(72px, 8vw, 104px) 0;
}

.about-section--intro {
    padding-top: clamp(86px, 8vw, 118px);
}

.about-section--soft {
    background:
        linear-gradient(135deg, rgba(255, 209, 6, 0.17), transparent 32%),
        linear-gradient(180deg, #fff3ee 0%, #ffffff 100%);
}

.about-section--policy {
    background:
        linear-gradient(180deg, #fff8ed 0%, #fff0eb 100%);
}

.about-section--terms {
    background: #fffdf9;
}

.about-section__inner {
    width: min(100% - 48px, 1180px);
    margin: 0 auto;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
    gap: clamp(26px, 5vw, 60px);
    align-items: center;
}

.about-split--reverse {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 0.92fr);
}

.about-split--reverse .about-copy {
    order: 2;
}

.about-copy h2,
.about-section-heading h2,
.about-policy-header h2,
.about-contact-band h2,
.about-terms h2 {
    margin: 12px 0 16px;
    color: var(--about-red-dark);
    font-size: clamp(34px, 4.6vw, 58px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: 0;
    text-wrap: balance;
}

.about-copy p,
.about-policy-header p,
.about-contact-band p,
.about-terms p {
    max-width: 760px;
    margin: 0;
    color: var(--about-muted);
    font-size: 17px;
    line-height: 1.78;
}

.about-stat-grid {
    display: grid;
    gap: 14px;
}

.about-stat-card {
    position: relative;
    overflow: hidden;
    min-height: 116px;
    padding: 22px;
    border: 1px solid var(--about-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 209, 6, 0.3), transparent 38%),
        #ffffff;
    box-shadow: 0 18px 38px rgba(96, 12, 12, 0.09);
}

.about-stat-card strong {
    display: block;
    color: var(--about-red);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 950;
    line-height: 0.98;
}

.about-stat-card span {
    display: block;
    margin-top: 10px;
    color: #4d3333;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.45;
}

.about-story-grid,
.about-function-grid,
.about-policy-grid {
    display: grid;
    gap: 16px;
}

.about-story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.about-story-card,
.about-function-card,
.about-policy-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--about-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(96, 12, 12, 0.08);
    transition: transform 0.24s var(--about-ease), box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-story-card:hover,
.about-function-card:hover,
.about-policy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(181, 18, 18, 0.28);
    box-shadow: var(--about-shadow);
}

.about-story-card,
.about-function-card {
    min-height: 232px;
    padding: 24px;
}

.about-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--about-red-dark), var(--about-red));
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 14px 26px rgba(181, 18, 18, 0.22);
}

.about-icon--gold {
    background: linear-gradient(135deg, var(--about-gold), #ffb000);
    color: #401212;
}

.about-story-card h3,
.about-function-card h3,
.about-policy-card h3 {
    margin: 0 0 10px;
    color: var(--about-ink);
    font-size: 23px;
    font-weight: 950;
    line-height: 1.15;
}

.about-story-card p,
.about-function-card p,
.about-policy-card p {
    margin: 0;
    color: var(--about-muted);
    font-size: 15px;
    line-height: 1.65;
}

.about-timeline-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-timeline-list li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 74px;
    padding: 14px 16px;
    border: 1px solid var(--about-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(96, 12, 12, 0.07);
}

.about-timeline-list li > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--about-red-dark);
    color: #ffffff;
    font-weight: 950;
}

.about-timeline-list p {
    margin: 0;
    color: #442929;
    font-size: 15px;
    font-weight: 760;
    line-height: 1.55;
}

.about-section-heading {
    max-width: 780px;
    margin-bottom: 26px;
}

.about-function-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-contact-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: clamp(48px, 7vw, 72px) max(24px, calc((100% - 1180px) / 2));
    background:
        linear-gradient(135deg, rgba(255, 209, 6, 0.2), transparent 34%),
        linear-gradient(135deg, #690606, #c81916);
    color: #ffffff;
}

.about-contact-band .about-section-label {
    color: var(--about-gold);
}

.about-contact-band h2 {
    color: #ffffff;
}

.about-contact-band p {
    color: rgba(255, 255, 255, 0.86);
}

.about-contact-actions {
    justify-content: flex-end;
    margin-top: 0;
}

.about-policy-header {
    max-width: 860px;
    margin-bottom: 28px;
}

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

.about-policy-card {
    min-height: 238px;
    padding: 24px;
}

.about-policy-card > span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    border-radius: 15px;
    background: #fff1bd;
    color: var(--about-red-dark);
    font-weight: 950;
}

.about-terms {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: start;
}

.about-check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-check-list li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 62px;
    padding: 12px 14px;
    border: 1px solid var(--about-border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(96, 12, 12, 0.07);
}

.about-check-list i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #dcf8e5;
    color: #128c4a;
}

.about-check-list span {
    color: #432b2b;
    font-size: 15px;
    font-weight: 760;
    line-height: 1.55;
}

.about-terms .about-creator-credit {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    max-width: none;
    margin-top: 8px;
    padding: 18px 22px;
    border: 1px solid var(--about-border);
    border-radius: 20px;
    background: linear-gradient(135deg, #fff8ed 0%, #fff1eb 100%);
    color: #6b4b4b;
    text-align: center;
    box-shadow: 0 12px 26px rgba(96, 12, 12, 0.07);
}

.about-creator-credit strong {
    color: var(--about-red-dark);
    font-weight: 900;
}

.about-creator-credit a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--about-red-dark);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-creator-credit a:hover,
.about-creator-credit a:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(96, 12, 12, 0.2);
}

@media (max-width: 1020px) {
    .about-hero__inner,
    .about-split,
    .about-split--reverse,
    .about-terms,
    .about-contact-band {
        grid-template-columns: 1fr;
    }

    .about-split--reverse .about-copy {
        order: 0;
    }

    .about-hero__visual {
        width: min(100%, 520px);
        justify-self: start;
    }

    .about-story-grid,
    .about-function-grid,
    .about-policy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .about-lawata-page {
        padding-top: 0;
    }

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

    .about-hero__inner,
    .about-section__inner,
    .about-anchor-rail {
        width: min(100% - 28px, 640px);
    }

    .about-hero__inner {
        padding: 196px 0 78px;
    }

    .about-hero h1 {
        margin-top: 12px;
        font-size: clamp(36px, 11.5vw, 52px);
        line-height: 1.02;
    }

    .about-hero p,
    .about-copy p,
    .about-policy-header p,
    .about-contact-band p,
    .about-terms p {
        font-size: 16px;
        line-height: 1.68;
    }

    .about-hero__visual {
        min-height: 280px;
        border-radius: 26px;
    }

    .about-hero__badge {
        right: 14px;
        bottom: 14px;
    }

    .about-anchor-rail {
        position: relative;
        top: auto;
        margin-top: -34px;
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        align-items: stretch;
        gap: 6px;
        overflow: visible;
        padding: 8px;
        border-radius: 20px;
    }

    .about-anchor-rail a {
        grid-column: span 2;
        min-width: 0;
        min-height: 44px;
        padding: 8px 4px;
        text-align: center;
        white-space: normal;
    }

    .about-anchor-rail a:nth-child(n + 4) {
        grid-column: span 3;
    }

    .about-section {
        padding: 64px 0;
    }

    .about-section--intro {
        padding-top: 78px;
    }

    .about-copy h2,
    .about-section-heading h2,
    .about-policy-header h2,
    .about-contact-band h2,
    .about-terms h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .about-story-grid,
    .about-function-grid,
    .about-policy-grid {
        grid-template-columns: 1fr;
    }

    .about-story-card,
    .about-function-card,
    .about-policy-card {
        min-height: auto;
        border-radius: 22px;
    }

    .about-contact-band {
        padding: 44px 18px;
    }
}

@media (max-width: 420px) {
    .about-hero__actions,
    .about-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-btn {
        width: 100%;
    }

    .about-timeline-list li,
    .about-check-list li {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-btn,
    .about-anchor-rail a,
    .about-creator-credit a,
    .about-story-card,
    .about-function-card,
    .about-policy-card {
        transition: none;
    }

    .about-btn:hover,
    .about-btn:focus-visible,
    .about-creator-credit a:hover,
    .about-creator-credit a:focus-visible,
    .about-story-card:hover,
    .about-function-card:hover,
    .about-policy-card:hover {
        transform: none;
    }
}
