:root {
  --paper: #f7f6ef;
  --linen: #e9eee7;
  --ink: #15211d;
  --muted: #68716b;
  --green: #173f36;
  --sage: #6d8e7c;
  --clay: #a84634;
  --gold: #c99545;
  --jade: #0f6f61;
  --night: #07100d;
  --line: rgba(24, 35, 31, 0.14);
  --shadow: 0 28px 70px rgba(33, 30, 25, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 34px;
  background: rgba(251, 248, 241, 0.82);
  border-bottom: 1px solid rgba(24, 35, 31, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, background 220ms ease;
}

.site-header.is-compact {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(251, 248, 241, 0.94);
}

.home-page .site-header:not(.is-compact) {
  background: linear-gradient(180deg, rgba(6, 9, 8, 0.48), rgba(6, 9, 8, 0));
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.home-page .site-header:not(.is-compact) .site-nav {
  color: rgba(255, 255, 255, 0.84);
}

.home-page .site-header:not(.is-compact) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.34);
}

.home-page .site-header:not(.is-compact) .nav-toggle span {
  background: #fff;
}

.brand {
  display: flex;
  align-items: center;
  width: 164px;
  height: 44px;
  overflow: hidden;
}

.brand img {
  width: 164px;
  height: 44px;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(24, 35, 31, 0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 12px;
  border-left: 1px solid currentColor;
}

.language-switch a {
  padding: 5px 6px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
}

.language-switch a::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a211d;
}

.hero-film {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 9, 7, 0.88) 0%, rgba(7, 16, 13, 0.58) 44%, rgba(7, 16, 13, 0.22) 100%),
    linear-gradient(180deg, rgba(4, 9, 7, 0.16) 0%, rgba(4, 9, 7, 0.72) 58%, rgba(4, 9, 7, 0.94) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, var(--max));
  min-height: 100vh;
  margin: 0 auto;
  padding: 150px 34px 132px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(46px, 6.5vw, 96px);
  line-height: 1.05;
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 500;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.7vw, 23px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
}

.hero-proof span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-signal {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 24px;
  z-index: 1;
  width: min(calc(100% - 68px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-signal span {
  padding: 18px 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.15;
}

.portals {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, var(--night) 0%, #10231d 48%, #f7f6ef 48%, #f7f6ef 100%);
}

.portal-intro {
  width: min(100%, var(--max));
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: end;
}

.portal-intro h2 {
  color: #fff;
}

.portal-intro p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.portal-grid {
  width: min(100%, calc(var(--max) + 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 18px;
}

.portal-card {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: 8px;
  background: #12231e;
  box-shadow: 0 38px 90px rgba(7, 16, 13, 0.22);
}

.portal-card:nth-child(2) {
  margin-top: 72px;
}

.portal-card:nth-child(3) {
  margin-top: 136px;
}

.portal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 900ms ease, opacity 900ms ease;
}

.portal-house img {
  object-position: center bottom;
}

.portal-gift img {
  object-position: center center;
}

.portal-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.portal-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 13, 10, 0.08) 0%, rgba(5, 13, 10, 0.24) 34%, rgba(5, 13, 10, 0.9) 100%);
}

.portal-card > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 34px;
}

.portal-card span {
  display: block;
  margin-bottom: 120px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.portal-card h3 {
  max-width: 520px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
}

.portal-card p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.cinema-story {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 16, 13, 0.94), rgba(7, 16, 13, 0.64)),
    url("./assets/images/space-main.jpg") center / cover fixed;
}

.cinema-copy,
.cinema-board {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.cinema-copy {
  max-width: 920px;
  margin-bottom: 56px;
  text-align: center;
}

.cinema-copy .section-kicker {
  color: rgba(255, 255, 255, 0.68);
}

.cinema-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.cinema-board article {
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cinema-board span {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cinema-board h3 {
  max-width: 360px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
}

.cinema-board p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.service-map {
  background: #fffdf8;
}

.service-map-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-map-grid article {
  min-height: 340px;
  padding: 34px;
  background: #fffdf8;
}

.service-map-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-map-grid h3 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
}

.service-map-grid p {
  color: var(--muted);
}

.service-map-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.hero-actions,
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--green);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  background: transparent;
}

.hero .button.primary {
  color: var(--green);
  background: #fff;
  border-color: #fff;
}

.hero .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.section {
  padding: 104px 34px;
}

.section-heading,
.intro-grid,
.model-board,
.split,
.wide-feature,
.partner-panel,
.site-footer,
.philosophy-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
  text-align: center;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}

.intro {
  background: var(--paper);
}

.desire {
  background: #111915;
  color: #fff;
}

.desire .section-heading p:not(.section-kicker),
.desire .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.desire-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
}

.desire-grid article {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #20332b;
}

.desire-grid article:first-child {
  grid-row: span 2;
  min-height: 858px;
}

.desire-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 700ms ease, opacity 700ms ease;
}

.desire-grid article:hover img {
  transform: scale(1.035);
  opacity: 0.96;
}

.desire-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(8, 13, 11, 0.82) 100%);
}

.desire-grid article > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 34px;
}

.desire-grid h3 {
  max-width: 620px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
}

.desire-grid p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.rhythm {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 25, 21, 0.92), rgba(17, 25, 21, 0.76)),
    url("./assets/images/tea-area.jpg") center / cover;
}

.rhythm .section-heading {
  max-width: 920px;
}

.rhythm .section-kicker,
.rhythm .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.rhythm-story {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.rhythm-story article {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.055);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.rhythm-story span {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rhythm-story h3 {
  max-width: 320px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 500;
}

.rhythm-story p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 84px;
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-grid p {
  color: var(--muted);
  font-size: 18px;
}

.audience {
  background: #fffdf8;
}

.audience-grid,
.signature-grid,
.standard-rail {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
}

.audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.audience-grid article {
  min-height: 330px;
  padding: 30px;
  background: #fffdf8;
}

.audience-grid span,
.signature-grid span,
.standard-rail span {
  display: block;
  margin-bottom: 28px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-grid h3 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 30px;
  font-weight: 500;
}

.audience-grid p {
  color: var(--muted);
}

.philosophy {
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 157, 86, 0.18), transparent 28%),
    linear-gradient(135deg, #141c18 0%, #26483a 100%);
}

.philosophy-inner {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 72px;
  align-items: end;
}

.philosophy p,
.philosophy .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.philosophy blockquote {
  margin: 0;
  padding: 34px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.22;
}

.philosophy cite {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.season-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.season-grid article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.season-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.season-grid h3 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 34px;
  font-weight: 500;
}

.season-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.global {
  background: var(--linen);
}

.global-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(17, 25, 21, 0.18), rgba(17, 25, 21, 0.9)),
    url("./assets/images/display-room.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.global-card span,
.product-showcase span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.global-card h3 {
  max-width: 560px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(32px, 3.6vw, 52px);
  font-weight: 500;
}

.global-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.bridge-grid {
  width: min(100%, var(--max));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(38, 72, 58, 0.18);
  border: 1px solid rgba(38, 72, 58, 0.18);
}

.bridge-grid article {
  min-height: 300px;
  padding: 32px;
  background: rgba(255, 253, 248, 0.62);
}

.bridge-grid span,
.story-strip span {
  display: block;
  margin-bottom: 34px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bridge-grid h3,
.story-strip h3 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 30px;
  font-weight: 500;
}

.bridge-grid p,
.story-strip p {
  color: var(--muted);
}

.model {
  background: var(--green);
  color: #fff;
}

.model .section-kicker,
.model .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.model-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.model-board article {
  min-height: 300px;
  padding: 38px;
  background: rgba(255, 255, 255, 0.06);
}

.model-board span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 92px;
  line-height: 0.8;
}

.model-board p {
  color: rgba(255, 255, 255, 0.78);
}

.house,
.digital {
  background: var(--linen);
}

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

.split.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-copy p {
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--green);
  font-weight: 700;
}

.check-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  height: 420px;
}

.services {
  background: var(--paper);
}

.service-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card.featured {
  grid-column: span 2;
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-card div {
  padding: 28px;
}

.service-card div > p:first-child {
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--sage);
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
}

.service-card.text-only {
  justify-content: flex-end;
  min-height: 330px;
  background: var(--green);
}

.service-card.text-only h3,
.service-card.text-only span,
.service-card.text-only p {
  color: #fff;
}

.service-card.text-only div > p:first-child {
  color: var(--gold);
}

.signature {
  background: #111915;
  color: #fff;
}

.signature .section-heading p,
.signature .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.signature-grid {
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: 18px;
}

.signature-grid article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.signature-grid .signature-large {
  grid-row: span 2;
  min-height: 878px;
}

.signature-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.signature-grid .signature-large img {
  height: 560px;
}

.signature-grid article > div {
  padding: 30px;
}

.signature-grid h3 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
}

.signature-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.signature-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products {
  background: #fffdf8;
}

.product-showcase {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-showcase article {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-showcase img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-showcase div {
  padding: 28px;
}

.product-showcase h3 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 30px;
  font-weight: 500;
}

.product-showcase p {
  color: var(--muted);
}

.material {
  background: var(--paper);
}

.material-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr 0.88fr;
  gap: 18px;
}

.material-grid article {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.material-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.material-grid article:first-child img {
  height: 420px;
}

.material-grid h3,
.material-grid p {
  margin-left: 30px;
  margin-right: 30px;
}

.material-grid h3 {
  margin-top: 30px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
}

.material-grid p {
  color: var(--muted);
  font-size: 17px;
}

.food {
  padding-top: 0;
  background: var(--paper);
}

.journey {
  background: var(--linen);
}

.journey-line {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.journey-line article {
  min-height: 300px;
  padding: 30px;
  background: rgba(255, 253, 248, 0.58);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-line span {
  display: block;
  margin-bottom: 54px;
  color: var(--clay);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.journey-line p {
  color: var(--muted);
}

.wide-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 54px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.wide-feature p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}

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

.ingredient-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.phone-frame {
  max-width: 360px;
  margin: 0 auto;
  padding: 14px;
  background: #101614;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
  max-height: 660px;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
}

.system-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.system-list span {
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 12px 16px;
  color: var(--green);
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

.standards {
  background: #fffdf8;
}

.standard-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.standard-rail article {
  min-height: 360px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standard-rail h3 {
  min-height: 64px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 28px;
  font-weight: 500;
}

.standard-rail p {
  color: var(--muted);
}

.compliance {
  background: var(--paper);
}

.faq {
  background: var(--linen);
}

.faq-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-list article {
  min-height: 270px;
  padding: 32px;
  background: #fffdf8;
}

.faq-list h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.faq-list p {
  color: var(--muted);
}

.boundary-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.boundary-grid div {
  min-height: 230px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.boundary-grid p {
  color: var(--muted);
}

.partner {
  background: var(--green);
}

.partner-panel {
  padding: 72px;
  color: #fff;
  background:
    linear-gradient(rgba(38, 72, 58, 0.88), rgba(38, 72, 58, 0.88)),
    url("./assets/images/storefront.jpg") center / cover;
  border-radius: 8px;
}

.partner-panel .section-kicker,
.partner-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-panel h2 {
  max-width: 780px;
}

.partner-panel p {
  max-width: 720px;
  font-size: 18px;
}

.partner-panel .button.primary {
  color: var(--green);
  background: #fff;
  border-color: #fff;
}

.partner-panel .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 36px 34px;
  color: rgba(255, 255, 255, 0.72);
  background: #111915;
}

.site-footer strong {
  display: block;
  color: #fff;
}

.site-footer p {
  margin: 0;
}

.page-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: end;
  padding: 150px 34px 80px;
  background: var(--linen);
}

.page-hero > div,
.page-hero > img {
  width: min(100%, 590px);
}

.page-hero > div {
  justify-self: end;
  padding-bottom: 22px;
}

.page-hero p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: 19px;
}

.page-hero img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-page-hero img {
  object-position: center;
}

.content-band {
  background: var(--paper);
}

.about-manifesto {
  background: #fffdf8;
}

.manifesto-grid,
.story-strip {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: start;
}

.manifesto-copy p {
  color: var(--muted);
  font-size: 18px;
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  background: var(--line);
  border: 1px solid var(--line);
}

.story-strip article {
  min-height: 280px;
  padding: 32px;
  background: #fffdf8;
}

.values-section {
  background: var(--green);
  color: #fff;
}

.values-section .section-heading p,
.values-section .section-kicker {
  color: rgba(255, 255, 255, 0.75);
}

.value-grid,
.detail-grid,
.track-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.value-grid article {
  min-height: 260px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.value-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.proof-section {
  background: var(--linen);
}

.about-philosophy {
  padding-top: 96px;
  padding-bottom: 96px;
}

.about-material {
  background: #fffdf8;
}

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

.free-public-section {
  background: #fffdf8;
}

.free-grid,
.paid-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

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

.free-grid article {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.free-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.free-grid span,
.paid-grid span {
  display: block;
  margin: 24px 24px 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.free-grid h3,
.free-grid p {
  margin-left: 24px;
  margin-right: 24px;
}

.free-grid h3 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 26px;
  font-weight: 500;
}

.free-grid p {
  color: var(--muted);
}

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

.paid-grid article {
  min-height: 560px;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.paid-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.paid-grid h2,
.paid-grid h3,
.paid-grid p {
  margin-left: 28px;
  margin-right: 28px;
}

.paid-grid h2 {
  margin-bottom: 6px;
  font-size: clamp(28px, 3vw, 40px);
}

.paid-grid h3 {
  color: var(--sage);
}

.paid-grid p {
  color: var(--muted);
}

.origin-film-section {
  color: #fff;
  background: var(--night);
}

.origin-film {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 54px;
  align-items: center;
}

.origin-film video {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.origin-film p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.department-contact-strip {
  background: var(--green);
}

.contact-strip-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 54px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.contact-strip-panel p,
.contact-strip-panel .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.contact-strip-panel .button.primary {
  color: var(--green);
  background: #fff;
  border-color: #fff;
}

.detail-grid article {
  min-height: 460px;
  padding: 32px;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-grid article > span,
.track-grid article::before {
  display: block;
  margin-bottom: 22px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.detail-grid h2 {
  margin-bottom: 6px;
  font-size: clamp(28px, 3vw, 42px);
}

.detail-grid h3 {
  color: var(--sage);
}

.detail-grid p {
  color: var(--muted);
}

.detail-grid img {
  width: 100%;
  height: 280px;
  margin-top: 24px;
  object-fit: cover;
  border-radius: 6px;
}

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

.track-grid article {
  min-height: 260px;
  padding: 30px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.track-grid article::before {
  content: "PARTNER";
}

.track-grid p {
  color: var(--muted);
}

.partner-form-section {
  padding-top: 0;
}

.partner-standard-section {
  background: var(--linen);
}

.form-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 52px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
}

.form-panel .section-kicker,
.form-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.form-panel h2 {
  margin-bottom: 18px;
}

.form-panel .button.primary {
  color: var(--green);
  background: #fff;
  border-color: #fff;
}

.compact-compliance {
  padding-top: 0;
}

.contact-page-hero {
  background: #e9eee7;
}

.contact-directory {
  background: var(--paper);
}

.contact-locations {
  background: #fffdf8;
}

.contact-bases {
  background: var(--linen);
}

.contact-feature,
.contact-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: end;
  padding: 44px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 16, 13, 0.92), rgba(23, 63, 54, 0.82)),
    url("./assets/images/space-main.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-feature span,
.contact-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-feature h3 {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
}

.contact-feature p,
.contact-feature address {
  color: rgba(255, 255, 255, 0.78);
}

.contact-feature address,
.contact-grid address {
  margin: 0;
  font-style: normal;
}

.contact-feature address {
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.contact-feature strong,
.contact-grid strong {
  display: block;
  margin-bottom: 12px;
  color: inherit;
}

.contact-feature a,
.contact-grid a {
  display: block;
  width: fit-content;
  padding: 4px 0;
  color: inherit;
  border-bottom: 1px solid currentColor;
}

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

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

.contact-grid article {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-grid h3 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
}

.contact-grid p,
.contact-grid address {
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    background: rgba(251, 248, 241, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .intro-grid,
  .split,
  .split.reverse,
  .wide-feature,
  .page-hero,
  .form-panel,
  .desire-grid,
  .journey-line,
  .audience-grid,
  .signature-grid,
  .standard-rail,
  .rhythm-story,
  .philosophy-inner,
  .season-grid,
  .product-showcase,
  .faq-list,
  .material-grid,
  .bridge-grid,
  .manifesto-grid,
  .story-strip,
  .portal-intro,
  .portal-grid,
  .cinema-board,
  .service-map-grid,
  .contact-feature,
  .contact-grid,
  .contact-grid.two-column,
  .free-grid,
  .paid-grid,
  .origin-film,
  .contact-strip-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 126px 24px 152px;
  }

  .hero-copy h1 {
    color: #fff;
  }

  .hero-signal {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }

  .hero-signal span {
    padding: 9px 0;
    font-size: 19px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .portal-intro {
    gap: 18px;
  }

  .portal-card,
  .portal-card:nth-child(2),
  .portal-card:nth-child(3) {
    min-height: 560px;
    margin-top: 0;
  }

  .portal-card span {
    margin-bottom: 86px;
  }

  .cinema-story {
    background-attachment: scroll;
  }

  .cinema-board article {
    min-height: 310px;
  }

  .section {
    padding: 76px 20px;
  }

  .model-board,
  .service-grid,
  .boundary-grid,
  .value-grid,
  .detail-grid,
  .track-grid {
    grid-template-columns: 1fr;
  }

  .desire-grid article,
  .desire-grid article:first-child {
    min-height: 520px;
    grid-row: auto;
  }

  .signature-grid .signature-large {
    grid-row: auto;
    min-height: auto;
  }

  .signature-grid .signature-large img,
  .signature-grid img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .journey-line article {
    min-height: 230px;
  }

  .rhythm-story article {
    min-height: 300px;
  }

  .philosophy-inner {
    gap: 34px;
  }

  .philosophy blockquote {
    padding: 26px;
  }

  .season-grid article,
  .product-showcase article,
  .faq-list article {
    min-height: auto;
  }

  .product-showcase img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .material-grid article {
    min-height: auto;
  }

  .material-grid img,
  .material-grid article:first-child img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .service-card.featured {
    grid-column: auto;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:nth-child(2) {
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .wide-feature {
    padding: 30px;
  }

  .partner-panel {
    padding: 42px 26px;
  }

  .site-footer {
    flex-direction: column;
  }

  .page-hero {
    min-height: auto;
    padding: 118px 20px 64px;
  }

  .page-hero > div {
    justify-self: start;
  }

  .page-hero > img {
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .form-panel {
    padding: 34px 26px;
  }

  .free-grid article,
  .paid-grid article {
    min-height: auto;
  }

  .free-grid img,
  .paid-grid img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .origin-film video {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .contact-strip-panel {
    padding: 34px 26px;
  }
}

@media (max-width: 560px) {
  .brand {
    width: 132px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions,
  .partner-actions,
  .system-list,
  .ingredient-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .service-card {
    min-height: auto;
  }

  .service-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}
