@font-face {
    font-display: swap;
    font-family: "Plain";
    font-style: normal;
    font-weight: 300 900;
    src: url("../localfonts/Plain-Regular.woff2") format("woff2");
}

:root {
    --sr-bg: #0c0c0c;
    --sr-bg-soft: #151515;
    --sr-text: #d7e2ea;
    --sr-muted: #8e99a2;
    --sr-light: #ffffff;
    --sr-dark: #0c0c0c;
    --sr-line: rgba(215, 226, 234, 0.22);
    --sr-heading: linear-gradient(180deg, #646973 0%, #bbccd7 100%);
    --sr-accent: linear-gradient(123deg, #18011f 7%, #b600a8 37%, #7621b0 72%, #be4c00 100%);
    --sr-cyan-light: #8eafb4;
    --sr-cyan-mid: #7fa3a8;
    --sr-cyan-deep: #6f969c;
    --sr-cyan-ink: #071113;
    --sr-cyan-muted: rgba(7, 17, 19, 0.68);
    --sr-cyan-line: rgba(7, 17, 19, 0.22);
    --sr-cyan-surface: linear-gradient(145deg, var(--sr-cyan-light) 0%, var(--sr-cyan-mid) 54%, var(--sr-cyan-deep) 100%);
    --sr-radius-xl: clamp(28px, 4vw, 60px);
    --sr-shell: min(1440px, calc(100vw - clamp(32px, 5.5vw, 96px)));
    --sr-gutter: clamp(16px, 3vw, 48px);
}

html {
    background: var(--sr-bg);
    scroll-behavior: smooth;
}

.page-home,
.page-brands,
.page-not-found {
    background: var(--sr-bg);
    color: var(--sr-text);
    font-family: "Kanit", "Plain", sans-serif;
    margin: 0;
    overflow-x: clip;
}

.page-home *,
.page-home *::before,
.page-home *::after,
.page-brands *,
.page-brands *::before,
.page-brands *::after,
.page-not-found *,
.page-not-found *::before,
.page-not-found *::after {
    box-sizing: border-box;
}

.page-home img,
.page-brands img {
    display: block;
    max-width: 100%;
}

.sr-menu-open {
    overflow: hidden;
}

.page-home a,
.page-brands a {
    color: inherit;
}

.page-home :focus-visible,
.page-brands :focus-visible {
    outline: 3px solid #f07ce7;
    outline-offset: 5px;
}

.sr-site {
    background: var(--sr-bg);
    overflow: clip;
}

.sr-page-main,
.sr-brands {
    overflow-x: clip;
}

.sr-shell {
    margin-inline: auto;
    width: var(--sr-shell);
}

.sr-section {
    padding-block: clamp(88px, 11vw, 180px);
    position: relative;
}

.sr-display {
    background: var(--sr-heading);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sr-section-title {
    font-size: clamp(4rem, 11.5vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.018em;
    line-height: 0.82;
    margin: 0;
    text-transform: uppercase;
}

.sr-overline {
    color: var(--sr-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.sr-button {
    align-items: center;
    appearance: none;
    border-radius: 999px;
    display: inline-flex;
    font-size: clamp(0.72rem, 0.9vw, 0.95rem);
    font-weight: 600;
    gap: 0.65rem;
    justify-content: center;
    letter-spacing: 0.13em;
    line-height: 1;
    min-height: 52px;
    padding: 1rem 1.8rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.sr-button svg {
    fill: none;
    height: 1.1rem;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 1.1rem;
}

.sr-button:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.sr-button[data-magnetic] {
    transform: translate(var(--magnet-x, 0), var(--magnet-y, 0));
    transition: transform 300ms ease-out, background-color 180ms ease, color 180ms ease;
}

.sr-button--primary {
    background: var(--sr-accent);
    border: 2px solid #fff;
    box-shadow: 4px 4px 12px #7721b1 inset, 0 4px 20px rgba(182, 0, 168, 0.28);
    color: #fff;
}

.sr-button--ghost {
    background: transparent;
    border: 1.5px solid currentColor;
    color: var(--sr-text);
}

.sr-button--ghost:hover {
    background: rgba(215, 226, 234, 0.1);
}

.sr-text-link {
    align-items: center;
    display: inline-flex;
    font-size: 0.83rem;
    font-weight: 600;
    gap: 0.5rem;
    letter-spacing: 0.1em;
    padding-block: 0.4rem;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.sr-text-link::after {
    background: currentColor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 200ms ease;
    width: 100%;
}

.sr-text-link:hover {
    color: inherit;
    text-decoration: none;
}

.sr-text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Shared navigation */
.sr-nav {
    color: var(--sr-text);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000;
}

.sr-nav.is-scrolled,
.sr-nav.is-open,
.page-brands .sr-nav {
    background: rgba(12, 12, 12, 0.84);
    backdrop-filter: blur(18px);
    position: fixed;
}

.sr-nav-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-inline: auto;
    min-height: 88px;
    width: var(--sr-shell);
}

.sr-nav-brand {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.sr-nav-brand strong {
    color: var(--sr-text);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.sr-nav-brand small {
    color: var(--sr-muted);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    margin-top: 0.45rem;
    text-transform: uppercase;
}

.sr-nav-links {
    align-items: center;
    display: flex;
    gap: clamp(1.2rem, 3vw, 3.4rem);
}

.sr-nav-links a {
    color: var(--sr-text);
    font-size: clamp(0.72rem, 0.95vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.sr-nav-links a::after {
    background: currentColor;
    bottom: -0.55rem;
    content: "";
    height: 1px;
    left: 0;
    opacity: 0;
    position: absolute;
    transform: translateY(4px);
    transition: opacity 180ms ease, transform 180ms ease;
    width: 100%;
}

.sr-nav-links a:hover::after,
.sr-nav-links a.is-active::after {
    opacity: 1;
    transform: translateY(0);
}

.sr-menu-toggle {
    align-items: center;
    background: transparent;
    border: 1px solid var(--sr-line);
    border-radius: 50%;
    color: var(--sr-text);
    display: none;
    height: 46px;
    justify-content: center;
    padding: 0;
    width: 46px;
}

.sr-menu-toggle svg {
    fill: none;
    height: 20px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
    width: 20px;
}

.sr-mobile-menu {
    background: #111;
    display: none;
    padding: 0 var(--sr-gutter) 1.5rem;
}

.sr-mobile-menu a {
    border-bottom: 1px solid var(--sr-line);
    color: var(--sr-text);
    display: block;
    font-size: 1.1rem;
    padding: 1rem 0;
    text-decoration: none;
    text-transform: uppercase;
}

.sr-mobile-menu.is-open {
    display: block;
}

/* Hero */
.sr-hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    overflow: hidden;
    padding-top: 88px;
    position: relative;
}

.sr-hero-heading-wrap {
    overflow: hidden;
    padding-inline: 1.4vw;
    position: relative;
    z-index: 1;
}

.sr-hero-heading {
    font-size: clamp(4.7rem, 14vw, 15rem);
    font-weight: 900;
    letter-spacing: -0.018em;
    line-height: 0.84;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.sr-hero-heading span {
    display: inline-block;
}

.sr-hero-portrait {
    bottom: 0;
    left: 50%;
    max-height: 78%;
    position: absolute;
    transform: translate(calc(-50% + var(--magnet-x, 0)), var(--magnet-y, 0));
    transition: transform 300ms ease-out;
    width: min(38vw, 560px);
    z-index: 3;
}

.sr-hero-portrait-frame {
    aspect-ratio: 0.76;
    border-radius: 999px 999px 0 0;
    overflow: hidden;
    position: relative;
}

.sr-hero-portrait-frame::after {
    background: linear-gradient(180deg, transparent 60%, var(--sr-bg) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.sr-hero-portrait img {
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    width: 100%;
}

.sr-hero-bottom {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-bottom: clamp(28px, 4vw, 52px);
    position: relative;
    z-index: 5;
}

.sr-hero-intro {
    color: var(--sr-text);
    font-size: clamp(0.68rem, 1.15vw, 1.08rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 0;
    max-width: 280px;
}

/* Marquee */
.sr-marquee {
    background: var(--sr-bg);
    display: grid;
    gap: 0.75rem;
    overflow: hidden;
    padding-block: clamp(88px, 11vw, 168px) clamp(54px, 7vw, 96px);
}

.sr-marquee-row {
    margin-left: -18vw;
    width: 136vw;
}

.sr-marquee-track {
    display: flex;
    gap: 0.75rem;
    transform: translate3d(var(--marquee-x, 0), 0, 0);
    width: max-content;
    will-change: transform;
}

.sr-marquee-tile {
    aspect-ratio: 16 / 10;
    background: #171717;
    border-radius: clamp(16px, 2vw, 28px);
    flex: 0 0 clamp(240px, 29vw, 420px);
    margin: 0;
    overflow: hidden;
}

.sr-marquee-tile img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 500ms ease;
    width: 100%;
}

.sr-marquee-tile:hover img {
    transform: scale(1.025);
}

/* About */
.sr-about {
    min-height: 100svh;
    overflow: hidden;
}

.sr-about-layout {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 4vw, 5rem);
    grid-template-columns: 0.95fr 0.7fr 0.95fr;
    position: relative;
    z-index: 2;
}

.sr-about-heading {
    align-self: start;
}

.sr-about-heading .sr-section-title {
    font-size: clamp(4.7rem, 10vw, 9rem);
}

.sr-about-location {
    color: var(--sr-muted);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
    margin: 2.2rem 0 0;
}

.sr-about-photo {
    border-radius: 999px 999px 36px 36px;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.sr-about-photo img {
    aspect-ratio: 0.72;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.sr-about-copy {
    align-self: end;
}

.sr-about-copy > p {
    color: var(--sr-text);
    font-size: clamp(1.05rem, 1.55vw, 1.32rem);
    font-weight: 300;
    line-height: 1.55;
    margin: 0 0 1.2rem;
}

.sr-about-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.sr-about-orbit {
    border: 1px solid var(--sr-line);
    border-radius: 50%;
    position: absolute;
}

.sr-about-orbit--one {
    height: 180px;
    left: -60px;
    top: 14%;
    width: 180px;
}

.sr-about-orbit--two {
    bottom: 10%;
    height: 280px;
    right: -160px;
    width: 280px;
}

/* Capabilities */
.sr-capabilities {
    background: var(--sr-cyan-surface);
    border-radius: var(--sr-radius-xl) var(--sr-radius-xl) 0 0;
    color: var(--sr-cyan-ink);
}

.sr-section-title--dark {
    color: var(--sr-cyan-ink);
    margin-bottom: clamp(54px, 8vw, 110px);
}

.sr-capability {
    align-items: start;
    border-top: 1px solid var(--sr-cyan-line);
    display: grid;
    gap: clamp(2rem, 8vw, 9rem);
    grid-template-columns: minmax(110px, 0.33fr) 1fr;
    padding-block: clamp(28px, 4vw, 56px);
}

.sr-capability:last-child {
    border-bottom: 1px solid var(--sr-cyan-line);
}

.sr-capability-number {
    font-size: clamp(4rem, 9vw, 8.5rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.8;
}

.sr-capability h3 {
    font-size: clamp(1.55rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    margin: 0 0 0.8rem;
    text-transform: uppercase;
}

.sr-capability p {
    color: var(--sr-cyan-muted);
    font-size: clamp(0.95rem, 1.35vw, 1.18rem);
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
    max-width: 740px;
}

.sr-section-heading-row {
    align-items: flex-end;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: clamp(54px, 8vw, 110px);
}

/* Brands */
.sr-brands {
    border-top: 1px solid var(--sr-line);
}

.sr-brand-item {
    align-items: center;
    border-top: 1px solid var(--sr-line);
    display: grid;
    gap: clamp(1.2rem, 3vw, 3.5rem);
    grid-template-columns: 60px minmax(260px, 0.8fr) 1fr;
    padding-block: clamp(28px, 4vw, 54px);
}

.sr-brand-item:last-child {
    border-bottom: 1px solid var(--sr-line);
}

.sr-brand-index {
    align-self: start;
    color: var(--sr-muted);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
}

.sr-brand-media {
    aspect-ratio: 16 / 10;
    background: #151515;
    border-radius: clamp(18px, 2.2vw, 32px);
    margin: 0;
    overflow: hidden;
}

.sr-brand-media img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: translate3d(0, var(--brand-parallax-y, 0), 0) scale(var(--brand-media-scale, 1.05));
    transition: transform 500ms cubic-bezier(.25, .1, .25, 1);
    will-change: transform;
    width: 100%;
}

.sr-brand-item:hover .sr-brand-media img {
    --brand-media-scale: 1.085;
}

.sr-brand-copy h3 {
    color: var(--sr-text);
    font-size: clamp(1.7rem, 3.6vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
    margin: 0 0 1.2rem;
    text-transform: uppercase;
}

.sr-brand-copy p {
    color: var(--sr-muted);
    font-size: clamp(0.95rem, 1.35vw, 1.16rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    max-width: 620px;
}

/* Values and contact */
.sr-values {
    background: var(--sr-cyan-surface);
    color: var(--sr-cyan-ink);
}

.sr-values .sr-overline {
    color: var(--sr-cyan-muted);
}

.sr-values-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: 0.4fr 1fr;
}

.sr-values-title {
    font-size: clamp(3.5rem, 8vw, 8.2rem);
    font-weight: 900;
    grid-column: 2;
    letter-spacing: -0.065em;
    line-height: 0.88;
    margin: 0;
    text-transform: uppercase;
}

.sr-values-copy {
    font-size: clamp(1.1rem, 1.9vw, 1.55rem);
    font-weight: 300;
    grid-column: 2;
    line-height: 1.55;
    margin: 1rem 0;
    max-width: 800px;
}

.sr-values-list {
    border-top: 1px solid var(--sr-cyan-line);
    display: grid;
    grid-column: 2;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
}

.sr-values-list span {
    border-right: 1px solid var(--sr-cyan-line);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 1.25rem 0.8rem;
    text-align: center;
    text-transform: uppercase;
}

.sr-contact {
    padding-bottom: clamp(70px, 8vw, 120px);
}

.sr-contact-panel {
    align-items: end;
    border: 1px solid var(--sr-line);
    border-radius: var(--sr-radius-xl);
    display: grid;
    gap: clamp(3rem, 7vw, 9rem);
    grid-template-columns: 1.2fr 0.8fr;
    padding: clamp(28px, 5.5vw, 84px);
}

.sr-contact-title {
    font-size: clamp(4.5rem, 10vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.018em;
    line-height: 0.82;
    margin: 0 0 2rem;
    text-transform: uppercase;
}

.sr-contact-panel > div:first-child > p:last-child {
    color: var(--sr-muted);
    font-size: clamp(1rem, 1.45vw, 1.22rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
}

.sr-contact-actions {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sr-contact-actions > p {
    color: var(--sr-muted);
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 1rem 0 0;
}

/* Progressive reveal */
.js-enhanced .page-home .sr-nav[data-hero-reveal] {
    animation: sr-hero-enter 700ms cubic-bezier(.25, .1, .25, 1) var(--hero-delay, 0ms) both;
}

.js-enhanced [data-reveal] {
    opacity: 0;
    transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 30px), 0);
    transition: opacity 700ms cubic-bezier(.25, .1, .25, 1), transform 700ms cubic-bezier(.25, .1, .25, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.js-enhanced [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.js-enhanced [data-page-reveal] {
    animation: sr-page-enter 760ms cubic-bezier(.25, .1, .25, 1) both;
}

[data-text-character] {
    opacity: var(--char-opacity, 0.18);
    transition: opacity 90ms linear;
}

[data-brand-parallax] > img,
[data-brand-parallax] > span {
    transform: translate3d(0, var(--brand-parallax-y, 0), 0) scale(1.05);
    transition: transform 180ms linear;
    will-change: transform;
}

@keyframes sr-hero-enter {
    from { opacity: 0; transform: translate3d(0, var(--hero-from-y, -20px), 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes sr-page-enter {
    from { opacity: 0; transform: translate3d(0, 24px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Shared footer */
.sr-footer {
    background: #080808;
    border-top: 1px solid var(--sr-line);
    color: var(--sr-text);
    font-family: "Kanit", "Plain", sans-serif;
    padding-block: clamp(42px, 6vw, 78px);
}

.sr-footer-inner {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
    margin-inline: auto;
    width: var(--sr-shell);
}

.sr-footer strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.sr-footer p,
.sr-footer-meta {
    color: var(--sr-muted);
    font-size: 0.8rem;
    line-height: 1.6;
    margin: 1rem 0 0;
}

.sr-footer-right {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sr-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    justify-content: flex-end;
}

.sr-footer-nav a,
.sr-footer-meta a {
    color: var(--sr-text);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

/* Secondary route surfaces */
.sr-page-main {
    background: var(--sr-bg);
    min-height: 100vh;
    padding-top: 88px;
}

.sr-page-hero {
    border-bottom: 1px solid var(--sr-line);
    padding-block: clamp(90px, 13vw, 180px) clamp(60px, 8vw, 110px);
}

.sr-page-hero h1 {
    font-size: clamp(4rem, 9.5vw, 8.5rem);
    font-weight: 900;
    letter-spacing: -0.012em;
    line-height: 0.88;
    margin: 0;
    text-transform: uppercase;
}

.sr-page-hero h1 span {
    display: block;
}

.sr-page-hero p {
    color: var(--sr-muted);
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    font-weight: 300;
    line-height: 1.55;
    margin: 2rem 0 0 auto;
    max-width: 620px;
}

.sr-route-list {
    padding-block: clamp(70px, 9vw, 130px);
}

.sr-route-item {
    align-items: center;
    border-top: 1px solid var(--sr-line);
    display: grid;
    gap: clamp(1.5rem, 4vw, 4rem);
    grid-template-columns: 64px minmax(260px, 0.8fr) 1fr;
    padding-block: clamp(30px, 4vw, 56px);
}

.sr-route-item:last-child {
    border-bottom: 1px solid var(--sr-line);
}

.sr-route-index {
    align-self: start;
    color: var(--sr-muted);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.sr-route-media {
    aspect-ratio: 16 / 10;
    background: var(--sr-bg-soft);
    border-radius: clamp(18px, 2.5vw, 34px);
    margin: 0;
    overflow: hidden;
}

.sr-route-media img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: translate3d(0, var(--brand-parallax-y, 0), 0) scale(1.05);
    transition: transform 180ms linear;
    will-change: transform;
    width: 100%;
}

.sr-route-media--concept {
    align-items: center;
    background:
        radial-gradient(circle at 72% 18%, rgba(182, 0, 168, 0.42), transparent 30%),
        radial-gradient(circle at 20% 88%, rgba(190, 76, 0, 0.36), transparent 34%),
        #18121b;
    display: flex;
    justify-content: center;
}

.sr-route-media--concept span {
    color: rgba(215, 226, 234, 0.82);
    font-size: clamp(3.5rem, 8vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.08em;
}

.sr-route-item.is-concept {
    opacity: 0.72;
}

.sr-route-copy h2,
.sr-route-copy h3 {
    color: var(--sr-text);
    font-size: clamp(1.8rem, 3.8vw, 4.3rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.sr-route-copy p {
    color: var(--sr-muted);
    font-size: clamp(0.95rem, 1.3vw, 1.12rem);
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 1.4rem;
    max-width: 660px;
}

.sr-status {
    color: #e998df;
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.page-not-found .about {
    background: var(--sr-bg);
    min-height: 72vh;
    padding-top: clamp(150px, 18vw, 230px);
}

.page-not-found .about h2 {
    color: var(--sr-text);
    font-family: "Kanit", "Plain", sans-serif;
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page-not-found .about p {
    color: var(--sr-muted);
}

@media (max-width: 1024px) {
    .sr-nav-links { display: none; }
    .js-enhanced .sr-menu-toggle { display: inline-flex; }
    .sr-mobile-menu { display: block; }
    .js-enhanced .sr-mobile-menu { display: none; }
    .js-enhanced .sr-mobile-menu.is-open { display: block; }

    .sr-hero-portrait { width: min(54vw, 520px); }
    .sr-hero-intro { max-width: 220px; }

    .sr-about-layout {
        grid-template-columns: 1fr 0.8fr;
    }

    .sr-about-heading { grid-column: 1 / -1; }
    .sr-about-photo { grid-column: 1; }
    .sr-about-copy { grid-column: 2; }

}

@media (max-width: 760px) {
    :root { --sr-shell: calc(100vw - 28px); }

    .sr-section { padding-block: 80px; }
    .sr-nav-inner { min-height: 74px; }
    .sr-nav-brand strong { font-size: 0.88rem; }
    .sr-nav-brand small { font-size: 0.54rem; }

    .sr-hero {
        min-height: 760px;
        padding-top: 92px;
    }

    .sr-hero-heading-wrap { padding-inline: 0; }
    .sr-hero-heading {
        font-size: clamp(4.5rem, 22vw, 7rem);
        line-height: 0.78;
        white-space: normal;
    }

    .sr-hero-heading span { display: block; }
    .sr-hero-portrait { bottom: 110px; max-height: none; width: min(82vw, 420px); }
    .sr-hero-portrait-frame { aspect-ratio: 0.78; }
    .sr-hero-bottom { align-items: flex-start; gap: 1rem; padding-bottom: 24px; }
    .sr-hero-intro { font-size: 0.62rem; max-width: 150px; }
    .sr-hero-bottom .sr-button { min-height: 46px; padding: 0.85rem 1.1rem; }

    .sr-marquee { padding-top: 76px; }
    .sr-marquee-row { margin-left: -42vw; width: 184vw; }
    .sr-marquee-tile { flex-basis: 220px; }

    .sr-about-layout { display: flex; flex-direction: column; }
    .sr-about-heading { width: 100%; }
    .sr-about-photo { width: min(76vw, 340px); }
    .sr-about-copy { max-width: 520px; }
    .sr-about-actions { align-items: flex-start; flex-direction: column; }

    .sr-section-title { font-size: clamp(3.7rem, 19vw, 7rem); }
    .sr-capabilities .sr-section-title { font-size: clamp(3rem, 13vw, 4.6rem); }
    .sr-about-heading .sr-section-title { font-size: clamp(4rem, 20vw, 7rem); }

    .sr-capability {
        gap: 1.2rem;
        grid-template-columns: 86px 1fr;
    }
    .sr-capability-number { font-size: 3.6rem; }

    .sr-section-heading-row { align-items: flex-start; flex-direction: column; }

    .sr-brand-item,
    .sr-route-item {
        grid-template-columns: 42px 1fr;
    }
    .sr-brand-media,
    .sr-route-media { grid-column: 2; }
    .sr-brand-copy,
    .sr-route-copy { grid-column: 2; }

    .sr-values-layout { display: block; }
    .sr-values-title { margin-top: 2rem; }
    .sr-values-copy { margin-top: 2rem; }
    .sr-values-list { grid-template-columns: repeat(2, 1fr); }
    .sr-values-list span { border-bottom: 1px solid var(--sr-cyan-line); }

    .sr-contact-panel { grid-template-columns: 1fr; }
    .sr-contact-title { font-size: clamp(4rem, 20vw, 7rem); }

    .sr-footer-inner { grid-template-columns: 1fr; }
    .sr-footer-right { align-items: flex-start; }
    .sr-footer-nav { justify-content: flex-start; }
}

@media (max-width: 380px) {
    .sr-hero-heading { font-size: 4.15rem; }
    .sr-hero-portrait { width: 90vw; }
    .sr-button { font-size: 0.65rem; min-height: 46px; padding-inline: 1.1rem; }
    .sr-capability { grid-template-columns: 70px 1fr; }
    .sr-capability-number { font-size: 3rem; }
    .sr-brand-item,
    .sr-route-item { grid-template-columns: 1fr; }
    .sr-brand-media,
    .sr-brand-copy,
    .sr-route-media,
    .sr-route-copy { grid-column: 1; }
}

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

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

    .js-enhanced [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .sr-marquee-track,
    [data-magnetic],
    [data-brand-parallax] > img,
    [data-brand-parallax] > span {
        transform: none !important;
    }

    [data-text-character] {
        opacity: 1 !important;
    }
}
