:root {
    --ess-night: #080a09;
    --ess-night-soft: #111411;
    --ess-paper: #eee9dc;
    --ess-muted: rgba(238, 233, 220, 0.58);
    --ess-line: rgba(238, 233, 220, 0.14);
    --ess-glass: rgba(12, 15, 13, 0.52);
    --ess-jade: #a8e6c5;
    --ess-warm: #c8a578;
}

/* Homepage / HOME ESS preview */
.project--energy .energy-preview {
    position: relative;
    display: block;
    min-height: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    color: var(--ess-paper);
    background: var(--ess-night);
}

.energy-preview__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
    transform: scale(1.01);
    transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 600ms ease;
}

.project--energy:hover .energy-preview__image,
.project--energy:focus-visible .energy-preview__image {
    filter: brightness(1.06);
    transform: scale(1.035);
}

.energy-preview__glass {
    position: absolute;
    top: 6%;
    bottom: 6%;
    left: 4.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(48%, 340px);
    padding: clamp(18px, 2vw, 30px);
    border: 1px solid rgba(238, 233, 220, 0.18);
    color: var(--ess-paper);
    background: rgba(7, 9, 8, 0.45);
    -webkit-backdrop-filter: blur(20px) saturate(115%);
    backdrop-filter: blur(20px) saturate(115%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    transition: background 350ms ease, border-color 350ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project--energy:hover .energy-preview__glass {
    border-color: rgba(238, 233, 220, 0.3);
    background: rgba(7, 9, 8, 0.58);
    transform: translate3d(6px, -4px, 0);
}

.energy-preview__eyebrow {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(238, 233, 220, 0.56);
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.energy-preview__hud {
    display: grid;
    gap: 9px;
}

.energy-preview__hud > span {
    color: var(--ess-jade);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.energy-preview__hud strong {
    max-width: 370px;
    font-size: clamp(24px, 2.2vw, 40px);
    font-weight: 450;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.energy-preview__metric {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--ess-line);
}

.energy-preview__metric span {
    display: grid;
    gap: 4px;
    padding: 14px 10px 0 0;
}

.energy-preview__metric b {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.energy-preview__metric small {
    color: rgba(238, 233, 220, 0.42);
    font-size: 7px;
    letter-spacing: 0.08em;
}

.energy-preview__hint {
    position: absolute;
    top: 5%;
    right: 4.5%;
    bottom: auto;
    color: rgba(238, 233, 220, 0.68);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* HOME ESS detail / dark architectural system */
body[data-project="tea"] {
    color: var(--ess-paper);
    background: var(--ess-night);
}

body[data-project="tea"] main,
body[data-project="tea"] .overview,
body[data-project="tea"] .brand-system,
body[data-project="tea"] .applications,
body[data-project="tea"] .process-detail {
    color: var(--ess-paper);
    background: var(--ess-night);
}

body[data-project="tea"] .strategy {
    color: var(--ess-paper);
    background: var(--ess-night-soft);
}

body[data-project="tea"] .deliverables {
    color: var(--ess-paper);
    background: #121611;
}

body[data-project="tea"] .case-header {
    color: var(--ess-paper);
}

body[data-project="tea"] .case-header::after {
    border-color: rgba(238, 233, 220, 0.16);
}

body[data-project="tea"] .case-header a,
body[data-project="tea"] .case-header button {
    color: inherit;
}

body[data-project="tea"] .case-header .logo,
body[data-project="tea"] .case-header .lang-toggle {
    filter: none;
}

body[data-project="tea"] .case-header.is-scrolled {
    color: var(--ess-paper);
    background: rgba(8, 10, 9, 0.78);
    -webkit-backdrop-filter: blur(20px) saturate(115%);
    backdrop-filter: blur(20px) saturate(115%);
    box-shadow: 0 1px 0 rgba(238, 233, 220, 0.12);
}

body[data-project="tea"] .case-header.is-scrolled .lang-toggle {
    border-color: rgba(238, 233, 220, 0.22);
}

body[data-project="tea"] .home-ess-hero {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100svh;
    overflow: hidden;
    color: var(--ess-paper);
    background: #030403;
    isolation: isolate;
}

body[data-project="tea"] .home-ess-hero::before,
body[data-project="tea"] .home-ess-hero::after {
    display: none;
}

.home-ess-hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: block;
    transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0) scale(1.025);
    transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.home-ess-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body[data-project="tea"] .home-ess-hero .home-ess-hero__glass {
    position: absolute;
    top: 50%;
    left: 5.2vw;
    display: block;
    width: min(430px, 36vw);
    height: auto;
    min-height: 0;
    margin: 0;
    padding: clamp(24px, 2.5vw, 38px);
    border: 1px solid rgba(238, 233, 220, 0.18);
    color: var(--ess-paper);
    background: var(--ess-glass);
    -webkit-backdrop-filter: blur(22px) saturate(120%);
    backdrop-filter: blur(22px) saturate(120%);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.28);
    pointer-events: auto;
    transform: translateY(-45%) perspective(900px) rotateX(var(--glass-rx, 0deg)) rotateY(var(--glass-ry, 0deg));
    transform-origin: center;
    transition: border-color 320ms ease, background 320ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

body[data-project="tea"] .home-ess-hero.is-pointer-active .home-ess-hero__glass {
    border-color: rgba(238, 233, 220, 0.3);
    background: rgba(12, 15, 13, 0.62);
}

body[data-project="tea"] .home-ess-hero .home-ess-hero__glass::before {
    display: none;
}

body[data-project="tea"] .home-ess-hero .hero-kicker,
body[data-project="tea"] .home-ess-hero .hero-title,
body[data-project="tea"] .home-ess-hero .hero-subtitle,
body[data-project="tea"] .home-ess-hero .energy-hero-spec,
body[data-project="tea"] .home-ess-hero .energy-hero-cue {
    position: static;
    inset: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
}

body[data-project="tea"] .home-ess-hero .hero-kicker {
    margin-bottom: 24px;
}

body[data-project="tea"] .home-ess-hero .hero-kicker p {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

body[data-project="tea"] .home-ess-hero .hero-kicker b,
body[data-project="tea"] .home-ess-hero .hero-kicker small {
    display: block;
    color: rgba(238, 233, 220, 0.5);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.16em;
}

body[data-project="tea"] .home-ess-hero .hero-title {
    display: grid;
    gap: 5px;
    line-height: 1;
}

body[data-project="tea"] .home-ess-hero .hero-title .title-line,
html[data-language="en"] body[data-project="tea"] .home-ess-hero .hero-title .title-line:first-child {
    max-width: none;
    color: var(--ess-paper);
    font-size: clamp(50px, 5.4vw, 78px);
    font-weight: 430;
    line-height: 0.95;
    letter-spacing: -0.065em;
    white-space: normal;
}

body[data-project="tea"] .home-ess-hero .hero-title .title-line--en {
    color: rgba(238, 233, 220, 0.5);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.18em;
}

body[data-project="tea"] .home-ess-hero .hero-subtitle {
    margin-top: 20px;
    color: var(--ess-jade);
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.35;
}

body[data-project="tea"] .home-ess-hero .energy-hero-spec {
    margin-top: 22px;
    color: rgba(238, 233, 220, 0.45);
    font-size: 8px;
    letter-spacing: 0.14em;
    white-space: normal;
}

.home-ess-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    pointer-events: auto;
}

.home-ess-hero__actions a,
.home-ess-hero__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(238, 233, 220, 0.22);
    color: var(--ess-paper);
    background: rgba(238, 233, 220, 0.06);
    font: inherit;
    font-size: 8px;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.home-ess-hero__actions a {
    color: #0b120e;
    background: var(--ess-jade);
    border-color: var(--ess-jade);
}

.home-ess-hero__actions a:hover,
.home-ess-hero__actions button:hover,
.home-ess-hero__actions a:focus-visible,
.home-ess-hero__actions button:focus-visible {
    transform: translateY(-2px);
}

.home-ess-hero__actions button:hover,
.home-ess-hero__actions button:focus-visible,
.home-ess-hero.is-details-open .home-ess-hero__actions button {
    border-color: rgba(238, 233, 220, 0.46);
    background: rgba(238, 233, 220, 0.13);
}

.home-ess-hero__details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-height: 0;
    margin-top: 0;
    border-top: 1px solid transparent;
    opacity: 0;
    overflow: hidden;
    transition: max-height 480ms cubic-bezier(0.2, 0.8, 0.2, 1), margin 480ms ease, padding 480ms ease, opacity 300ms ease, border-color 300ms ease;
}

.home-ess-hero.is-details-open .home-ess-hero__details {
    max-height: 90px;
    margin-top: 24px;
    padding-top: 17px;
    border-color: var(--ess-line);
    opacity: 1;
}

.home-ess-hero__details span {
    display: grid;
    gap: 5px;
    padding-right: 8px;
}

.home-ess-hero__details b {
    font-size: 13px;
    font-weight: 500;
}

.home-ess-hero__details small {
    color: rgba(238, 233, 220, 0.4);
    font-size: 7px;
    letter-spacing: 0.1em;
}

body[data-project="tea"] .home-ess-hero .energy-hero-cue {
    display: block;
    margin-top: 24px;
    color: rgba(238, 233, 220, 0.36);
    font-size: 7px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

body[data-project="tea"] .home-ess-hero .energy-hero-cue::after {
    margin-left: 10px;
}

body[data-project="tea"] .home-ess-hero .hero-index {
    right: 4vw;
    bottom: 28px;
    left: auto;
    color: rgba(238, 233, 220, 0.42);
}

/* Shared dark editorial sections */
body[data-project="tea"] .section {
    border-color: var(--ess-line);
}

body[data-project="tea"] .section-label,
body[data-project="tea"] .section-label--light {
    color: rgba(238, 233, 220, 0.5);
}

body[data-project="tea"] .section-label::before,
body[data-project="tea"] .section-label--light::before {
    background: var(--ess-line);
}

body[data-project="tea"] .overview-grid h2,
body[data-project="tea"] .system-heading h2,
body[data-project="tea"] .applications-heading h2,
body[data-project="tea"] .process-statement h2 {
    color: var(--ess-paper);
}

body[data-project="tea"] .overview-grid h2 span,
body[data-project="tea"] .strategy-heading h2 span,
body[data-project="tea"] .system-heading h2 span,
body[data-project="tea"] .applications-heading h2 span,
body[data-project="tea"] .process-statement h2 span,
body[data-project="tea"] .deliverables h2 span {
    color: var(--ess-jade);
}

body[data-project="tea"] .overview-copy,
body[data-project="tea"] .system-heading > p,
body[data-project="tea"] .applications-heading > p,
body[data-project="tea"] .process-statement > p {
    color: var(--ess-muted);
}

body[data-project="tea"] .project-facts {
    border-color: var(--ess-line);
}

body[data-project="tea"] .project-facts > div {
    border-color: var(--ess-line);
}

body[data-project="tea"] .project-facts dt {
    color: rgba(238, 233, 220, 0.38);
}

body[data-project="tea"] .project-facts dd {
    color: var(--ess-paper);
}

/* Second screen / model interaction */
.energy-experience {
    position: relative;
    color: var(--ess-paper);
    background: var(--ess-night);
}

.energy-experience__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: clamp(40px, 8vw, 140px);
    align-items: end;
    margin: clamp(50px, 7vw, 110px) 0 clamp(30px, 4vw, 60px) 15%;
}

.energy-experience__heading h2 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(42px, 4.55vw, 70px);
    font-weight: 430;
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.energy-experience__heading h2 span {
    color: var(--ess-jade);
}

.energy-experience__heading p {
    max-width: 500px;
    margin: 0;
    color: var(--ess-muted);
    font-size: 14px;
    line-height: 1.9;
}

.energy-stage {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ess-line);
    border-radius: 26px;
    background: #0c1614;
    box-shadow: 0 42px 100px rgba(0, 0, 0, 0.24);
}

body[data-project="tea"] .energy-stage .energy-scene--detail {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(680px, 72vw, 940px);
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-radius: inherit;
    cursor: grab;
}

body[data-project="tea"] .energy-stage .energy-scene--detail.is-dragging {
    cursor: grabbing;
}

body[data-project="tea"] .energy-stage .energy-component-toggle {
    display: none;
}

body[data-project="tea"] .energy-stage .energy-component-nav,
body[data-project="tea"] .energy-stage .energy-scene--detail.is-components-open .energy-component-nav {
    position: absolute;
    top: 22px;
    right: 22px;
    bottom: auto;
    left: 22px;
    z-index: 9;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: auto;
    padding: 6px;
    border: 1px solid rgba(238, 233, 220, 0.16);
    border-radius: 14px;
    color: var(--ess-paper);
    background: rgba(8, 12, 10, 0.62);
    -webkit-backdrop-filter: blur(18px) saturate(115%);
    backdrop-filter: blur(18px) saturate(115%);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

body[data-project="tea"] .energy-stage .energy-component-nav button {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    border: 0;
    border-right: 1px solid rgba(238, 233, 220, 0.1);
    color: rgba(238, 233, 220, 0.58);
    background: transparent;
}

body[data-project="tea"] .energy-stage .energy-component-nav button:last-child {
    border-right: 0;
}

body[data-project="tea"] .energy-stage .energy-component-nav button span {
    color: rgba(238, 233, 220, 0.34);
    font-size: 7px;
}

body[data-project="tea"] .energy-stage .energy-component-nav button b {
    overflow: hidden;
    color: inherit;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body[data-project="tea"] .energy-stage .energy-component-nav button:hover,
body[data-project="tea"] .energy-stage .energy-component-nav button:focus-visible,
body[data-project="tea"] .energy-stage .energy-component-nav button.is-active {
    color: #0c1712;
    background: var(--ess-jade);
}

body[data-project="tea"] .energy-stage .energy-focus-panel {
    right: auto;
    bottom: 28px;
    left: 28px;
    width: min(360px, calc(100% - 56px));
    padding: 20px;
    border: 1px solid rgba(238, 233, 220, 0.15);
    border-radius: 14px;
    color: var(--ess-paper);
    background: rgba(8, 12, 10, 0.66);
    -webkit-backdrop-filter: blur(18px) saturate(115%);
    backdrop-filter: blur(18px) saturate(115%);
}

body[data-project="tea"] .energy-stage .energy-scene--detail.has-energy-focus .energy-focus-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
}

body[data-project="tea"] .energy-stage .energy-focus-panel > span,
body[data-project="tea"] .energy-stage .energy-focus-panel small {
    color: rgba(238, 233, 220, 0.42);
}

body[data-project="tea"] .energy-stage .energy-focus-panel strong {
    color: var(--ess-paper);
}

body[data-project="tea"] .energy-stage .energy-focus-panel p {
    color: rgba(238, 233, 220, 0.64);
}

body[data-project="tea"] .energy-stage .energy-scene__controls {
    right: 28px;
    bottom: 28px;
    left: auto;
    display: flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(238, 233, 220, 0.15);
    border-radius: 14px;
    background: rgba(8, 12, 10, 0.66);
    -webkit-backdrop-filter: blur(18px) saturate(115%);
    backdrop-filter: blur(18px) saturate(115%);
    transform: none;
}

body[data-project="tea"] .energy-stage .energy-scene__controls button {
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 9px;
    color: rgba(238, 233, 220, 0.62);
    background: transparent;
    font-size: 8px;
}

body[data-project="tea"] .energy-stage .energy-scene__controls button.is-active {
    color: #0c1712;
    background: var(--ess-jade);
}

.energy-experience__footnote {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 18px 0 0;
    color: rgba(238, 233, 220, 0.32);
    font-size: 7px;
    letter-spacing: 0.14em;
}

/* Product-system cards */
body[data-project="tea"] .brand-lab {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body[data-project="tea"] .home-ess-spec-card {
    position: relative;
    grid-column: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: 28px;
    border: 1px solid var(--ess-line);
    color: var(--ess-paper);
    background: rgba(238, 233, 220, 0.035);
    transition: border-color 280ms ease, background 280ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body[data-project="tea"] .home-ess-spec-card:hover {
    border-color: rgba(168, 230, 197, 0.36);
    background: rgba(238, 233, 220, 0.06);
    transform: translateY(-6px);
}

body[data-project="tea"] .home-ess-spec-card > span {
    color: rgba(238, 233, 220, 0.38);
    font-size: 8px;
    letter-spacing: 0.14em;
}

body[data-project="tea"] .home-ess-spec-card > strong {
    display: flex;
    gap: 7px;
    align-items: flex-end;
    margin: auto 0 30px;
    color: var(--ess-paper);
    font-size: clamp(68px, 7vw, 112px);
    font-weight: 350;
    line-height: 0.8;
    letter-spacing: -0.08em;
}

body[data-project="tea"] .home-ess-spec-card > strong small {
    padding-bottom: 7px;
    color: var(--ess-jade);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
}

body[data-project="tea"] .home-ess-spec-card > p {
    min-height: 72px;
    margin: 0 0 26px;
    color: var(--ess-muted);
    font-size: 12px;
    line-height: 1.8;
}

body[data-project="tea"] .home-ess-spec-card .board-caption {
    position: static;
    border-color: var(--ess-line);
    color: rgba(238, 233, 220, 0.55);
}

/* Unified supporting imagery */
body[data-project="tea"] .applications {
    background: var(--ess-night);
}

body[data-project="tea"] .application-grid {
    gap: clamp(28px, 4vw, 64px);
}

body[data-project="tea"] .application-card {
    color: var(--ess-paper);
}

body[data-project="tea"] .application-visual {
    position: relative;
    height: auto;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border: 1px solid var(--ess-line);
    border-radius: 20px;
    background: #0c0f0d;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    transform: none;
    transform-style: flat;
}

body[data-project="tea"] .application-visual::before,
body[data-project="tea"] .application-visual::after {
    display: none;
}

body[data-project="tea"] .application-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 650ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body[data-project="tea"] .application-card:hover .application-visual img {
    filter: brightness(1.06);
    transform: scale(1.035);
}

.application-visual__index {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 9px 11px;
    border: 1px solid rgba(238, 233, 220, 0.16);
    color: rgba(238, 233, 220, 0.7);
    background: rgba(8, 12, 10, 0.58);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    font-size: 7px;
    letter-spacing: 0.14em;
}

body[data-project="tea"] .application-caption {
    margin-top: 22px;
    border-color: var(--ess-line);
    color: var(--ess-paper);
}

body[data-project="tea"] .application-caption > span {
    color: rgba(238, 233, 220, 0.35);
}

body[data-project="tea"] .application-caption p {
    color: var(--ess-muted);
}

body[data-project="tea"] .strategy-card,
body[data-project="tea"] .case-process li {
    border-color: var(--ess-line);
    color: var(--ess-paper);
    background: rgba(238, 233, 220, 0.025);
}

body[data-project="tea"] .strategy-card p,
body[data-project="tea"] .case-process p {
    color: var(--ess-muted);
}

body[data-project="tea"] .deliverables-list,
body[data-project="tea"] .deliverables-list li,
body[data-project="tea"] .concept-note {
    border-color: var(--ess-line);
    color: var(--ess-paper);
}

body[data-project="tea"] .concept-note {
    color: var(--ess-muted);
}

body[data-project="tea"] .next-case,
body[data-project="tea"] .case-footer {
    color: var(--ess-paper);
    background: #0b0d0c;
}

body[data-project="tea"] .next-case {
    border-color: var(--ess-line);
}

@media (max-width: 1050px) {
    .energy-preview__glass {
        width: 44%;
    }

    body[data-project="tea"] .home-ess-hero .home-ess-hero__glass {
        width: min(420px, 45vw);
    }

    .energy-experience__heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-left: 10%;
    }

    body[data-project="tea"] .energy-stage .energy-scene--detail {
        height: 760px;
    }
}

@media (max-width: 760px) {
    .project--energy .energy-preview {
        aspect-ratio: 4 / 5;
    }

    .energy-preview__image {
        object-position: 64% center;
    }

    .energy-preview__glass {
        top: auto;
        right: 18px;
        bottom: 18px;
        left: 18px;
        width: auto;
        min-height: 48%;
        padding: 20px;
    }

    .energy-preview__hud strong {
        font-size: clamp(32px, 9vw, 44px);
    }

    .energy-preview__hint {
        display: none;
    }

    body[data-project="tea"] .home-ess-hero {
        min-height: 880px;
    }

    .home-ess-hero__media img {
        object-position: 67% center;
    }

    body[data-project="tea"] .home-ess-hero .home-ess-hero__glass {
        top: auto;
        right: 18px;
        bottom: 28px;
        left: 18px;
        width: auto;
        padding: 24px;
        transform: none;
    }

    body[data-project="tea"] .home-ess-hero .hero-kicker {
        margin-bottom: 18px;
    }

    body[data-project="tea"] .home-ess-hero .hero-kicker small {
        display: none;
    }

    body[data-project="tea"] .home-ess-hero .hero-title .title-line,
    html[data-language="en"] body[data-project="tea"] .home-ess-hero .hero-title .title-line:first-child {
        font-size: clamp(48px, 14vw, 64px);
    }

    body[data-project="tea"] .home-ess-hero .hero-title .title-line--en {
        font-size: 12px;
    }

    .home-ess-hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .home-ess-hero__actions a,
    .home-ess-hero__actions button {
        padding: 0 10px;
    }

    body[data-project="tea"] .home-ess-hero .hero-index,
    body[data-project="tea"] .home-ess-hero .energy-hero-cue {
        display: none;
    }

    .energy-experience__heading {
        margin: 46px 0 28px;
    }

    .energy-experience__heading h2 {
        font-size: clamp(40px, 12vw, 60px);
    }

    .energy-stage {
        margin-right: -12px;
        margin-left: -12px;
        border-radius: 18px;
    }

    body[data-project="tea"] .energy-stage .energy-scene--detail {
        height: 720px;
    }

    body[data-project="tea"] .energy-stage .energy-component-nav,
    body[data-project="tea"] .energy-stage .energy-scene--detail.is-components-open .energy-component-nav {
        top: 14px;
        right: 14px;
        left: 14px;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        padding: 4px;
        overflow: hidden;
    }

    body[data-project="tea"] .energy-stage .energy-component-nav button {
        grid-template-columns: 1fr;
        justify-items: center;
        min-height: 50px;
        padding: 5px 3px;
        text-align: center;
    }

    body[data-project="tea"] .energy-stage .energy-component-nav button span {
        display: block;
    }

    body[data-project="tea"] .energy-stage .energy-component-nav button b {
        max-width: 100%;
        font-size: 6px;
        letter-spacing: 0;
    }

    body[data-project="tea"] .energy-stage .energy-focus-panel {
        right: 14px;
        bottom: 80px;
        left: 14px;
        width: auto;
        padding: 15px;
    }

    body[data-project="tea"] .energy-stage .energy-focus-panel p {
        display: none;
    }

    body[data-project="tea"] .energy-stage .energy-scene__controls {
        right: 14px;
        bottom: 14px;
        left: 14px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 4px;
    }

    body[data-project="tea"] .energy-stage .energy-scene__controls button {
        min-width: 0;
        min-height: 42px;
        padding: 0 4px;
        font-size: 7px;
    }

    .energy-experience__footnote {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .energy-experience__footnote span:last-child {
        display: none;
    }

    body[data-project="tea"] .home-ess-spec-card {
        min-height: 330px;
    }

    body[data-project="tea"] .application-visual {
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .energy-preview__image,
    .energy-preview__glass,
    .home-ess-hero__media,
    body[data-project="tea"] .home-ess-hero .home-ess-hero__glass,
    body[data-project="tea"] .application-visual img,
    body[data-project="tea"] .home-ess-spec-card {
        transition: none;
        transform: none;
    }
}
